/**** * 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.850039, -73.649585); 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 10:27'], [45.811195, -73.373850, 'red', '189.0 ¢/Litre
Notre Dame / Rte 138 / St Sulpice
Saint-Sulpice
Sat, 27 Apr 2024 19:49'], [45.653279, -73.510702, 'red', '184.9 ¢/Litre
Sherbrooke / Tricentenaire
Pointe-aux-Trembles
Fri, 26 Apr 2024 08:30'], [45.582704, -73.426126, 'red', '184.9 ¢/Litre
Montarville / Normandie
Boucherville
Sun, 28 Apr 2024 19:46'], [45.598981, -73.447627, 'red', '184.9 ¢/Litre
Samuel de Champlain / Montarville
Boucherville
Sun, 28 Apr 2024 19:47'], [45.644168, -73.513834, 'red', '184.9 ¢/Litre
Sherbrooke E / St Jean Baptiste
Pointe-aux-Trembles
Fri, 26 Apr 2024 08:30'], [45.652220, -73.511061, 'red', '184.9 ¢/Litre
Sherbrooke / Tricentenaire
Pointe-aux-Trembles
Fri, 26 Apr 2024 09:00'], [45.576640, -73.446699, 'blue', '181.9 ¢/Litre
Mortagne / Parfondeval
Boucherville
Sun, 28 Apr 2024 15:51'], [45.575375, -73.446954, 'blue', '181.9 ¢/Litre
Mortagne / Ampére
Boucherville
Sun, 28 Apr 2024 15:51'], [45.767198, -73.444897, 'red', '179.9 ¢/Litre
Valmont / Aut 40
Repentigny
Fri, 26 Apr 2024 10:32'], [45.607988, -73.584409, 'blue', 'Costco - 178.9 ¢/Litre
Bombardier / Renaude-Lapointe
Anjou
Sun, 28 Apr 2024 16:08'], [45.733744, -73.467802, 'red', '176.9 ¢/Litre
Larochelle / Cherrier
Repentigny
Fri, 26 Apr 2024 10:28'], [45.757243, -73.479935, 'red', '176.9 ¢/Litre
225 St-Paul
Le Gardeur
Fri, 26 Apr 2024 10:30'], [45.717432, -73.511367, 'red', '175.9 ¢/Litre
Des Pionniers / Pierre le Gardeur
Lachenaie
Fri, 26 Apr 2024 10:29'], [45.580715, -73.760447, 'green', 'Costco - 174.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Mon, 29 Apr 2024 03:48'], [45.721626, -73.506924, 'green', 'Costco - 174.9 ¢/Litre
870 Montée des pionners
Terrebonne
Sun, 28 Apr 2024 11:14'], [45.575442, -73.753731, 'green', 'Costco - 174.9 ¢/Litre
2999 Aut 440 / Aut 440 / Aut 15
Laval
Sun, 28 Apr 2024 15:34'], [45.721453, -73.508422, 'red', 'Costco - 174.9 ¢/Litre
des Pionniers / Yves-Blais
Terrebonne
Fri, 26 Apr 2024 10:29'], [45.577602, -73.405821, 'green', 'Costco - 173.9 ¢/Litre
635 ch de Touraine
Boucherville
Sun, 28 Apr 2024 11:41'], [45.686705, -73.432357, 'green', '173.9 ¢/Litre
Marie-Victorin / Quévillon
Varennes
Sat, 27 Apr 2024 08:29'], [45.763549, -74.018241, 'red', 'Costco - 173.9 ¢/Litre
Jean-Baptiste-Rolland O / Brière
Saint-Jérôme
Fri, 26 Apr 2024 10:39']]; 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+");});"); } }