jQuery( document ).ready(function() {
function initialize() {
var styles = {
'flatsome': [{
"featureType": "administrative",
"stylers": [
{ "visibility": "on" }
]
},
{
"featureType": "road",
"stylers": [
{ "visibility": "on" },
{ "hue": "" }
]
},
{
"stylers": [
{ "visibility": "on" },
{ "hue": "" },
{ "saturation": -30 }
]
}
]};
var myLatlng = new google.maps.LatLng(43.0643505, -88.4803858);
var myOptions = {
zoom: 17,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP,
disableDefaultUI: true,
mapTypeId: 'flatsome',
draggable: true,
zoomControl: false,
zoomControlOptions: {
position: google.maps.ControlPosition.TOP_LEFT
},
mapTypeControl: false,
mapTypeControlOptions: {
position: google.maps.ControlPosition.TOP_LEFT
},
streetViewControl: false,
streetViewControlOptions: {
position: google.maps.ControlPosition.TOP_LEFT
},
scrollwheel: false,
disableDoubleClickZoom: true
}
var map = new google.maps.Map(document.getElementById("map-747469547-inner"), myOptions);
var styledMapType = new google.maps.StyledMapType(styles['flatsome'], {name: 'flatsome'});
map.mapTypes.set('flatsome', styledMapType);
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:""
});
}
// Required to proceed
if (!(typeof google === 'object' && typeof google.maps === 'object')) {
return
}
initialize()
google.maps.event.addDomListener(window, 'resize', initialize);
});
Lake Country Manufacturing
950 Blue Ribbon Cir N
Oconomowoc, WI 53066
#map-747469547 .map-inner {
background-color: #fff;
max-width: 100%;
}
#map-747469547 .map-height {
height: 400px;
}
@media (min-width:550px) {
#map-747469547 .map-inner {
max-width: 40%;
}
}
@media (min-width:850px) {
#map-747469547 .map-inner {
max-width: 30%;
}
}