/**** * 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.419669, -72.993132); 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.399578, -72.735208, 'red', 'Irving - 174.9 ¢/Litre
St-Charles / St-Jacques
Granby
Sun, 02 Jun 2024 13:27'], [45.421491, -72.716730, 'red', '174.9 ¢/Litre
David Bouchard/Dufferin
Granby
Sun, 02 Jun 2024 13:26'], [45.414653, -72.718391, 'red', '174.9 ¢/Litre
Dufferin (coin Bourget)
Granby
Sun, 02 Jun 2024 13:26'], [45.447845, -73.286863, 'red', '174.9 ¢/Litre
Bourgogne / Fréchette
Chambly
Sun, 02 Jun 2024 13:16'], [45.602901, -73.351848, 'red', '172.9 ¢/Litre
Mteé Ste-Julie / N-P Lapierre
Sainte-Julie
Sun, 02 Jun 2024 11:00'], [45.501483, -73.423506, 'red', '172.9 ¢/Litre
Cousineau / Montée St-Hubert
Saint-Hubert
Sun, 02 Jun 2024 13:25'], [45.375975, -73.029238, 'red', '172.9 ¢/Litre
320 rang des ecossais
Sainte-Brigide-d’Iberville
Sun, 02 Jun 2024 10:00'], [45.443962, -73.246705, 'blue', '171.9 ¢/Litre
510 Blvd Richelieu / Ch des Patriotes
Richelieu
Sun, 02 Jun 2024 13:15'], [45.520053, -73.318720, 'blue', '171.9 ¢/Litre
Sir Wilfrid Laurier / de Boucherville
Saint-Bruno-de-Montarville
Sun, 02 Jun 2024 11:30'], [45.562727, -73.206394, 'blue', '169.9 ¢/Litre
Sir Wilfrid Laurier / Duvernay
Beloeil
Sun, 02 Jun 2024 13:18'], [45.562421, -73.188442, 'blue', '169.9 ¢/Litre
324 sir-wilfrid-laurier
Mont-Saint-Hilaire
Sun, 02 Jun 2024 13:18'], [45.365866, -72.933780, 'blue', '169.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Sun, 02 Jun 2024 13:27'], [45.514231, -73.132863, 'blue', '169.9 ¢/Litre
Principale / Rouville
Saint-Jean-Baptiste
Fri, 31 May 2024 14:47'], [45.549520, -73.219972, 'blue', '169.9 ¢/Litre
Sir Wilfrid Laurier / Bernard Pilon
Beloeil
Sun, 02 Jun 2024 13:18'], [45.364946, -72.934102, 'blue', '169.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Sun, 02 Jun 2024 13:28'], [45.362059, -72.934853, 'blue', '169.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Sun, 02 Jun 2024 13:28'], [0.000000, 0.000000, 'blue', '169.9 ¢/Litre
Rte 235 - Sortie 55 Aut 10
L’Ange-Gardien (Montérégie)
Sun, 02 Jun 2024 13:29'], [45.502445, -73.426215, 'blue', '167.9 ¢/Litre
5175 Cousineau / Perras
Saint-Hubert
Sun, 02 Jun 2024 13:23'], [45.506039, -73.430198, 'blue', '167.9 ¢/Litre
Cousineau / Chambly
Saint-Hubert
Sun, 02 Jun 2024 13:23'], [45.458885, -73.419335, 'green', '166.9 ¢/Litre
Grande Allée / du Quartier / Moïse Vincent
Saint-Hubert
Sun, 02 Jun 2024 13:15'], [45.306225, -73.283867, 'green', '166.9 ¢/Litre
Industriel/St Jacques
Saint-Jean-sur-Richelieu
Fri, 31 May 2024 18:12'], [45.475037, -73.358947, 'green', 'Pétrole Maurice - 161.3 ¢/Litre
Chemin Chambly / Montée Daniel
Saint-Hubert
Sun, 02 Jun 2024 13:14'], [45.338756, -73.286105, 'green', '159.9 ¢/Litre
1315 rue Douglas
Saint-Jean-sur-Richelieu
Sun, 02 Jun 2024 13:13']]; 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+");});"); } }