/**** * 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.651897, -74.090170); 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.490275, -73.802855, 'red', '176.9 ¢/Litre
Sources / Hyman
Dollard-des-Ormeaux
Tue, 14 May 2024 23:38'], [45.445923, -73.741216, 'red', '176.9 ¢/Litre
Dorval / Aut 20
Dorval
Tue, 14 May 2024 23:36'], [45.493315, -73.807043, 'red', '176.9 ¢/Litre
Sources / Churchill
Dollard-des-Ormeaux
Tue, 14 May 2024 23:38'], [45.574931, -73.876109, 'red', 'Belisle - 175.0 ¢/Litre
St-Laurent
Saint-Eustache
Thu, 16 May 2024 10:57'], [45.535775, -73.666173, 'red', '174.8 ¢/Litre
l’Acadie / Sauvé O
Ahuntsic-Cartierville
Wed, 15 May 2024 22:48'], [45.518665, -73.698429, 'blue', '173.9 ¢/Litre
Poirier / Grenet
Saint-Laurent
Tue, 14 May 2024 22:00'], [45.560186, -73.887346, 'blue', '170.9 ¢/Litre
22 Boul Arthur-Sauvé & Rue St-Louis
Saint-Eustache
Wed, 15 May 2024 09:17'], [45.568407, -73.887552, 'blue', '170.9 ¢/Litre
Saint-Laurent / boul. goyer
Saint-Eustache
Thu, 16 May 2024 14:21'], [45.721626, -73.506924, 'green', 'Costco - 169.9 ¢/Litre
870, Montée des Pionniers
Terrebonne
Wed, 15 May 2024 15:14'], [45.721453, -73.508422, 'green', 'Costco - 169.9 ¢/Litre
des Pionniers / Yves-Blais
Terrebonne
Wed, 15 May 2024 10:47'], [45.721626, -73.506924, 'green', 'Costco - 169.9 ¢/Litre
870 MTE DE PIONNIERS
Terrebonne
Thu, 16 May 2024 08:37'], [45.763549, -74.018241, 'green', 'Costco - 167.9 ¢/Litre
Jean-Baptiste-Rolland O / Brière
Saint-Jérôme
Wed, 15 May 2024 10:46'], [45.580715, -73.760447, 'green', 'Costco - 165.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Thu, 16 May 2024 14:18']]; 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+");});"); } }