/**** * 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.496602, -73.609557); 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.593169, -73.185226, 'red', '180.9 ¢/Litre
Brunet / Aut 20 (Sortie 113)
Mont-Saint-Hilaire
Sun, 19 May 2024 00:13'], [45.560186, -73.887346, 'red', '177.9 ¢/Litre
22 Boul Arthur-Sauvé & Rue St-Louis
Saint-Eustache
Sat, 18 May 2024 19:36'], [45.467640, -73.538519, 'red', '177.9 ¢/Litre
Du Commerce / René Lévesque
Île des Soeurs
Sun, 19 May 2024 13:39'], [45.571185, -73.913286, 'red', '176.9 ¢/Litre
Arthur-Sauvé/Grignon (Hôpital
Saint-Eustache
Sat, 18 May 2024 19:37'], [45.542277, -73.187736, 'blue', '174.9 ¢/Litre
511 Chemin Ozias-Leduc
Otterburn Park
Sun, 19 May 2024 00:17'], [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.568407, -73.887552, 'blue', '172.9 ¢/Litre
Saint-Laurent / boul. goyer
Saint-Eustache
Sat, 18 May 2024 19:36'], [45.475969, -73.361190, 'blue', 'Pétrole Maurice - 172.9 ¢/Litre
Chambly / Daniel
Saint-Hubert
Sat, 18 May 2024 00:16'], [45.574931, -73.876109, 'blue', 'Belisle - 171.9 ¢/Litre
St-Laurent
Saint-Eustache
Sun, 19 May 2024 11:26'], [45.306225, -73.283867, 'blue', '171.9 ¢/Litre
Industriel/St Jacques
Saint-Jean-sur-Richelieu
Sat, 18 May 2024 11:05'], [45.721626, -73.506924, 'blue', 'Costco - 169.9 ¢/Litre
870 monte des pionniers
Terrebonne
Sat, 18 May 2024 14:33'], [45.568229, -73.924034, 'blue', '169.9 ¢/Litre
207 boul industriel
Saint-Eustache
Sat, 18 May 2024 19:37'], [45.566713, -73.924678, 'blue', 'Belisle - 169.9 ¢/Litre
Industriel / St-Eustache / de la Rivière N
Saint-Eustache
Sat, 18 May 2024 19:37'], [45.577602, -73.405821, 'blue', 'Costco - 168.9 ¢/Litre
635 ch de Touraine
Boucherville
Sun, 19 May 2024 08:59'], [45.370650, -73.517754, 'blue', 'Costco - 167.9 ¢/Litre
60 blvd. Strasbourg
Candiac
Sun, 19 May 2024 09:00'], [45.580715, -73.760447, 'blue', 'Costco - 164.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Sat, 18 May 2024 13:54'], [45.351623, -73.292885, 'blue', 'Pétrole Maurice - 161.9 ¢/Litre
St Luc / des Échevins / Bernier
Saint-Jean-sur-Richelieu
Sat, 18 May 2024 12:51'], [45.462896, -73.581158, 'green', '120.0 ¢/Litre
de l’Église / de la Verendrye
Le Sud-Ouest
Sun, 19 May 2024 15:43']]; 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+");});"); } }