(function($, OC) { $(function() { //Photos mapController.initMap(); photosController.appendToMap(mapController.map); $('#navigation-photos').click(function() { photosController.toggleLayer(); }); // Popup $(document).on('click', '#opening-hours-header', function() { $('#opening-hours-table').toggle(); $('#opening-hours-table-toggle-expand').toggle(); $('#opening-hours-table-toggle-collapse').toggle(); }); // Search $('#search-form').submit(function(e) { e.preventDefault(); submitSearchForm(); }); $('#search-submit').click(function() { submitSearchForm(); }); function submitSearchForm() { var str = $('#search-term').val(); if(str.length < 1) return; searchController.search(str).then(function(results) { if(results.length == 0) return; var result = results[0]; mapController.displaySearchResult(result); }); } }); var helpers = { beautifyUrl: function(url) { return url.replace(/^(?:\w+:|)\/\/(?:www\.|)(.*[^\/])\/*$/, '$1'); } }; var mapController = { searchMarker: {}, map: {}, locControl: undefined, displaySearchResult: function(result) { if(this.searchMarker) this.map.removeLayer(this.searchMarker); this.searchMarker = L.marker([result.lat, result.lon]); var name = result.display_name; var popupContent = searchController.parseOsmResult(result); this.searchMarker.bindPopup(popupContent); this.searchMarker.addTo(this.map); this.searchMarker.openPopup(); }, initMap: function() { var attribution = '© OpenStreetMap contributors, CC-BY-SA'; var osm = L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { attribution : attribution, noWrap: true, detectRetina: false, maxZoom: 19 }); var attributionESRI = 'Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community'; var ESRIAerial = L.tileLayer('https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}', { attribution : attributionESRI, noWrap: false, detectRetina: true, maxZoom: 19 }); var ESRITopo = L.tileLayer('https://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}', { attribution : attributionESRI, noWrap: false, detectRetina: false, maxZoom: 19 }); var attributionOpenTopo = 'Map data: © OpenStreetMap, SRTM | Map style: © OpenTopoMap (CC-BY-SA)'; var openTopo = L.tileLayer('https://{s}.tile.opentopomap.org/{z}/{x}/{y}.png', { attribution : attributionOpenTopo, noWrap: false, detectRetina: false, maxZoom: 17 }); var attributionDark = '© Map tiles by CartoDB, under CC BY 3.0. Data by OpenStreetMap, under ODbL.'; var dark = L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png', { attribution : attributionDark, noWrap: false, detectRetina: false, maxZoom: 18 }); var attributionWatercolor = 'Leaflet | © Map tiles by Stamen Design, under CC BY 3.0, Data by OpenStreetMap, under CC BY SA.'; var watercolor = L.tileLayer('http://{s}.tile.stamen.com/watercolor/{z}/{x}/{y}.jpg', { attribution : attributionWatercolor, noWrap: false, detectRetina: false, maxZoom: 18 }); this.map = L.map('map', { zoom: 8, zoomControl: true, center: new L.LatLng(40.745, 74.2), maxBounds: new L.LatLngBounds(new L.LatLng(-90, 180), new L.LatLng(90, -180)), layers: [] }); this.locControl = L.control.locate({ position: 'topright', // default = topleft drawCircle: false, drawMarker: false, showPopup: false, icon: 'fa fa-map-marker', iconLoading: 'fa fa-spinner fa-spin', strings: { title: "Get current location" } }).addTo(this.map); this.locControl.start(); // try to get the user's location L.control.scale({metric: true, imperial: true, position: 'topleft'}) .addTo(this.map); // tile layer selector this.map.addLayer(osm); var baseLayers = { 'OpenStreetMap': osm, 'ESRI Aerial': ESRIAerial, 'ESRI Topo': ESRITopo, 'OpenTopoMap': openTopo, 'Dark': dark, 'Watercolor': watercolor } L.control.layers(baseLayers, {}, {position: 'bottomright'}).addTo(this.map); // main layers buttons var esriButton = L.easyButton({ position: 'bottomright', states: [{ stateName: 'no-importa', icon: 'fa-image', title: t('maps', 'Aerial map'), onClick: function(btn, map) { for (var tl in baseLayers) { map.removeLayer(baseLayers[tl]); } map.addLayer(ESRIAerial); } }] }); esriButton.addTo(this.map); var osmButton = L.easyButton({ position: 'bottomright', states: [{ stateName: 'no-importa', icon: 'fa-map', title: t('maps', 'Classic map'), onClick: function(btn, map) { for (var tl in baseLayers) { map.removeLayer(baseLayers[tl]); } map.addLayer(osm); } }] }); osmButton.addTo(this.map); } }; var url = OC.generateUrl('/apps/maps/favorites'); var type = 'GET'; $.ajax({ type: type, url: url, data: {}, async: true, }).done(function (response) { console.log(response); }).always(function() { }).fail(function() { OC.Notification.showTemporary(t('maps', 'Failed to get favorites')); }); //url = OC.generateUrl('/apps/maps/api/1.0/favorites'); //type = 'GET'; //$.ajax({ // type: type, // url: url, // data: {}, // async: true, //}).done(function (response) { // console.log(response); //}).always(function() { //}).fail(function() { // OC.Notification.showTemporary(t('maps', 'Failed to get favorites with API')); //}); var photosController = new PhotosController(); var searchController = { isGeocodeabe: function(str) { var pattern = /^\s*\d+\.?\d*\,\s*\d+\.?\d*\s*$/; return pattern.test(str); }, search: function(str) { var searchTerm = str.replace(' ', '%20'); // encode spaces var apiUrl = 'https://nominatim.openstreetmap.org/search/'+searchTerm+'?format=json&addressdetails=1&extratags=1&namedetails=1&limit=1'; return $.getJSON(apiUrl, {}, function(response) { return response; }); }, geocode: function(latlng) { if(!this.isGeocodeabe(latlng)) return; var splits = latlng.split(','); var lat = splits[0].trim(); var lon = splits[1].trim(); var apiUrl = 'https://nominatim.openstreetmap.org/reverse?format=json&lat=' + lat + '&lon='+ lon + '&addressdetails=1'; return $.getJSON(apiUrl, {}, function(response) { return response; }); }, parseOsmResult: function(result) { var add = result.address; var road, postcode, city, state, name; if(add.road) { road = add.road; if(add.house_number) road += ' ' + add.house_number; } if(add.postcode) postcode = add.postcode; if(add.city || add.town || add.village) { if(add.city) city = add.city; else if(add.town) city = add.town; else if(add.village) city = add.village; if(add.state) { state = add.state; } } var details = result.namedetails; if(details.name) name = details.name; var unformattedHeader; if(name) unformattedHeader = name; else if(road) unformattedHeader = road; else if(city) unformattedHeader = city; var unformattedDesc = ''; var needSeparator = false; // add road to desc if it is not heading and exists (isn't heading, if 'name' is set) if(name && road) { unformattedDesc = road; needSeparator = true; } if(postcode) { if(needSeparator) { unformattedDesc += ', '; needSeparator = false; } unformattedDesc += postcode; } if(city) { if(needSeparator) { unformattedDesc += ', '; needSeparator = false; } else if(unformattedDesc.length > 0) { unformattedDesc += ' '; } unformattedDesc += city; } if(state && add && add.country_code == 'us') { // assume that state is only important for us addresses if(unformattedDesc.length > 0) { unformattedDesc += ' '; } unformattedDesc += '(' + state + ')'; } var header = '
' + day + ' | '; var startTime = from.toLocaleTimeString(); var endTime =to.toLocaleTimeString(); desc += '' + startTime + ' - ' + endTime + ' | '; desc += '