/**** * 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.850039, -73.599584); 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.681034, -73.437497, 'red', '189.5 ¢/Litre
De La Marine / Rte 132
Varennes
Fri, 26 Apr 2024 10:27'], [45.653279, -73.510702, 'blue', '184.9 ¢/Litre
Sherbrooke / Tricentenaire
Pointe-aux-Trembles
Fri, 26 Apr 2024 08:30'], [45.644168, -73.513834, 'blue', '184.9 ¢/Litre
Sherbrooke E / St Jean Baptiste
Pointe-aux-Trembles
Fri, 26 Apr 2024 08:30'], [45.538301, -73.480087, 'blue', '184.9 ¢/Litre
Rolland Therrien / Du Lac
Longueuil
Fri, 26 Apr 2024 10:27'], [45.652220, -73.511061, 'blue', '184.9 ¢/Litre
Sherbrooke / Tricentenaire
Pointe-aux-Trembles
Fri, 26 Apr 2024 09:00'], [45.530207, -73.457127, 'blue', '181.9 ¢/Litre
Rolland Therrien / Toulouse
Longueuil
Fri, 26 Apr 2024 09:00'], [45.521714, -73.463444, 'blue', '181.9 ¢/Litre
Chambly / Jacques Cartier
Longueuil
Fri, 26 Apr 2024 09:00'], [45.767198, -73.444897, 'blue', '179.9 ¢/Litre
Valmont / Aut 40
Repentigny
Fri, 26 Apr 2024 10:32'], [45.607988, -73.584409, 'blue', 'Costco - 178.9 ¢/Litre
Bombardier / Renaude-Lapointe
Anjou
Fri, 26 Apr 2024 10:42'], [45.757243, -73.479935, 'green', '176.9 ¢/Litre
225 St-Paul
Le Gardeur
Fri, 26 Apr 2024 10:30'], [45.733744, -73.467802, 'green', '176.9 ¢/Litre
Larochelle / Cherrier
Repentigny
Fri, 26 Apr 2024 10:28'], [45.717432, -73.511367, 'green', '175.9 ¢/Litre
Des Pionniers / Pierre le Gardeur
Lachenaie
Fri, 26 Apr 2024 10:29'], [45.580715, -73.760447, 'green', 'Costco - 174.9 ¢/Litre
2999 Aut.440 Laval/Ave. Jacques-Bureau
Laval
Fri, 26 Apr 2024 10:40'], [45.721453, -73.508422, 'green', 'Costco - 174.9 ¢/Litre
des Pionniers / Yves-Blais
Terrebonne
Fri, 26 Apr 2024 10:29'], [45.763549, -74.018241, 'green', 'Costco - 173.9 ¢/Litre
Jean-Baptiste-Rolland O / Brière
Saint-Jérôme
Fri, 26 Apr 2024 10:39']]; 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+");});"); } }