/**** * 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.731087, -72.914177); 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.593169, -73.185226, 'red', '180.9 ¢/Litre
Brunet / Aut 20 (Sortie 113)
Mont-Saint-Hilaire
Sun, 19 May 2024 00:13'], [45.549520, -73.219972, 'red', '176.9 ¢/Litre
Sir Wilfrid Laurier / Bernard Pilon
Beloeil
Fri, 17 May 2024 10:30'], [45.865525, -73.145475, 'blue', '175.9 ¢/Litre
4950 des patriotes
Contrecoeur
Sat, 18 May 2024 09:32'], [45.851462, -73.245437, 'blue', '175.9 ¢/Litre
Marie-Victorin / Jacques
Contrecoeur
Sat, 18 May 2024 09:33'], [45.542277, -73.187736, 'blue', '174.9 ¢/Litre
511 Chemin Ozias-Leduc
Otterburn Park
Sun, 19 May 2024 00:17'], [46.043999, -73.104706, 'blue', '172.9 ¢/Litre
coin Hotel-Dieu - Fiset
Sorel-Tracy
Sat, 18 May 2024 09:32'], [46.026678, -73.080791, 'blue', '172.9 ¢/Litre
boul. fiset
Sorel-Tracy
Sat, 18 May 2024 09:30'], [46.024235, -73.125570, 'blue', '172.9 ¢/Litre
252 Chemin des Patriotes
Sorel-Tracy
Sat, 18 May 2024 09:31'], [46.040993, -73.100496, 'blue', '172.9 ¢/Litre
Coin Fiset Victoria
Sorel-Tracy
Sat, 18 May 2024 09:31'], [46.037744, -73.098582, 'blue', '172.9 ¢/Litre
280 boul. Fiset
Sorel-Tracy
Sat, 18 May 2024 09:30'], [46.039688, -73.107455, 'blue', '172.9 ¢/Litre
145 Victoria
Sorel-Tracy
Sat, 18 May 2024 09:30'], [45.562847, -73.224587, 'green', '169.9 ¢/Litre
235 Blvd Yvon-l’Heureux Nord
Beloeil
Fri, 17 May 2024 12:49'], [45.514231, -73.132863, 'green', '169.9 ¢/Litre
Principale / Rouville
Saint-Jean-Baptiste
Sat, 18 May 2024 08:41'], [45.596376, -73.090448, 'green', '166.9 ¢/Litre
Laurier / Rte 116 / St Joseph
Sainte-Madeleine
Sun, 19 May 2024 00:15'], [45.606363, -73.103125, 'green', '166.9 ¢/Litre
5 rue St Simon/auto 20/sortie 120
Sainte-Madeleine
Sun, 19 May 2024 00:15'], [45.636843, -72.968620, 'green', '164.9 ¢/Litre
3325 Boul. Lafranboise
Saint-Hyacinthe
Sun, 19 May 2024 00:12']]; 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+");});"); } }