/**** * 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=e * ****/ function mapload() { var latlng = new google.maps.LatLng(45.601879, -73.575439); 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.549520, -73.219972, 'red', '176.9 ¢/Litre
Sir Wilfrid Laurier / Bernard Pilon
Beloeil
Fri, 17 May 2024 10:30'], [45.481980, -73.464589, 'red', '175.9 ¢/Litre
Taschereau / Adam
Greenfield Park
Fri, 17 May 2024 13:11'], [45.454885, -73.465571, 'red', '175.9 ¢/Litre
Taschereau / Rome
Brossard
Fri, 17 May 2024 13:10'], [45.443789, -73.647980, 'red', '175.9 ¢/Litre
St Jacques / St Pierre
Lachine
Fri, 17 May 2024 13:15'], [45.481060, -73.578331, 'red', '175.9 ¢/Litre
Notre-Dame / Atwater
Le Sud-Ouest
Fri, 17 May 2024 13:16'], [45.496989, -73.447439, 'red', '175.9 ¢/Litre
Soucy / Maricourt
Saint-Hubert
Fri, 17 May 2024 13:11'], [45.467640, -73.538519, 'red', '175.9 ¢/Litre
Du Commerce / René Lévesque
Île des Soeurs
Sat, 18 May 2024 13:53'], [45.479275, -73.465158, 'red', '174.9 ¢/Litre
Taschereau / Angèle
Brossard
Fri, 17 May 2024 13:09'], [45.462287, -73.453165, 'red', '174.9 ¢/Litre
Bergerac / Lapinière / Broadway
Brossard
Fri, 17 May 2024 13:09'], [45.473358, -73.441447, 'red', '174.9 ¢/Litre
Grande Allée / Milan / Gaétan Boucher
Brossard
Fri, 17 May 2024 13:08'], [45.465169, -73.345462, 'red', '174.9 ¢/Litre
1499 Ch de Chambly / Cousineau
Carignan
Fri, 17 May 2024 13:07'], [45.574931, -73.876109, 'blue', 'Belisle - 173.9 ¢/Litre
St-Laurent
Saint-Eustache
Fri, 17 May 2024 10:38'], [45.475969, -73.361190, 'blue', 'Pétrole Maurice - 172.9 ¢/Litre
Chambly / Daniel
Saint-Hubert
Sat, 18 May 2024 00:16'], [45.576935, -73.327703, 'blue', '172.9 ¢/Litre
Fer-à-Cheval / Nobel / Aut 20 (Sortie 102)
Sainte-Julie
Fri, 17 May 2024 12:47'], [45.475831, -73.361552, 'blue', 'Pétrole Maurice - 172.9 ¢/Litre
8855 ch chambly
Longuueil
Sat, 18 May 2024 00:13'], [45.439112, -73.190249, 'blue', 'Pétrole Maurice - 172.9 ¢/Litre
chemin chambly
Saint-Hubert
Sat, 18 May 2024 00:12'], [45.576824, -73.327727, 'blue', '172.9 ¢/Litre
Fer-à-Cheval / Nobel / Aut 20 (Sortie 102)
Sainte-Julie
Fri, 17 May 2024 12:48'], [45.721626, -73.506924, 'green', 'Costco - 169.9 ¢/Litre
870 monte des pionniers
Terrebonne
Sat, 18 May 2024 14:33'], [45.485923, -73.553562, 'green', 'Costco - 169.9 ¢/Litre
300 Bridge St
Montréal
Fri, 17 May 2024 09:41'], [45.562847, -73.224587, 'green', '169.9 ¢/Litre
235 Blvd Yvon-l’Heureux Nord
Beloeil
Fri, 17 May 2024 12:49'], [45.607988, -73.584409, 'green', 'Costco - 169.9 ¢/Litre
Bombardier / Renaude-Lapointe
Anjou
Fri, 17 May 2024 13:14'], [45.433637, -73.477474, 'green', 'Costco - 169.9 ¢/Litre
Taschereau / Matte
Brossard
Fri, 17 May 2024 13:08'], [45.577602, -73.405821, 'green', 'Costco - 168.9 ¢/Litre
635 ch de Touraine
Boucherville
Fri, 17 May 2024 10:14'], [45.592500, -73.342699, 'green', '165.9 ¢/Litre
Auto20/sortie 102
Sainte-Julie
Fri, 17 May 2024 09:35'], [45.475831, -73.361552, 'green', 'Pétrole Maurice - 164.9 ¢/Litre
8855 Ch de Chambly
Saint-Hubert
Fri, 17 May 2024 07:29'], [45.580715, -73.760447, 'green', 'Costco - 164.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Sat, 18 May 2024 13:54'], [45.686705, -73.432357, 'green', '164.9 ¢/Litre
Marie-Victorin / Quévillon
Varennes
Fri, 17 May 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+");});"); } }