', 43.844381, -79.350236, 2]
];
var map = new google.maps.Map(document.getElementById('gmap-6889551cb7b01'), {
zoom: 15,
scrollwheel: false,
navigationControl: true,
mapTypeControl: false,
scaleControl: false,
draggable: true,
styles:
[{
"featureType": "road.highway",
"elementType": "labels",
"stylers": [
{
"hue": "#ffffff"
},
{
"saturation": -100
},
{
"lightness": 100
},
{
"visibility": "off"
}
]
},
{
"featureType": "landscape.natural",
"elementType": "all",
"stylers": [
{
"hue": "#ffffff"
},
{
"saturation": -100
},
{
"lightness": 100
},
{
"visibility": "on"
}
]
},
{
"featureType": "road",
"elementType": "all",
"stylers": [
{
"hue": "#ffe94f"
},
{
"saturation": 100
},
{
"lightness": 4
},
{
"visibility": "on"
}
]
},
{
"featureType": "road.highway",
"elementType": "geometry",
"stylers": [
{
"hue": "#ffe94f"
},
{
"saturation": 100
},
{
"lightness": 4
},
{
"visibility": "on"
}
]
},
{
"featureType": "water",
"elementType": "geometry",
"stylers": [
{
"hue": "#333333"
},
{
"saturation": -100
},
{
"lightness": -74
},
{
"visibility": "off"
}
]
}],
center: new google.maps.LatLng(43.844381, -79.350236),
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var infowindow = new google.maps.InfoWindow();
var marker, i;
for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
map: map ,
icon: 'https://www.pureedgefurniturerental.ca/wp-content/uploads/2015/07/map-marker-1.png',
title: ''
});
google.maps.event.addListener(marker, (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
}
})(marker, i));
}
});
})(jQuery);