/**** * 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.316709, -73.066241); 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.0 ¢/Litre
Bromont / Aut 10 (Sortie 78)
Bromont
Sat, 18 May 2024 15:04'], [45.322200, -73.063544, 'blue', '176.9 ¢/Litre
Principale / Rte 104 / de la Rivière E
Sainte-Brigide-d’Iberville
Sat, 18 May 2024 15:06'], [45.335737, -72.703528, 'blue', '174.9 ¢/Litre
Pierre Laporte / Aut 10 (Sortie 74)
Bromont
Sat, 18 May 2024 14:56'], [45.399642, -72.741639, 'blue', '174.9 ¢/Litre
Robinson / Notre Dame
Granby
Sat, 18 May 2024 15:02'], [45.475969, -73.361190, 'blue', 'Pétrole Maurice - 172.9 ¢/Litre
Chambly / Daniel
Saint-Hubert
Sat, 18 May 2024 00:16'], [45.439112, -73.190249, 'blue', 'Pétrole Maurice - 172.9 ¢/Litre
chemin chambly
Saint-Hubert
Sat, 18 May 2024 00:12'], [45.306225, -73.283867, 'blue', '171.9 ¢/Litre
Industriel/St Jacques
Saint-Jean-sur-Richelieu
Sat, 18 May 2024 11:05'], [45.140823, -72.800362, 'blue', '170.9 ¢/Litre
Principale / St-Joseph
Dunham
Sat, 18 May 2024 13:00'], [45.130363, -72.800925, 'blue', '170.9 ¢/Litre
Bruce / Principale
Dunham
Sat, 18 May 2024 15:03'], [0.000000, 0.000000, 'green', '169.9 ¢/Litre
Rte 235 - Sortie 55 Aut 10
L’Ange-Gardien (Montérégie)
Sat, 18 May 2024 15:06'], [45.362059, -72.934853, 'green', '169.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Sat, 18 May 2024 15:05'], [45.514231, -73.132863, 'green', '169.9 ¢/Litre
Principale / Rouville
Saint-Jean-Baptiste
Sat, 18 May 2024 08:41'], [45.351623, -73.292885, 'green', 'Pétrole Maurice - 161.9 ¢/Litre
St Luc / des Échevins / Bernier
Saint-Jean-sur-Richelieu
Sat, 18 May 2024 12:51']]; 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+");});"); } }