/**** * 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.383375, -73.982935); 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.560186, -73.887346, 'red', '184.9 ¢/Litre
22 Boul Arthur-Sauvé & Rue St-Louis
Saint-Eustache
Tue, 30 Apr 2024 10:59'], [45.421724, -73.635371, 'red', '184.9 ¢/Litre
Airlie / 80e Ave
LaSalle
Wed, 01 May 2024 11:09'], [45.481416, -73.577714, 'red', '184.9 ¢/Litre
Notre-Dame / Atwater
Le Sud-Ouest
Wed, 01 May 2024 11:09'], [45.538106, -73.699054, 'red', '184.9 ¢/Litre
Salaberry / James Morrice
Ahuntsic-Cartierville
Wed, 01 May 2024 11:10'], [45.533296, -73.656549, 'red', '184.9 ¢/Litre
l’Acadie / Chabanel
Ahuntsic-Cartierville
Wed, 01 May 2024 11:11'], [45.450633, -73.862039, 'red', '183.9 ¢/Litre
St Charles / Aut 40
Kirkland
Wed, 01 May 2024 11:20'], [45.503398, -73.756933, 'red', '183.9 ¢/Litre
3550 Boul Pitfield / Salaberry
Pierrefonds
Wed, 01 May 2024 11:19'], [45.499602, -73.750851, 'red', '183.9 ¢/Litre
Pitfield / Aut 13 / Valiquette
Saint-Laurent
Wed, 01 May 2024 11:18'], [45.474511, -73.608761, 'red', '183.9 ¢/Litre
Decarie / Sherbrooke
Notre-Dame-de-Grâce
Wed, 01 May 2024 11:08'], [45.474096, -73.609107, 'red', '183.9 ¢/Litre
Decarie / Sherbrooke
Notre-Dame-de-Grâce
Wed, 01 May 2024 11:08'], [45.445923, -73.741216, 'red', '183.9 ¢/Litre
Dorval / Aut 20
Dorval
Wed, 01 May 2024 11:21'], [45.448085, -73.747369, 'blue', '182.9 ¢/Litre
Aut 20 / Fénelon / Côte de Liesse
Dorval
Wed, 01 May 2024 11:19'], [45.542332, -73.912503, 'blue', '180.9 ¢/Litre
20e Avenue / Boul Deux-Montagnes
Deux-Montagnes
Wed, 01 May 2024 15:40'], [45.575530, -73.874862, 'blue', '180.9 ¢/Litre
25e Avenue / St-Laurent
Saint-Eustache
Wed, 01 May 2024 15:39'], [45.483465, -73.796180, 'blue', '180.9 ¢/Litre
Sources / Brunswick
Dollard-des-Ormeaux
Wed, 01 May 2024 11:18'], [45.510830, -73.806914, 'blue', '180.9 ¢/Litre
Gouin / Centre Commercial
Roxboro
Wed, 01 May 2024 11:17'], [45.539179, -73.643545, 'green', '179.9 ¢/Litre
155 Cremazie O / Waverly
Ahuntsic-Cartierville
Wed, 01 May 2024 11:10'], [45.574931, -73.876109, 'green', 'Belisle - 178.9 ¢/Litre
St-Laurent
Saint-Eustache
Wed, 01 May 2024 15:39'], [45.593235, -73.907617, 'green', '178.9 ¢/Litre
25ième ave
Saint-Eustache
Wed, 01 May 2024 15:39'], [45.575639, -73.892358, 'green', '178.9 ¢/Litre
Antoine-Séguin/rue Dubois
Saint-Eustache
Wed, 01 May 2024 15:40'], [45.544611, -73.920577, 'green', '178.9 ¢/Litre
Boul. des Promenades
Deux-Montagnes
Wed, 01 May 2024 15:40'], [45.486768, -73.551440, 'green', 'Costco - 177.9 ¢/Litre
Bridge / Mill
Le Sud-Ouest
Wed, 01 May 2024 11:07'], [45.404236, -74.037960, 'green', 'Costco - 175.9 ¢/Litre
St-Charles / Dunberry
Vaudreuil-Dorion
Wed, 01 May 2024 11:24'], [45.580715, -73.760447, 'green', 'Costco - 175.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Wed, 01 May 2024 11:24']]; 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+");});"); } }