'use strict'; // Global leaflet /** * @namespace GIS */ const GIS = {}; GIS.CENTER_COORDS = [40.5492, 14.2317]; GIS.INIT_ZOOM = 15; const optionsVincoli = { color: '#222', opacity: 0.8, weight: 1, fillColor: '#987db7', fillOpacity: 0.8 }; const optionsSiti = { color: '#800040', opacity: 1, weight: 2.5, fillColor: '#800040', fillOpacity: 0.8 }; const optionsPaesistici = { color: '#222', opacity: 1, weight: 1.5, fillColor: '#ff8000', fillOpacity: 0.8 }; const BASE_URL = location.href; /** * Capitalize a text string * @todo Move to utils * @param {?string} text * @returns {?string} The capitalized string or null */ function capitalize(text) { let capital = text; if (text) { let words = text.split(' '); capital = ''; for (let w of words) { w = w[0].toUpperCase() + w.slice(1); capital += w + ' '; } capital.trimEnd(); } return capital; } /** * @param {string} mapId * @param {number} zoomLevel * @returns {{map: Map, sites: Layer}} */ GIS.initMap = async function (mapId, zoomLevel = this.INIT_ZOOM) { let layerVincoli = await this.loadLayer('vincoli.geojson', optionsVincoli); let layerSiti = await this.loadLayer('siti.geojson', optionsSiti, false); // TODO named parameters?? let layerPaesistici = await this.loadLayer('paesistici.geojson', optionsPaesistici); let osmap = new L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', { maxNativeZoom : 22, maxZoom: 22, attribution: '© OpenStreetMap contributors' }); let map = L.map(mapId, { attributionControl: false, minZoom: 11, layers: [osmap, layerVincoli, layerSiti, layerPaesistici] }).setView(this.CENTER_COORDS, zoomLevel); map.crs = L.CRS.EPSG4326; const baseMap = { "Mappa di base (OpenStreetMap)" : osmap }; const archeo = { "Siti indagati" : layerSiti, "Vincoli archeologici" : layerVincoli, "Vincoli paesistici" : layerPaesistici, }; let layerControl = L.control.layers(baseMap, archeo).addTo(map); // TODO Horrible? return {map: map, sites: layerSiti}; } /** * @todo Distinguere tipo di geojson per contenuto popup * @param {string} geoJSON * @param {{color, opacity, weight, fillColor, fillOpacity}} options Style options for features * @param {boolean} popup Should the features have a popup? */ GIS.loadLayer = async function (geoJSON, options, popup = true) { const data = await fetch(`${BASE_URL}/geojson/${geoJSON}`) .then(res => res.json()) .catch(error => console.error(`Can't load layer ${geoJSON}. Reason: ${error}`)); // Show data from feature in popUp? const layer = new L.geoJson(data, { style: function (feature) { let style = options; return style; }, onEachFeature: function (feature, layer) { if (popup) { layer.bindPopup(GIS.featurePopup(geoJSON, feature)); } } }); return layer; } /** * Generate proper content for features popup * @todo Hard-coded names!! * * @param {string} layerName * @param {object} feature * @returns {string} The popup's content */ GIS.featurePopup = function (layerName, feature) { const html = `
Oggetto${feature.properties.OGGETTO}
Anno${feature.properties.ANNO}
Comune${capitalize(feature.properties.COMUNE)}
Località${capitalize(feature.properties.LOCALITA)}
Proprietà${capitalize(feature.properties.PROPRIETA)}
`; const content = { 'vincoli.geojson' : html, 'paesistici.geojson' : html, }; return content[layerName]; } export default GIS;