/**** * 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.400043, -74.132943); 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.483465, -73.796180, 'red', '180.9 ¢/Litre
Sources / Brunswick
Dollard-des-Ormeaux
Wed, 22 May 2024 09:26'], [45.504687, -73.778231, 'red', '179.9 ¢/Litre
Gouin O / Lalande
Pierrefonds
Wed, 22 May 2024 09:31'], [45.510830, -73.806914, 'red', '179.9 ¢/Litre
Gouin / Centre Commercial
Roxboro
Wed, 22 May 2024 09:30'], [45.461055, -73.724374, 'red', '178.9 ¢/Litre
Cote de Liesse / Aut 520 / 55e Ave
Dorval
Wed, 22 May 2024 09:30'], [45.575639, -73.892358, 'blue', '177.9 ¢/Litre
Antoine-Séguin/rue Dubois
Saint-Eustache
Mon, 20 May 2024 14:55'], [45.476958, -73.789887, 'blue', '177.9 ¢/Litre
Sources / Hymus
Dorval
Wed, 22 May 2024 09:29'], [45.482751, -73.788836, 'blue', '177.9 ¢/Litre
Aut 40 / Deacon / Sources
Dorval
Wed, 22 May 2024 09:29'], [45.574931, -73.876109, 'blue', 'Belisle - 177.9 ¢/Litre
St-Laurent
Saint-Eustache
Wed, 22 May 2024 11:15'], [45.575530, -73.874862, 'blue', '177.9 ¢/Litre
25e Avenue / St-Laurent
Saint-Eustache
Tue, 21 May 2024 15:01'], [45.476861, -73.838663, 'blue', '176.9 ¢/Litre
St Jean / Westminster
Dollard-des-Ormeaux
Wed, 22 May 2024 09:28'], [45.503398, -73.756933, 'blue', '176.9 ¢/Litre
3550 Boul Pitfield / Salaberry
Pierrefonds
Wed, 22 May 2024 09:27'], [45.490275, -73.802855, 'blue', '175.9 ¢/Litre
Sources / Hyman
Dollard-des-Ormeaux
Wed, 22 May 2024 09:28'], [45.493315, -73.807043, 'blue', '175.9 ¢/Litre
Sources / Churchill
Dollard-des-Ormeaux
Wed, 22 May 2024 09:28'], [45.582163, -73.922577, 'blue', '174.9 ¢/Litre
Arthur-Sauvé / Léveillé
Saint-Eustache
Wed, 22 May 2024 15:53'], [45.593235, -73.907617, 'green', '173.9 ¢/Litre
25ième ave
Saint-Eustache
Wed, 22 May 2024 15:52'], [45.571185, -73.913286, 'green', '173.9 ¢/Litre
Arthur-Sauvé/Grignon (Hôpital
Saint-Eustache
Wed, 22 May 2024 15:52'], [45.404236, -74.037960, 'green', 'Costco - 165.9 ¢/Litre
St-Charles / Dunberry
Vaudreuil-Dorion
Wed, 22 May 2024 09:46']]; 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+");});"); } }