/**** * 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.149571); 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.637113, -72.968289, 'red', '189.9 ¢/Litre
Laframboise / Derome
Saint-Hyacinthe
Fri, 26 Apr 2024 10:24'], [45.644919, -72.978710, 'red', '189.9 ¢/Litre
3625 Boul Laframboise / Aut 20 (Sortie 130)
Saint-Hyacinthe
Fri, 26 Apr 2024 10:23'], [45.681034, -73.437497, 'red', '189.5 ¢/Litre
De La Marine / Rte 132
Varennes
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.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.520053, -73.318720, 'blue', '184.9 ¢/Litre
Sir Wilfrid Laurier / de Boucherville
Saint-Bruno-de-Montarville
Fri, 26 Apr 2024 10:46'], [45.562727, -73.206394, 'blue', '184.9 ¢/Litre
Sir Wilfrid Laurier / Duvernay
Beloeil
Fri, 26 Apr 2024 10:43'], [45.528552, -73.290176, 'blue', '183.9 ¢/Litre
Des Trinitaires / Sir Wilfrid Laurier
Saint-Basile-le-Grand
Fri, 26 Apr 2024 10:46'], [45.520131, -73.318072, 'blue', '182.9 ¢/Litre
De Boucherville / 116
Saint-Bruno-de-Montarville
Fri, 26 Apr 2024 10:45'], [45.568999, -73.443687, 'blue', '181.9 ¢/Litre
Nobel / Volta
Boucherville
Thu, 25 Apr 2024 12:00'], [45.557828, -73.231701, 'blue', '179.9 ¢/Litre
Bernard-Pilon / Yvon-L’Heureux
McMasterville
Fri, 26 Apr 2024 10:44'], [45.596376, -73.090448, 'blue', '179.9 ¢/Litre
Laurier / Rte 116 / St Joseph
Sainte-Madeleine
Fri, 26 Apr 2024 10:44'], [45.767198, -73.444897, 'blue', '179.9 ¢/Litre
Valmont / Aut 40
Repentigny
Fri, 26 Apr 2024 10:32'], [45.549520, -73.219972, 'blue', '179.9 ¢/Litre
Sir Wilfrid Laurier / Bernard Pilon
Beloeil
Fri, 26 Apr 2024 10:43'], [45.656168, -73.421819, 'green', '177.9 ¢/Litre
De La Marine / Rte 132
Varennes
Thu, 25 Apr 2024 12:00'], [45.733744, -73.467802, 'green', '176.9 ¢/Litre
Larochelle / Cherrier
Repentigny
Fri, 26 Apr 2024 10:28'], [45.744587, -73.455319, 'green', '176.9 ¢/Litre
Brien / Leclerc
Repentigny
Thu, 25 Apr 2024 14:34'], [45.757243, -73.479935, 'green', '176.9 ¢/Litre
225 St-Paul
Le Gardeur
Fri, 26 Apr 2024 10:30'], [45.717432, -73.511367, 'green', '175.9 ¢/Litre
Des Pionniers / Pierre le Gardeur
Lachenaie
Fri, 26 Apr 2024 10:29'], [45.577602, -73.405821, 'green', 'Costco - 173.9 ¢/Litre
635 ch de Touraine
Boucherville
Sat, 27 Apr 2024 09:17'], [45.577050, -73.403659, 'green', 'Costco - 173.9 ¢/Litre
635 ch de Touraine
Boucherville
Fri, 26 Apr 2024 00:30'], [45.686705, -73.432357, 'green', '173.9 ¢/Litre
Marie-Victorin / Quévillon
Varennes
Sat, 27 Apr 2024 08: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+");});"); } }