/**** * 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.45004, -72.532892); 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.331377, -72.648969, 'red', '186.9 ¢/Litre
Bromont / Aut 10 (Sortie 78)
Bromont
Fri, 26 Apr 2024 10:50'], [45.198690, -72.662206, 'red', '183.9 ¢/Litre
Ch Knowlton (104) / Ch West Brome (139)
West-Brome
Fri, 26 Apr 2024 10:51'], [45.191015, -72.755007, 'red', '183.9 ¢/Litre
Rue du Sud / Rte 202 / Jaques Bertrand
Cowansville
Fri, 26 Apr 2024 10:52'], [45.210419, -72.768813, 'red', '183.9 ¢/Litre
de la Rivière / Hanson
Cowansville
Thu, 25 Apr 2024 12:00'], [45.210608, -72.768878, 'red', '183.9 ¢/Litre
Rivere / Hanson
Cowansville
Thu, 25 Apr 2024 12:00'], [45.401205, -72.760404, 'blue', '181.9 ¢/Litre
Maisonneuve / Simmonds
Granby
Fri, 26 Apr 2024 10:50'], [45.414653, -72.718391, 'blue', '181.9 ¢/Litre
Dufferin (coin Bourget)
Granby
Fri, 26 Apr 2024 10:51'], [45.329043, -72.817201, 'green', '172.9 ¢/Litre
Rte 139 / Aut 10 (Sortie 68)
Saint-Alphonse-de-Granby
Thu, 25 Apr 2024 14:44'], [45.365866, -72.933780, 'green', '172.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Thu, 25 Apr 2024 14:47'], [45.362059, -72.934853, 'green', '172.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Thu, 25 Apr 2024 14:48'], [45.364946, -72.934102, 'green', '172.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Thu, 25 Apr 2024 14:48'], [45.342316, -72.783502, 'green', '172.9 ¢/Litre
Rte 139 / Aut 10 (Sortie 68)
Saint-Alphonse-de-Granby
Thu, 25 Apr 2024 14: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+");});"); } }