/**** * 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.433375, -73.166243); 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.506039, -73.430198, 'red', '179.9 ¢/Litre
Cousineau / Chambly
Saint-Hubert
Tue, 07 May 2024 23:00'], [45.563198, -73.206169, 'red', '178.9 ¢/Litre
Blv. Laurier/coin Duvernay
Beloeil
Wed, 08 May 2024 15:00'], [45.559403, -73.199348, 'red', '177.9 ¢/Litre
180 Chemin des Patriotes Sud
Mont-Saint-Hilaire
Wed, 08 May 2024 15:03'], [45.592500, -73.342699, 'red', '177.9 ¢/Litre
Auto20/sortie 102
Sainte-Julie
Thu, 09 May 2024 04:36'], [45.467640, -73.538519, 'blue', '176.9 ¢/Litre
Du Commerce / René Lévesque
Île des Soeurs
Wed, 08 May 2024 21:45'], [45.567533, -73.450397, 'blue', '173.9 ¢/Litre
2800 Boul Jacques-Cartier E. / Ch du Lac
Longueuil
Tue, 07 May 2024 21:36'], [45.596376, -73.090448, 'blue', '173.9 ¢/Litre
Laurier / Rte 116 / St Joseph
Sainte-Madeleine
Wed, 08 May 2024 00:11'], [45.475831, -73.361552, 'green', 'Pétrole Maurice - 171.9 ¢/Litre
8855 ch chambly
Longuueil
Wed, 08 May 2024 11:00'], [45.577602, -73.405821, 'green', 'Costco - 171.9 ¢/Litre
635 ch de Touraine
Boucherville
Wed, 08 May 2024 15:07'], [45.686705, -73.432357, 'green', '171.9 ¢/Litre
Marie-Victorin / Quévillon
Varennes
Wed, 08 May 2024 11:00'], [45.475969, -73.361190, 'green', 'Pétrole Maurice - 171.9 ¢/Litre
Chambly / Daniel
Saint-Hubert
Wed, 08 May 2024 11:00'], [45.475831, -73.361552, 'green', 'Pétrole Maurice - 171.9 ¢/Litre
8855 Ch de Chambly
Saint-Hubert
Wed, 08 May 2024 11:00'], [45.439112, -73.190249, 'green', 'Pétrole Maurice - 171.9 ¢/Litre
chemin chambly
Saint-Hubert
Wed, 08 May 2024 11:00'], [45.433637, -73.477474, 'green', 'Costco - 169.9 ¢/Litre
Taschereau / Matte
Brossard
Tue, 07 May 2024 23:00'], [45.351623, -73.292885, 'green', 'Pétrole Maurice - 167.9 ¢/Litre
St Luc / des Échevins / Bernier
Saint-Jean-sur-Richelieu
Wed, 08 May 2024 21:40']]; 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+");});"); } }