/**** * 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.852434, -73.757164); 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.681034, -73.437497, 'red', '189.5 ¢/Litre
De La Marine / Rte 132
Varennes
Fri, 26 Apr 2024 09:27'], [45.811195, -73.373850, 'red', '189.0 ¢/Litre
Notre Dame / Rte 138 / St Sulpice
Saint-Sulpice
Sat, 27 Apr 2024 18:49'], [45.652220, -73.511061, 'red', '184.9 ¢/Litre
Sherbrooke / Tricentenaire
Pointe-aux-Trembles
Fri, 26 Apr 2024 08:00'], [45.653279, -73.510702, 'red', '184.9 ¢/Litre
Sherbrooke / Tricentenaire
Pointe-aux-Trembles
Fri, 26 Apr 2024 07:30'], [45.644168, -73.513834, 'red', '184.9 ¢/Litre
Sherbrooke E / St Jean Baptiste
Pointe-aux-Trembles
Fri, 26 Apr 2024 07:30'], [45.574931, -73.876109, 'blue', 'Belisle - 183.9 ¢/Litre
St-Laurent
Saint-Eustache
Sun, 28 Apr 2024 09:34'], [45.767198, -73.444897, 'blue', '179.9 ¢/Litre
Valmont / Aut 40
Repentigny
Fri, 26 Apr 2024 09:32'], [45.607988, -73.584409, 'blue', 'Costco - 178.9 ¢/Litre
Bombardier / Renaude-Lapointe
Anjou
Sun, 28 Apr 2024 15:08'], [45.733744, -73.467802, 'green', '176.9 ¢/Litre
Larochelle / Cherrier
Repentigny
Fri, 26 Apr 2024 09:28'], [45.757243, -73.479935, 'green', '176.9 ¢/Litre
225 St-Paul
Le Gardeur
Fri, 26 Apr 2024 09:30'], [45.717432, -73.511367, 'green', '175.9 ¢/Litre
Des Pionniers / Pierre le Gardeur
Lachenaie
Fri, 26 Apr 2024 09:29'], [45.575442, -73.753731, 'green', 'Costco - 174.9 ¢/Litre
2999 Aut 440 / Aut 440 / Aut 15
Laval
Sun, 28 Apr 2024 14:34'], [45.721626, -73.506924, 'green', 'Costco - 174.9 ¢/Litre
870 Montée des pionners
Terrebonne
Sun, 28 Apr 2024 10:14'], [45.721453, -73.508422, 'green', 'Costco - 174.9 ¢/Litre
des Pionniers / Yves-Blais
Terrebonne
Fri, 26 Apr 2024 09:29'], [45.580715, -73.760447, 'green', 'Costco - 174.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Sun, 28 Apr 2024 17:44'], [45.763549, -74.018241, 'green', 'Costco - 173.9 ¢/Litre
Jean-Baptiste-Rolland O / Brière
Saint-Jérôme
Fri, 26 Apr 2024 09:39'], [45.686705, -73.432357, 'green', '173.9 ¢/Litre
Marie-Victorin / Quévillon
Varennes
Sat, 27 Apr 2024 07:29']]; 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+");});"); } }