/**** * 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.468051, -73.672946); 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.591175, -73.525419, 'red', '179.9 ¢/Litre
Hochelaga / Curatteau / Aut 25
Hochelaga-Maisonneuve
Tue, 14 May 2024 23:25'], [45.469156, -73.649957, 'red', '177.9 ¢/Litre
Cote St Luc / Montclair
Côte-Saint-Luc
Tue, 14 May 2024 23:36'], [45.406872, -73.497527, 'red', '177.9 ¢/Litre
Taschereau / Salaberry
La Prairie
Tue, 14 May 2024 22:00'], [45.542687, -73.455710, 'red', '177.9 ¢/Litre
Jacques-Cartier-E/ Du Tremblay
Longueuil
Tue, 14 May 2024 23:00'], [45.445923, -73.741216, 'blue', '176.9 ¢/Litre
Dorval / Aut 20
Dorval
Tue, 14 May 2024 23:36'], [45.470437, -73.495625, 'blue', '176.9 ¢/Litre
Marie-Victorin / Provencher
Brossard
Tue, 14 May 2024 23:29'], [45.490275, -73.802855, 'blue', '176.9 ¢/Litre
Sources / Hyman
Dollard-des-Ormeaux
Tue, 14 May 2024 23:38'], [45.518884, -73.456728, 'blue', '176.9 ¢/Litre
Chambly / Des Ormeaux
Longueuil
Tue, 14 May 2024 23:23'], [45.439289, -73.621925, 'blue', '176.9 ¢/Litre
Lapierre / Newman
LaSalle
Tue, 14 May 2024 23:35'], [45.471419, -73.648055, 'blue', '176.9 ¢/Litre
Cote St Luc / Cavendish
Notre-Dame-de-Grâce
Tue, 14 May 2024 23:35'], [45.493315, -73.807043, 'blue', '176.9 ¢/Litre
Sources / Churchill
Dollard-des-Ormeaux
Tue, 14 May 2024 23:38'], [45.436609, -73.625192, 'blue', '175.9 ¢/Litre
Newman / Thierry
LaSalle
Tue, 14 May 2024 23:32'], [45.518665, -73.698429, 'blue', '173.9 ¢/Litre
Poirier / Grenet
Saint-Laurent
Tue, 14 May 2024 22:00'], [45.462287, -73.453165, 'blue', '172.9 ¢/Litre
Bergerac / Lapinière / Broadway
Brossard
Tue, 14 May 2024 21:30'], [45.414839, -73.485305, 'blue', '172.9 ¢/Litre
Ch. St-Jean/du Maire
La Prairie
Tue, 14 May 2024 21:00'], [45.420024, -73.486377, 'blue', '172.9 ¢/Litre
Taschereau / Balmoral
La Prairie
Tue, 14 May 2024 21:00'], [45.479275, -73.465158, 'blue', '172.9 ¢/Litre
Taschereau / Angèle
Brossard
Tue, 14 May 2024 21:30'], [45.433637, -73.477474, 'green', 'Costco - 169.9 ¢/Litre
Taschereau / Matte
Brossard
Tue, 14 May 2024 21:00'], [45.607988, -73.584409, 'green', 'Costco - 169.9 ¢/Litre
Bombardier / Renaude-Lapointe
Anjou
Tue, 14 May 2024 19:03'], [45.371582, -73.515440, 'green', 'Costco - 168.9 ¢/Litre
Strasbourg / Sardaigne
Candiac
Tue, 14 May 2024 21:00'], [45.586855, -73.392469, 'green', 'costco boucherville - 168.9 ¢/Litre
Chemin de Touraine
Boucherville
Tue, 14 May 2024 17:27'], [45.580715, -73.760447, 'green', 'Costco - 167.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Wed, 15 May 2024 01: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+");});"); } }