/**** * 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.466709, -74.082940); 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, 08 May 2024 02:00'], [45.437545, -73.691945, 'red', '179.9 ¢/Litre
32e Ave / Remembrance
Lachine
Wed, 08 May 2024 00:00'], [45.443789, -73.647980, 'blue', '177.9 ¢/Litre
St Jacques / St Pierre
Lachine
Thu, 09 May 2024 14:58'], [45.428192, -73.629955, 'blue', '177.9 ¢/Litre
Dollard / Lithuania
LaSalle
Thu, 09 May 2024 14:57'], [45.535775, -73.666173, 'blue', '177.0 ¢/Litre
l’Acadie / Sauvé O
Ahuntsic-Cartierville
Wed, 08 May 2024 18:00'], [45.483405, -73.796368, 'blue', '176.9 ¢/Litre
Sources / Brunswick
Dollard-des-Ormeaux
Wed, 08 May 2024 01:58'], [45.574931, -73.876109, 'blue', 'Belisle - 175.9 ¢/Litre
St-Laurent
Saint-Eustache
Thu, 09 May 2024 10:29'], [45.431217, -73.618933, 'blue', '173.9 ¢/Litre
Shevchencko / Jean-Brillon
LaSalle
Thu, 09 May 2024 14:56'], [45.432634, -73.637114, 'blue', '173.9 ¢/Litre
Dollard / Bédard
LaSalle
Thu, 09 May 2024 14:56'], [45.439289, -73.621925, 'green', '173.0 ¢/Litre
Lapierre / Newman
LaSalle
Thu, 09 May 2024 14:56'], [45.432549, -73.628853, 'green', '172.9 ¢/Litre
8390 BOUL NEWMAN
LaSalle
Thu, 09 May 2024 12:30'], [45.561464, -73.785208, 'green', 'Costco - 169.9 ¢/Litre
2999 Aut 440 / Aut 15
Laval
Tue, 07 May 2024 16:30'], [45.576197, -73.891953, 'red', '169.0 ¢/Litre
400 rue Dubois
Saint-Eustache
Mon, 06 May 2024 21:00'], [45.580715, -73.760447, 'green', 'Costco - 168.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Wed, 08 May 2024 21:44']]; 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+");});"); } }