/**** * 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.783372, -73.182905); 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', '188.9 ¢/Litre
Brunet / Aut 20 (Sortie 113)
Mont-Saint-Hilaire
Tue, 30 Apr 2024 23:18'], [45.593169, -73.185226, 'red', '187.9 ¢/Litre
Brunet / Aut 20 (Sortie 113)
Mont-Saint-Hilaire
Tue, 30 Apr 2024 23:19'], [45.524679, -73.338112, 'red', '185.9 ¢/Litre
Montarville / Seigneurial
Saint-Bruno-de-Montarville
Wed, 01 May 2024 11:12'], [45.592500, -73.342699, 'blue', '184.9 ¢/Litre
Auto20/sortie 102
Sainte-Julie
Wed, 01 May 2024 06:07'], [45.602901, -73.351848, 'blue', '184.9 ¢/Litre
Mteé Ste-Julie / N-P Lapierre
Sainte-Julie
Wed, 01 May 2024 11:02'], [45.576935, -73.327703, 'blue', '183.9 ¢/Litre
Fer-à-Cheval / Nobel / Aut 20 (Sortie 102)
Sainte-Julie
Wed, 01 May 2024 11:02'], [45.865525, -73.145475, 'blue', '183.9 ¢/Litre
4950 des patriotes
Contrecoeur
Mon, 29 Apr 2024 08:01'], [45.851462, -73.245437, 'blue', '183.9 ¢/Litre
Marie-Victorin / Jacques
Contrecoeur
Mon, 29 Apr 2024 08:01'], [45.568999, -73.443687, 'blue', '181.9 ¢/Litre
Nobel / Volta
Boucherville
Wed, 01 May 2024 09:30'], [45.547764, -73.218460, 'blue', '179.9 ¢/Litre
Bernard-Pilon, route 116
Beloeil
Tue, 30 Apr 2024 23:20'], [45.563198, -73.206169, 'blue', '179.9 ¢/Litre
Blv. Laurier/coin Duvernay
Beloeil
Tue, 30 Apr 2024 23:19'], [45.576824, -73.327727, 'blue', '178.9 ¢/Litre
Fer-à-Cheval / Nobel / Aut 20 (Sortie 102)
Sainte-Julie
Wed, 01 May 2024 11:01'], [45.577050, -73.403659, 'green', 'Costco - 174.9 ¢/Litre
635 ch de Touraine
Boucherville
Wed, 01 May 2024 10:59'], [45.577602, -73.405821, 'green', 'Costco - 173.9 ¢/Litre
635 ch de Touraine
Boucherville
Mon, 29 Apr 2024 11:11'], [45.686705, -73.432357, 'green', '171.9 ¢/Litre
Marie-Victorin / Quévillon
Varennes
Wed, 01 May 2024 07:27'], [45.684327, -73.435514, 'green', '171.9 ¢/Litre
Marie-Victorin / Vincent
Varennes
Tue, 30 Apr 2024 19:29']]; 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+");});"); } }