/**** * 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.630689, -72.956339); 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.388524, -72.735470, 'red', '186.9 ¢/Litre
Saint-Charles S / Denison O
Granby
Wed, 15 May 2024 22:37'], [45.593169, -73.185226, 'blue', '180.9 ¢/Litre
Brunet / Aut 20 (Sortie 113)
Mont-Saint-Hilaire
Wed, 15 May 2024 07:30'], [45.432856, -73.160142, 'blue', '179.9 ¢/Litre
claude de ramezay/du pont
Marieville
Wed, 15 May 2024 08:00'], [45.593169, -73.185226, 'blue', '179.9 ¢/Litre
Brunet / Aut 20 (Sortie 113)
Mont-Saint-Hilaire
Wed, 15 May 2024 09:43'], [45.562616, -73.188010, 'blue', '176.9 ¢/Litre
328 Boul Sir-Wilfrid-Laurier / Radisson
Mont-Saint-Hilaire
Wed, 15 May 2024 09:42'], [45.549520, -73.219972, 'blue', '176.9 ¢/Litre
Sir Wilfrid Laurier / Bernard Pilon
Beloeil
Wed, 15 May 2024 09:41'], [45.562727, -73.206394, 'blue', '176.9 ¢/Litre
Sir Wilfrid Laurier / Duvernay
Beloeil
Wed, 15 May 2024 09:41'], [45.520053, -73.318720, 'blue', '176.9 ¢/Litre
Sir Wilfrid Laurier / de Boucherville
Saint-Bruno-de-Montarville
Mon, 13 May 2024 16:19'], [45.562421, -73.188442, 'blue', '176.9 ¢/Litre
324 sir-wilfrid-laurier
Mont-Saint-Hilaire
Wed, 15 May 2024 09:42'], [45.571289, -73.177673, 'blue', '176.9 ¢/Litre
Sir Wilfrid Laurier / Bernard
Mont-Saint-Hilaire
Wed, 15 May 2024 09:42'], [45.537753, -73.356759, 'blue', '176.9 ¢/Litre
Montarville / Lavérendrye
Saint-Bruno-de-Montarville
Wed, 15 May 2024 09:34'], [45.528552, -73.290176, 'blue', '176.9 ¢/Litre
Des Trinitaires / Sir Wilfrid Laurier
Saint-Basile-le-Grand
Mon, 13 May 2024 16:18'], [45.523773, -73.302032, 'blue', '176.9 ¢/Litre
Millenaire / Sir-Wilfrid-Laurier / Rte 116
Saint-Basile-le-Grand
Mon, 13 May 2024 16:19'], [45.520131, -73.318072, 'blue', '176.9 ¢/Litre
De Boucherville / 116
Saint-Bruno-de-Montarville
Mon, 13 May 2024 16:20'], [45.580515, -73.214191, 'blue', '176.9 ¢/Litre
St-Jean Baptiste / Yvon l’Heureux
Beloeil
Mon, 13 May 2024 16:20'], [45.557828, -73.231701, 'blue', '176.9 ¢/Litre
Bernard-Pilon / Yvon-L’Heureux
McMasterville
Mon, 13 May 2024 16:25'], [45.562847, -73.224587, 'blue', '176.9 ¢/Litre
235 Blvd Yvon-l’Heureux Nord
Beloeil
Mon, 13 May 2024 16:21'], [45.540392, -73.368003, 'blue', '175.9 ¢/Litre
Montarville / Parent / Aut 30 (Sortie 121)
Saint-Bruno-de-Montarville
Mon, 13 May 2024 16:27'], [45.408511, -72.730369, 'blue', 'Irving - 174.9 ¢/Litre
St-Hubert / Leclerc O
Granby
Mon, 13 May 2024 16:41'], [45.414653, -72.718391, 'blue', '174.9 ¢/Litre
Dufferin (coin Bourget)
Granby
Mon, 13 May 2024 16:42'], [45.405429, -72.708092, 'blue', '174.9 ¢/Litre
Leclerc / Swett
Granby
Mon, 13 May 2024 16:40'], [45.576824, -73.327727, 'blue', '174.9 ¢/Litre
Fer-à-Cheval / Nobel / Aut 20 (Sortie 102)
Sainte-Julie
Mon, 13 May 2024 16:25'], [45.656293, -73.291703, 'green', '173.9 ¢/Litre
Rue principale
Saint-Amable
Mon, 13 May 2024 16:24'], [45.635377, -73.316982, 'green', '170.9 ¢/Litre
Principale / Adam
Saint-Amable
Mon, 13 May 2024 16:22'], [45.365866, -72.933780, 'green', '169.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Mon, 13 May 2024 16:47'], [45.364946, -72.934102, 'green', '169.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Wed, 15 May 2024 22:33']]; 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+");});"); } }