/**** * IMPORTANT! PLEASE READ! * * The informamation contained in this file is the property of Essence Montreal. * To remain in accordance with this website's Terms and Conditions (the "Terms"), * you may not, copy, store, reproduce, reuse, sell, redistribute or republish any * information found on this page or found anywhere else on this website. * * The use of any of the information from this page or anywhere else on this website * for any use outside of the website's functionality is stricly prohibited. * * You may review our Terms here: * https://www.essencemontreal.com/terms.php?l=f * ****/ function mapload() { var latlng = new google.maps.LatLng(45.969234, -73.599635); var myOptions = { zoom: 10, center: latlng, navigationControl: true, navigationControlOptions: {style: google.maps.NavigationControlStyle.ZOOM_PAN}, mapTypeControl: true, //streetViewControl: true, scaleControl: false, scrollwheel: false, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("stationmap"), myOptions); infoWindow = new google.maps.InfoWindow(); setMarkers(map, stations); } /** * Data for the markers */ var stations = [ [45.656168, -73.421819, 'red', '172.9 ¢/Litre
De La Marine / Rte 132
Varennes
Sun, 02 Jun 2024 13:06'], [45.681034, -73.437497, 'red', '172.9 ¢/Litre
De La Marine / Rte 132
Varennes
Sun, 02 Jun 2024 13:06'], [45.865525, -73.145475, 'red', '172.9 ¢/Litre
4950 des patriotes
Contrecoeur
Sun, 02 Jun 2024 11:20'], [45.851462, -73.245437, 'red', '172.9 ¢/Litre
Marie-Victorin / Jacques
Contrecoeur
Sun, 02 Jun 2024 11:20'], [45.721626, -73.506924, 'blue', 'Costco - 166.9 ¢/Litre
870, Montée des Pionniers
Terrebonne
Tue, 04 Jun 2024 15:09'], [45.721453, -73.508422, 'blue', 'Costco - 166.9 ¢/Litre
des Pionniers / Yves-Blais
Terrebonne
Tue, 04 Jun 2024 12:30'], [45.756258, -73.446908, 'blue', '166.9 ¢/Litre
Industriel / Aut 40
Repentigny
Tue, 04 Jun 2024 13:14'], [45.755453, -73.446799, 'blue', '166.9 ¢/Litre
120 Boul. Industriel
Repentigny
Tue, 04 Jun 2024 13:15'], [45.684327, -73.435514, 'green', '162.9 ¢/Litre
Marie-Victorin / Vincent
Varennes
Sun, 02 Jun 2024 11:18'], [45.686705, -73.432357, 'green', '159.9 ¢/Litre
Marie-Victorin / Quévillon
Varennes
Tue, 04 Jun 2024 12:00']]; function setMarkers(map, locations) { // Add markers to the map var redicon = new google.maps.MarkerImage('https://www.essencemontreal.com/images/map/redmarker.png', new google.maps.Size(20, 32), new google.maps.Point(0,0), new google.maps.Point(0, 32)); var blueicon = new google.maps.MarkerImage('https://www.essencemontreal.com/images/map/bluemarker.png', new google.maps.Size(20, 32), new google.maps.Point(0,0), new google.maps.Point(0, 32)); var greenicon = new google.maps.MarkerImage('https://www.essencemontreal.com/images/map/greenmarker.png', new google.maps.Size(20, 32), new google.maps.Point(0,0), new google.maps.Point(0, 32)); var shadow = new google.maps.MarkerImage('https://www.essencemontreal.com/images/map/shadow50.png', new google.maps.Size(37, 32), new google.maps.Point(0,0), new google.maps.Point(0, 32)); var shape = { coord: [1, 1, 1, 20, 18, 20, 18 , 1], type: 'poly' }; for (var i = 0; i < locations.length; i++) { var stn = locations[i]; if(stn[2] == "red") {iconcolor = redicon;} else if(stn[2] == "green") {iconcolor = greenicon;} else if(stn[2] == "blue") {iconcolor = blueicon; } var myLatLng = new google.maps.LatLng(stn[0], stn[1]); eval("var marker"+i+" = new google.maps.Marker({position: myLatLng, map: map,shadow: shadow, icon: iconcolor, shape: shape});"); eval("google.maps.event.addListener(marker"+i+", 'click', function() {infoWindow.setContent(locations["+i+"][3]); infoWindow.open(map, marker"+i+");});"); } }