/**** * 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.461015, -73.890360); 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.567869, -73.522612, 'red', '171.9 ¢/Litre
Notre-Dame E / Bossuet
Hochelaga-Maisonneuve
Tue, 11 Jun 2024 12:37'], [45.443789, -73.647980, 'red', '171.9 ¢/Litre
St Jacques / St Pierre
Lachine
Tue, 11 Jun 2024 12:51'], [45.467640, -73.538519, 'red', '171.9 ¢/Litre
Du Commerce / René Lévesque
Île des Soeurs
Tue, 11 Jun 2024 14:56'], [45.455117, -73.632777, 'red', '171.9 ¢/Litre
St-Jacques / St-Anne-de-Bellevue
Notre-Dame-de-Grâce
Tue, 11 Jun 2024 12:51'], [45.447754, -73.610053, 'red', '171.9 ¢/Litre
Newman / Angrignon
LaSalle
Tue, 11 Jun 2024 12:50'], [45.595107, -73.511586, 'red', '170.9 ¢/Litre
Notre-Dame / St Donat
Hochelaga-Maisonneuve
Tue, 11 Jun 2024 12:37'], [45.464810, -73.585022, 'red', '170.9 ¢/Litre
La Verendrye / De l’Église
Le Sud-Ouest
Tue, 11 Jun 2024 12:49'], [45.485007, -73.632753, 'red', '170.9 ¢/Litre
Decarie / Isabella
Côte-des-Neiges
Tue, 11 Jun 2024 12:50'], [45.439289, -73.621925, 'red', '169.9 ¢/Litre
Lapierre / Newman
LaSalle
Tue, 11 Jun 2024 12:49'], [45.536265, -73.513074, 'blue', '168.9 ¢/Litre
St-Charles / St-Sylvestre
Longueuil
Tue, 11 Jun 2024 10:30'], [45.574931, -73.876109, 'blue', 'Belisle - 168.9 ¢/Litre
St-Laurent
Saint-Eustache
Tue, 11 Jun 2024 09:19'], [45.512580, -73.499581, 'blue', '168.9 ¢/Litre
Taschereau / Ste Foy
Longueuil
Tue, 11 Jun 2024 10:30'], [45.436609, -73.625192, 'blue', '167.9 ¢/Litre
Newman / Thierry
LaSalle
Tue, 11 Jun 2024 12:48'], [45.456332, -73.415714, 'green', '164.9 ¢/Litre
Grande Allée / Aut 30
Brossard
Tue, 11 Jun 2024 12:40'], [45.607988, -73.584409, 'green', 'Costco - 162.9 ¢/Litre
Bombardier / Renaude-Lapointe
Anjou
Tue, 11 Jun 2024 10:00'], [45.721626, -73.506924, 'green', 'Costco - 161.9 ¢/Litre
870, Montée des Pionniers
Terrebonne
Tue, 11 Jun 2024 13:24'], [45.404236, -74.037960, 'green', 'Costco - 159.9 ¢/Litre
St-Charles / Dunberry
Vaudreuil-Dorion
Tue, 11 Jun 2024 12:53'], [45.434650, -73.480101, 'green', 'Costco - 159.9 ¢/Litre
9430 Boulevard Taschereau, Brossard
Brossard
Tue, 11 Jun 2024 13:30'], [45.580715, -73.760447, 'green', 'Costco - 159.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Tue, 11 Jun 2024 14:53'], [45.486768, -73.551440, 'green', 'Costco - 159.9 ¢/Litre
Bridge / Mill
Le Sud-Ouest
Tue, 11 Jun 2024 12:48']]; 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+");});"); } }