/**** * 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.329044, -72.817201); 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.210419, -72.768813, 'red', '174.9 ¢/Litre
de la Rivière / Hanson
Cowansville
Fri, 31 May 2024 12:52'], [45.212033, -72.715367, 'red', '174.9 ¢/Litre
763 Boul.J-A Déragon / Rte 241 / P-Laporte
Cowansville
Fri, 31 May 2024 12:53'], [45.213923, -72.530785, 'red', '174.9 ¢/Litre
476 ch Knowlton (104) / Elm
Lac-Brome
Fri, 31 May 2024 10:00'], [45.198690, -72.662206, 'red', '174.9 ¢/Litre
Ch Knowlton (104) / Ch West Brome (139)
West-Brome
Fri, 31 May 2024 10:00'], [45.190486, -72.755388, 'red', '174.9 ¢/Litre
104 / Rue du Sud
Cowansville
Fri, 31 May 2024 12:55'], [45.335737, -72.703528, 'red', '174.9 ¢/Litre
Pierre Laporte / Aut 10 (Sortie 74)
Bromont
Fri, 31 May 2024 10:00'], [45.191015, -72.755007, 'red', '174.9 ¢/Litre
Rue du Sud / Rte 202 / Jaques Bertrand
Cowansville
Fri, 31 May 2024 12:54'], [45.210608, -72.768878, 'red', '174.9 ¢/Litre
Rivere / Hanson
Cowansville
Fri, 31 May 2024 12:53'], [45.425325, -72.807918, 'red', '174.9 ¢/Litre
rue principale
Saint-Paul-d’Abbotsford
Fri, 31 May 2024 12:59'], [45.329043, -72.817201, 'blue', '172.9 ¢/Litre
Rte 139 / Aut 10 (Sortie 68)
Saint-Alphonse-de-Granby
Fri, 31 May 2024 10:00'], [45.342316, -72.783502, 'blue', '172.9 ¢/Litre
Rte 139 / Aut 10 (Sortie 68)
Saint-Alphonse-de-Granby
Fri, 31 May 2024 10:00'], [0.000000, 0.000000, 'blue', '169.9 ¢/Litre
Rte 235 - Sortie 55 Aut 10
L’Ange-Gardien (Montérégie)
Fri, 31 May 2024 12:58'], [45.375975, -73.029238, 'blue', '169.9 ¢/Litre
320 rang des ecossais
Sainte-Brigide-d’Iberville
Fri, 31 May 2024 12:57'], [45.365866, -72.933780, 'blue', '169.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Fri, 31 May 2024 12:57'], [45.362059, -72.934853, 'blue', '169.9 ¢/Litre
Rte 235 / Aut 10 (Sortie 55)
L’Ange-Gardien (Montérégie)
Fri, 31 May 2024 12:58'], [45.514231, -73.132863, 'blue', '169.9 ¢/Litre
Principale / Rouville
Saint-Jean-Baptiste
Fri, 31 May 2024 13:47'], [45.306225, -73.283867, 'green', '166.9 ¢/Litre
Industriel/St Jacques
Saint-Jean-sur-Richelieu
Fri, 31 May 2024 17:12'], [45.055505, -72.837324, 'green', '161.9 ¢/Litre
1 rue de l’église
Frelighsburg
Fri, 31 May 2024 12:54'], [45.351623, -73.292885, 'green', 'Pétrole Maurice - 159.9 ¢/Litre
St Luc / des Échevins / Bernier
Saint-Jean-sur-Richelieu
Fri, 31 May 2024 12:39']]; 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+");});"); } }