/**** * 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.133376, -72.966238); 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.401205, -72.760404, 'red', '176.9 ¢/Litre
Maisonneuve / Simmonds
Granby
Tue, 25 Jun 2024 17:33'], [45.396802, -72.751605, 'red', '176.9 ¢/Litre
Brignon
Granby
Tue, 25 Jun 2024 17:34'], [0.000000, 0.000000, 'red', '176.9 ¢/Litre
2019 ROUTE 112
Saint-Césaire
Tue, 25 Jun 2024 17:38'], [45.335737, -72.703528, 'blue', '169.9 ¢/Litre
Pierre Laporte / Aut 10 (Sortie 74)
Bromont
Tue, 25 Jun 2024 17:32'], [45.334200, -72.651372, 'blue', '169.9 ¢/Litre
Boul. Bromont / Aut. 10
Bromont
Tue, 25 Jun 2024 17:31'], [45.334628, -72.650518, 'blue', '169.9 ¢/Litre
130 Boul du carrefour
Bromont
Tue, 25 Jun 2024 17:31'], [45.331377, -72.648969, 'blue', '169.9 ¢/Litre
Bromont / Aut 10 (Sortie 78)
Bromont
Tue, 25 Jun 2024 17:31'], [45.438019, -73.043068, 'blue', '169.9 ¢/Litre
Grande-Caroline / Pierre Préfontaine
Rougemont
Tue, 25 Jun 2024 17:36'], [45.108067, -72.616528, 'green', '166.9 ¢/Litre
Principale / Academy
Sutton
Tue, 25 Jun 2024 17:35'], [45.365866, -72.933780, 'green', '165.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Tue, 25 Jun 2024 16:00'], [45.342316, -72.783502, 'green', '165.9 ¢/Litre
Rte 139 / Aut 10 (Sortie 68)
Saint-Alphonse-de-Granby
Tue, 25 Jun 2024 17:33'], [45.329043, -72.817201, 'green', '165.9 ¢/Litre
Rte 139 / Aut 10 (Sortie 68)
Saint-Alphonse-de-Granby
Tue, 25 Jun 2024 17:32'], [45.351623, -73.292885, 'green', 'Pétrole Maurice - 160.9 ¢/Litre
St Luc / des Échevins / Bernier
Saint-Jean-sur-Richelieu
Tue, 25 Jun 2024 12:48']]; 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+");});"); } }