/**** * 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=e * ****/ function mapload() { var latlng = new google.maps.LatLng(45.403097, -73.949044); 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.593235, -73.907617, 'red', '179.9 ¢/Litre
25ième ave
Saint-Eustache
Sat, 11 May 2024 15:00'], [45.574931, -73.876109, 'red', 'Belisle - 178.9 ¢/Litre
St-Laurent
Saint-Eustache
Sat, 11 May 2024 15:00'], [45.467640, -73.538519, 'red', '177.9 ¢/Litre
Du Commerce / René Lévesque
Île des Soeurs
Sat, 11 May 2024 20:24'], [45.595021, -73.576689, 'blue', '176.9 ¢/Litre
Aut 40 / Langelier
Saint-Leonard
Sat, 11 May 2024 12:30'], [45.464810, -73.585022, 'blue', '175.9 ¢/Litre
La Verendrye / De l’Église
Le Sud-Ouest
Sat, 11 May 2024 14:00'], [45.571185, -73.913286, 'blue', '174.9 ¢/Litre
Arthur-Sauvé/Grignon (Hôpital
Saint-Eustache
Sat, 11 May 2024 15:01'], [45.575639, -73.892358, 'blue', '174.9 ¢/Litre
Antoine-Séguin/rue Dubois
Saint-Eustache
Sat, 11 May 2024 15:00'], [45.470851, -73.564091, 'green', '171.9 ¢/Litre
Wellington / Gilberte-Dubé / Henri-Duhamel
Verdun
Sat, 11 May 2024 21:09'], [45.432706, -73.646336, 'green', '169.9 ¢/Litre
Lafleur / Clément
LaSalle
Sat, 11 May 2024 13:00'], [45.371582, -73.515440, 'green', 'Costco - 169.9 ¢/Litre
Strasbourg / Sardaigne
Candiac
Sat, 11 May 2024 13:55'], [45.486768, -73.551440, 'green', 'Costco - 169.9 ¢/Litre
Bridge / Mill
Le Sud-Ouest
Sat, 11 May 2024 11:00'], [45.580715, -73.760447, 'green', 'Costco - 168.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Sat, 11 May 2024 20:23']]; 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+");});"); } }