/**** * 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.383374, -73.949600); 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.432974, -73.855976, 'red', '180.9 ¢/Litre
Elm / Allancroft
Beaconsfield
Tue, 04 Jun 2024 12:42'], [45.463450, -73.578391, 'blue', '172.9 ¢/Litre
1125 Ave de l’Eglise & Rue Cool
Verdun
Tue, 04 Jun 2024 13:08'], [45.492127, -73.710676, 'blue', '172.9 ¢/Litre
Côte Vertu / Bégin
Saint-Laurent
Tue, 04 Jun 2024 13:13'], [45.493232, -73.709000, 'blue', '172.9 ¢/Litre
Côte Vertu / Begin
Saint-Laurent
Tue, 04 Jun 2024 13:12'], [45.464810, -73.585022, 'blue', '172.9 ¢/Litre
La Verendrye / De l’Église
Le Sud-Ouest
Tue, 04 Jun 2024 13:09'], [45.483866, -73.579463, 'blue', '172.9 ¢/Litre
Atwater / St Jacques
Le Sud-Ouest
Tue, 04 Jun 2024 13:07'], [45.452802, -73.572274, 'blue', '172.9 ¢/Litre
Verdun / Woodland
Verdun
Tue, 04 Jun 2024 13:08'], [45.453096, -73.584039, 'blue', '172.9 ¢/Litre
Woodland / de la Verendrye
Le Sud-Ouest
Wed, 05 Jun 2024 00:32'], [45.652417, -73.536275, 'blue', '171.9 ¢/Litre
Henri-Bourassa / St Jean Baptiste
Montréal
Tue, 04 Jun 2024 11:30'], [45.437545, -73.691945, 'blue', '171.9 ¢/Litre
32e Ave / Remembrance
Lachine
Tue, 04 Jun 2024 12:00'], [45.574931, -73.876109, 'blue', 'Belisle - 170.9 ¢/Litre
St-Laurent
Saint-Eustache
Tue, 04 Jun 2024 11:20'], [45.510830, -73.806914, 'blue', '168.9 ¢/Litre
Gouin / Centre Commercial
Roxboro
Tue, 04 Jun 2024 13:11'], [45.467640, -73.538519, 'blue', '168.9 ¢/Litre
Du Commerce / René Lévesque
Île des Soeurs
Wed, 05 Jun 2024 00:29'], [45.489274, -73.724608, 'blue', '168.9 ¢/Litre
8300 Trans Canada (aut 40) / Montee de Liesse
Saint-Laurent
Wed, 05 Jun 2024 00:35'], [45.431217, -73.618933, 'green', '166.9 ¢/Litre
Shevchencko / Jean-Brillon
LaSalle
Tue, 04 Jun 2024 13:06'], [45.514779, -73.719469, 'green', '166.9 ¢/Litre
Henri-Bourassa / Lafrance
Saint-Laurent
Wed, 05 Jun 2024 00:35'], [45.439289, -73.621925, 'green', '166.9 ¢/Litre
Lapierre / Newman
LaSalle
Tue, 04 Jun 2024 11:00'], [45.448085, -73.747369, 'green', '165.9 ¢/Litre
Aut 20 / Fénelon / Côte de Liesse
Dorval
Tue, 04 Jun 2024 13:10'], [45.580715, -73.760447, 'green', 'Costco - 164.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Tue, 04 Jun 2024 18:32'], [45.486768, -73.551440, 'green', 'Costco - 163.9 ¢/Litre
Bridge / Mill
Le Sud-Ouest
Tue, 04 Jun 2024 13:05'], [45.490275, -73.802855, 'green', '162.9 ¢/Litre
Sources / Hyman
Dollard-des-Ormeaux
Wed, 05 Jun 2024 00:00'], [45.371582, -73.515440, 'green', 'Costco - 160.5 ¢/Litre
Strasbourg / Sardaigne
Candiac
Tue, 04 Jun 2024 13:17']]; 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+");});"); } }