/**** * 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.834546, -73.420493); 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.528020, -73.478252, 'red', '176.9 ¢/Litre
Chambly / Benoît
Longueuil
Thu, 27 Jun 2024 13:00'], [45.576640, -73.446699, 'red', '175.9 ¢/Litre
Mortagne / Parfondeval
Boucherville
Thu, 27 Jun 2024 12:00'], [45.602682, -73.351633, 'red', '175.9 ¢/Litre
Mtée Ste-Julie/Boul. Lapierre
Sainte-Julie
Thu, 27 Jun 2024 13:58'], [45.568999, -73.443687, 'blue', '174.9 ¢/Litre
Nobel / Volta
Boucherville
Thu, 27 Jun 2024 13:58'], [45.579334, -73.447128, 'blue', '174.9 ¢/Litre
Mortagne / Industriel
Boucherville
Thu, 27 Jun 2024 13:58'], [45.575375, -73.446954, 'blue', '174.9 ¢/Litre
Mortagne / Ampére
Boucherville
Thu, 27 Jun 2024 13:54'], [45.582704, -73.426126, 'blue', '174.9 ¢/Litre
Montarville / Normandie
Boucherville
Thu, 27 Jun 2024 13:57'], [45.542687, -73.455710, 'blue', '172.9 ¢/Litre
Jacques-Cartier-E/ Du Tremblay
Longueuil
Thu, 27 Jun 2024 13:55'], [45.537753, -73.356759, 'blue', '170.9 ¢/Litre
Montarville / Lavérendrye
Saint-Bruno-de-Montarville
Thu, 27 Jun 2024 13:57'], [45.521868, -73.463538, 'blue', '170.9 ¢/Litre
Chambly / Jacques Cartier
Longueuil
Thu, 27 Jun 2024 13:55'], [45.577602, -73.405821, 'green', 'Costco - 160.8 ¢/Litre
635 ch de Touraine
Boucherville
Thu, 27 Jun 2024 10:56']]; 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+");});"); } }