/**** * 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.482161, -73.862200); 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.435143, -73.476495, 'red', '181.9 ¢/Litre
Taschereau / Matte
Brossard
Mon, 06 May 2024 00:00'], [45.580549, -73.590197, 'blue', '178.9 ¢/Litre
Aut 40 / Boischatel / Lacordaire
Saint-Leonard
Mon, 06 May 2024 13:21'], [45.486616, -73.636535, 'blue', '177.9 ¢/Litre
Decarie / Dupuis / Cote Ste Catherine
Côte-des-Neiges
Mon, 06 May 2024 13:17'], [45.478890, -73.478282, 'blue', '177.9 ¢/Litre
Simard / Victoria
Saint-Lambert
Mon, 06 May 2024 12:40'], [45.479275, -73.465158, 'blue', '177.9 ¢/Litre
Taschereau / Angèle
Brossard
Mon, 06 May 2024 11:00'], [45.493703, -73.479352, 'blue', '177.9 ¢/Litre
Taschereau / Georges
Greenfield Park
Mon, 06 May 2024 12:38'], [45.467640, -73.538519, 'blue', '177.9 ¢/Litre
Du Commerce / René Lévesque
Île des Soeurs
Mon, 06 May 2024 14:01'], [45.497098, -73.624101, 'blue', '177.9 ¢/Litre
Côte-des-Neiges / Edouard-Montpetit
Côte-des-Neiges
Mon, 06 May 2024 13:17'], [45.486054, -73.633837, 'blue', '177.9 ¢/Litre
Décarie / Edouard Montpetit / Lacombe
Côte-des-Neiges
Mon, 06 May 2024 13:18'], [45.471419, -73.648055, 'blue', '177.9 ¢/Litre
Cote St Luc / Cavendish
Notre-Dame-de-Grâce
Mon, 06 May 2024 13:18'], [45.501070, -73.632488, 'blue', '177.9 ¢/Litre
Côte-des-Neiges / Van Horne
Côte-des-Neiges
Mon, 06 May 2024 13:19'], [45.495543, -73.655560, 'blue', '177.9 ¢/Litre
Décarie / Paré
Côte-des-Neiges
Mon, 06 May 2024 13:20'], [45.495855, -73.654884, 'blue', '177.9 ¢/Litre
Décarie / Paré
Côte-des-Neiges
Mon, 06 May 2024 13:21'], [45.610827, -73.608259, 'blue', '177.9 ¢/Litre
Henri Bourassa / Langelier
Montréal-Nord
Mon, 06 May 2024 13:23'], [45.462287, -73.453165, 'blue', '177.9 ¢/Litre
Bergerac / Lapinière / Broadway
Brossard
Mon, 06 May 2024 12:37'], [45.574931, -73.876109, 'blue', 'Belisle - 177.9 ¢/Litre
St-Laurent
Saint-Eustache
Mon, 06 May 2024 11:41'], [45.432549, -73.628853, 'blue', '176.9 ¢/Litre
8390 BOUL NEWMAN
LaSalle
Mon, 06 May 2024 13:16'], [45.486768, -73.551440, 'green', 'Costco - 174.9 ¢/Litre
Bridge / Mill
Le Sud-Ouest
Mon, 06 May 2024 00:00'], [45.432634, -73.637114, 'green', '174.9 ¢/Litre
Dollard / Bédard
LaSalle
Mon, 06 May 2024 12:42'], [45.595374, -73.556852, 'green', '173.9 ¢/Litre
Galeries d’Anjou / Beaubien
Anjou
Mon, 06 May 2024 13:22'], [45.580715, -73.760447, 'green', 'Costco - 172.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Mon, 06 May 2024 14:01'], [45.522034, -73.464228, 'green', '172.9 ¢/Litre
2720 Ch.de Chambly/Bl Jacques Cartier
Longueuil
Sun, 05 May 2024 18:29'], [45.607988, -73.584409, 'green', 'Costco - 172.9 ¢/Litre
Bombardier / Renaude-Lapointe
Anjou
Mon, 06 May 2024 13:23'], [45.433637, -73.477474, 'green', 'Costco - 172.9 ¢/Litre
Taschereau / Matte
Brossard
Mon, 06 May 2024 12:36'], [45.519095, -73.457231, 'green', '172.9 ¢/Litre
Coin Chambly et Desormeaux
Longueuil
Sun, 05 May 2024 18: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+");});"); } }