2020-07-29 15:05:19 +02:00
|
|
|
import {FixedUiElement} from "./UI/Base/FixedUiElement";
|
2020-10-02 19:00:24 +02:00
|
|
|
import CheckBox from "./UI/Input/CheckBox";
|
2020-07-29 15:05:19 +02:00
|
|
|
import Combine from "./UI/Base/Combine";
|
2021-01-04 04:06:21 +01:00
|
|
|
import {Basemap} from "./UI/BigComponents/Basemap";
|
2020-10-02 19:00:24 +02:00
|
|
|
import State from "./State";
|
2021-01-03 03:09:52 +01:00
|
|
|
import LoadFromOverpass from "./Logic/Actors/UpdateFromOverpass";
|
2020-08-17 17:23:15 +02:00
|
|
|
import {UIEventSource} from "./Logic/UIEventSource";
|
|
|
|
import {QueryParameters} from "./Logic/Web/QueryParameters";
|
2021-01-04 04:06:21 +01:00
|
|
|
import StrayClickHandler from "./Logic/Actors/StrayClickHandler";
|
|
|
|
import SimpleAddUI from "./UI/BigComponents/SimpleAddUI";
|
|
|
|
import CenterMessageBox from "./UI/CenterMessageBox";
|
2020-09-07 02:25:45 +02:00
|
|
|
import {AllKnownLayouts} from "./Customizations/AllKnownLayouts";
|
|
|
|
import {TagUtils} from "./Logic/Tags";
|
2021-01-04 04:06:21 +01:00
|
|
|
import UserBadge from "./UI/BigComponents/UserBadge";
|
|
|
|
import SearchAndGo from "./UI/BigComponents/SearchAndGo";
|
|
|
|
import FullScreenMessageBox from "./UI/FullScreenMessageBoxHandler";
|
|
|
|
import GeoLocationHandler from "./Logic/Actors/GeoLocationHandler";
|
2020-09-07 02:25:45 +02:00
|
|
|
import {LocalStorageSource} from "./Logic/Web/LocalStorageSource";
|
2020-09-15 00:25:25 +02:00
|
|
|
import {Utils} from "./Utils";
|
2021-01-04 04:06:21 +01:00
|
|
|
import FeatureInfoBox from "./UI/Popup/FeatureInfoBox";
|
2020-11-06 01:58:26 +01:00
|
|
|
import Svg from "./Svg";
|
|
|
|
import Link from "./UI/Base/Link";
|
2020-11-11 16:23:49 +01:00
|
|
|
import * as personal from "./assets/themes/personalLayout/personalLayout.json"
|
|
|
|
import LayoutConfig from "./Customizations/JSON/LayoutConfig";
|
2020-11-17 02:22:48 +01:00
|
|
|
import * as L from "leaflet";
|
2021-01-03 00:19:42 +01:00
|
|
|
import Img from "./UI/Base/Img";
|
2021-01-04 04:06:21 +01:00
|
|
|
import UserDetails from "./Logic/Osm/OsmConnection";
|
|
|
|
import Attribution from "./UI/BigComponents/Attribution";
|
2021-01-03 00:19:42 +01:00
|
|
|
import MetaTagging from "./Logic/MetaTagging";
|
2021-01-03 03:09:52 +01:00
|
|
|
import FeatureSourceMerger from "./Logic/FeatureSource/FeatureSourceMerger";
|
|
|
|
import RememberingSource from "./Logic/FeatureSource/RememberingSource";
|
|
|
|
import FilteringFeatureSource from "./Logic/FeatureSource/FilteringFeatureSource";
|
|
|
|
import WayHandlingApplyingFeatureSource from "./Logic/FeatureSource/WayHandlingApplyingFeatureSource";
|
|
|
|
import NoOverlapSource from "./Logic/FeatureSource/NoOverlapSource";
|
2021-01-03 13:50:18 +01:00
|
|
|
import AvailableBaseLayers from "./Logic/Actors/AvailableBaseLayers";
|
|
|
|
import LayerResetter from "./Logic/Actors/LayerResetter";
|
2021-01-04 04:06:21 +01:00
|
|
|
import FullWelcomePaneWithTabs from "./UI/BigComponents/FullWelcomePaneWithTabs";
|
|
|
|
import LayerControlPanel from "./UI/BigComponents/LayerControlPanel";
|
|
|
|
import FeatureSwitched from "./UI/Base/FeatureSwitched";
|
|
|
|
import FeatureDuplicatorPerLayer from "./Logic/FeatureSource/FeatureDuplicatorPerLayer";
|
|
|
|
import LayerConfig from "./Customizations/JSON/LayerConfig";
|
|
|
|
import ShowDataLayer from "./UI/ShowDataLayer";
|
2020-07-29 15:05:19 +02:00
|
|
|
|
|
|
|
export class InitUiElements {
|
|
|
|
|
|
|
|
|
2020-11-11 16:23:49 +01:00
|
|
|
static InitAll(layoutToUse: LayoutConfig, layoutFromBase64: string, testing: UIEventSource<string>, layoutName: string,
|
2020-09-15 02:29:31 +02:00
|
|
|
layoutDefinition: string = "") {
|
2020-09-07 02:25:45 +02:00
|
|
|
if (layoutToUse === undefined) {
|
|
|
|
console.log("Incorrect layout")
|
2020-12-14 01:14:22 +01:00
|
|
|
new FixedUiElement(`Error: incorrect layout <i>${layoutName}</i><br/><a href='https://${window.location.host}/index.html'>Go back</a>`).AttachTo("centermessage").onClick(() => {
|
2020-09-07 02:25:45 +02:00
|
|
|
});
|
|
|
|
throw "Incorrect layout"
|
|
|
|
}
|
|
|
|
|
2020-09-15 00:25:25 +02:00
|
|
|
console.log("Using layout: ", layoutToUse.id, "LayoutFromBase64 is ", layoutFromBase64);
|
2021-01-02 21:03:40 +01:00
|
|
|
|
|
|
|
|
2020-09-07 02:25:45 +02:00
|
|
|
State.state = new State(layoutToUse);
|
2021-01-02 21:03:40 +01:00
|
|
|
|
2020-09-15 00:25:25 +02:00
|
|
|
// This 'leaks' the global state via the window object, useful for debugging
|
|
|
|
// @ts-ignore
|
|
|
|
window.mapcomplete_state = State.state;
|
2020-09-07 02:25:45 +02:00
|
|
|
|
|
|
|
if (layoutToUse.hideFromOverview) {
|
|
|
|
State.state.osmConnection.GetPreference("hidden-theme-" + layoutToUse.id + "-enabled").setData("true");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (layoutFromBase64 !== "false") {
|
2020-09-15 02:29:31 +02:00
|
|
|
State.state.layoutDefinition = layoutDefinition;
|
|
|
|
console.log("Layout definition:", Utils.EllipsesAfter(State.state.layoutDefinition, 100))
|
2020-09-07 02:25:45 +02:00
|
|
|
if (testing.data !== "true") {
|
|
|
|
State.state.osmConnection.OnLoggedIn(() => {
|
|
|
|
State.state.osmConnection.GetLongPreference("installed-theme-" + layoutToUse.id).setData(State.state.layoutDefinition);
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
console.warn("NOT saving custom layout to OSM as we are tesing -> probably in an iFrame")
|
|
|
|
}
|
|
|
|
}
|
2021-01-03 13:50:18 +01:00
|
|
|
|
|
|
|
|
2020-09-07 02:25:45 +02:00
|
|
|
InitUiElements.InitBaseMap();
|
|
|
|
|
|
|
|
new FixedUiElement("").AttachTo("decoration-desktop"); // Remove the decoration
|
|
|
|
|
2020-09-15 02:29:31 +02:00
|
|
|
InitUiElements.setupAllLayerElements();
|
2020-09-07 02:25:45 +02:00
|
|
|
|
2020-11-14 02:54:33 +01:00
|
|
|
if (layoutToUse.customCss !== undefined) {
|
2021-01-02 21:03:40 +01:00
|
|
|
Utils.LoadCustomCss(layoutToUse.customCss);
|
2020-11-14 02:54:33 +01:00
|
|
|
}
|
2020-09-07 02:25:45 +02:00
|
|
|
|
|
|
|
function updateFavs() {
|
|
|
|
const favs = State.state.favouriteLayers.data ?? [];
|
|
|
|
|
2020-11-11 16:23:49 +01:00
|
|
|
layoutToUse.layers.splice(0, layoutToUse.layers.length);
|
2020-09-07 02:25:45 +02:00
|
|
|
for (const fav of favs) {
|
|
|
|
const layer = AllKnownLayouts.allLayers[fav];
|
|
|
|
if (!!layer) {
|
|
|
|
layoutToUse.layers.push(layer);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const layouts of State.state.installedThemes.data) {
|
|
|
|
for (const layer of layouts.layout.layers) {
|
|
|
|
if (typeof layer === "string") {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (layer.id === fav) {
|
|
|
|
layoutToUse.layers.push(layer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-15 02:29:31 +02:00
|
|
|
InitUiElements.setupAllLayerElements();
|
2020-09-07 02:25:45 +02:00
|
|
|
State.state.layerUpdater.ForceRefresh();
|
2020-09-15 02:29:31 +02:00
|
|
|
State.state.layoutToUse.ping();
|
|
|
|
|
2020-09-07 02:25:45 +02:00
|
|
|
}
|
|
|
|
|
2020-11-17 02:22:48 +01:00
|
|
|
|
2020-11-11 16:23:49 +01:00
|
|
|
if (layoutToUse.id === personal.id) {
|
2020-09-07 02:25:45 +02:00
|
|
|
State.state.favouriteLayers.addCallback(updateFavs);
|
|
|
|
State.state.installedThemes.addCallback(updateFavs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the questions and information for the selected element
|
|
|
|
* This is given to the div which renders fullscreen on mobile devices
|
|
|
|
*/
|
|
|
|
State.state.selectedElement.addCallback((feature) => {
|
2020-11-17 02:22:48 +01:00
|
|
|
|
|
|
|
if (feature === undefined) {
|
|
|
|
State.state.fullScreenMessage.setData(undefined);
|
|
|
|
}
|
2021-01-02 21:03:40 +01:00
|
|
|
if (feature?.properties === undefined) {
|
2020-09-07 02:25:45 +02:00
|
|
|
return;
|
|
|
|
}
|
2020-11-15 01:16:35 +01:00
|
|
|
const data = feature.properties;
|
2020-09-07 02:25:45 +02:00
|
|
|
// Which is the applicable set?
|
|
|
|
for (const layer of layoutToUse.layers) {
|
|
|
|
if (typeof layer === "string") {
|
|
|
|
continue;
|
|
|
|
}
|
2020-10-27 01:01:34 +01:00
|
|
|
const applicable = layer.overpassTags.matches(TagUtils.proprtiesToKV(data));
|
2020-11-17 02:22:48 +01:00
|
|
|
if (!applicable) {
|
|
|
|
continue;
|
|
|
|
}
|
2021-01-02 21:03:40 +01:00
|
|
|
|
|
|
|
if ((layer.title ?? null) === null && layer.tagRenderings.length === 0) {
|
2020-11-17 02:22:48 +01:00
|
|
|
continue;
|
2020-09-07 02:25:45 +02:00
|
|
|
}
|
2021-01-02 21:03:40 +01:00
|
|
|
|
2020-11-17 02:22:48 +01:00
|
|
|
// This layer is the layer that gives the questions
|
|
|
|
const featureBox = new FeatureInfoBox(
|
2020-12-05 03:22:17 +01:00
|
|
|
State.state.allElements.getEventSourceById(data.id),
|
2020-11-17 02:22:48 +01:00
|
|
|
layer
|
|
|
|
);
|
|
|
|
|
|
|
|
State.state.fullScreenMessage.setData(featureBox);
|
|
|
|
break;
|
2020-09-07 02:25:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
InitUiElements.OnlyIf(State.state.featureSwitchUserbadge, () => {
|
|
|
|
new UserBadge().AttachTo('userbadge');
|
|
|
|
});
|
|
|
|
|
|
|
|
InitUiElements.OnlyIf((State.state.featureSwitchSearch), () => {
|
|
|
|
new SearchAndGo().AttachTo("searchbox");
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
new FullScreenMessageBox(() => {
|
|
|
|
State.state.selectedElement.setData(undefined)
|
|
|
|
}).AttachTo("messagesboxmobile");
|
|
|
|
|
|
|
|
|
|
|
|
InitUiElements.OnlyIf(State.state.featureSwitchWelcomeMessage, () => {
|
|
|
|
InitUiElements.InitWelcomeMessage()
|
|
|
|
});
|
|
|
|
|
|
|
|
if ((window != window.top && !State.state.featureSwitchWelcomeMessage.data) || State.state.featureSwitchIframe.data) {
|
|
|
|
const currentLocation = State.state.locationControl;
|
|
|
|
const url = `${window.location.origin}${window.location.pathname}?z=${currentLocation.data.zoom}&lat=${currentLocation.data.lat}&lon=${currentLocation.data.lon}`;
|
2020-11-06 01:58:26 +01:00
|
|
|
const content = new Link(Svg.pop_out_ui().SetClass("iframe-escape"), url, true);
|
|
|
|
new FixedUiElement(content.Render()).AttachTo("help-button-mobile")
|
|
|
|
content.AttachTo("messagesbox");
|
2020-09-07 02:25:45 +02:00
|
|
|
}
|
|
|
|
|
2020-11-17 02:22:48 +01:00
|
|
|
State.state.osmConnection.userDetails.map((userDetails: UserDetails) => userDetails?.home)
|
|
|
|
.addCallbackAndRun(home => {
|
|
|
|
if (home === undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const color = getComputedStyle(document.body).getPropertyValue("--subtle-detail-color")
|
|
|
|
const icon = L.icon({
|
|
|
|
iconUrl: Img.AsData(Svg.home_white_bg.replace(/#ffffff/g, color)),
|
|
|
|
iconSize: [30, 30],
|
|
|
|
iconAnchor: [15, 15]
|
|
|
|
});
|
|
|
|
const marker = L.marker([home.lat, home.lon], {icon: icon})
|
2021-01-02 21:03:40 +01:00
|
|
|
marker.addTo(State.state.leafletMap.data)
|
2020-11-17 02:22:48 +01:00
|
|
|
});
|
2020-09-07 02:25:45 +02:00
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
new FeatureSwitched(
|
|
|
|
new GeoLocationHandler(
|
|
|
|
State.state.currentGPSLocation,
|
|
|
|
State.state.leafletMap
|
|
|
|
)
|
|
|
|
.SetStyle(`position:relative;display:block;border: solid 2px #0005;cursor: pointer; z-index: 999; /*Just below leaflets zoom*/background-color: white;border-radius: 5px;width: 43px;height: 43px;`)
|
|
|
|
, State.state.featureSwitchGeolocation)
|
2020-10-06 01:37:02 +02:00
|
|
|
.AttachTo("geolocate-button");
|
2021-01-04 04:06:21 +01:00
|
|
|
|
2020-09-07 02:25:45 +02:00
|
|
|
State.state.locationControl.ping();
|
2020-10-27 01:01:34 +01:00
|
|
|
}
|
2021-01-02 21:03:40 +01:00
|
|
|
|
2020-09-07 02:25:45 +02:00
|
|
|
static LoadLayoutFromHash(userLayoutParam: UIEventSource<string>) {
|
|
|
|
try {
|
|
|
|
let hash = location.hash.substr(1);
|
|
|
|
const layoutFromBase64 = userLayoutParam.data;
|
|
|
|
// layoutFromBase64 contains the name of the theme. This is partly to do tracking with goat counter
|
|
|
|
|
|
|
|
const dedicatedHashFromLocalStorage = LocalStorageSource.Get("user-layout-" + layoutFromBase64.replace(" ", "_"));
|
|
|
|
if (dedicatedHashFromLocalStorage.data?.length < 10) {
|
|
|
|
dedicatedHashFromLocalStorage.setData(undefined);
|
|
|
|
}
|
|
|
|
|
|
|
|
const hashFromLocalStorage = LocalStorageSource.Get("last-loaded-user-layout");
|
|
|
|
if (hash.length < 10) {
|
|
|
|
hash = dedicatedHashFromLocalStorage.data ?? hashFromLocalStorage.data;
|
|
|
|
} else {
|
|
|
|
console.log("Saving hash to local storage")
|
|
|
|
hashFromLocalStorage.setData(hash);
|
|
|
|
dedicatedHashFromLocalStorage.setData(hash);
|
|
|
|
}
|
2020-11-11 16:23:49 +01:00
|
|
|
const layoutToUse = new LayoutConfig(JSON.parse(atob(hash)));
|
2020-09-07 02:25:45 +02:00
|
|
|
userLayoutParam.setData(layoutToUse.id);
|
|
|
|
return layoutToUse;
|
|
|
|
} catch (e) {
|
|
|
|
new FixedUiElement("Error: could not parse the custom layout:<br/> " + e).AttachTo("centermessage");
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
private static OnlyIf(featureSwitch: UIEventSource<boolean>, callback: () => void) {
|
|
|
|
featureSwitch.addCallbackAndRun(() => {
|
2020-07-29 15:05:19 +02:00
|
|
|
|
2020-07-30 00:59:08 +02:00
|
|
|
if (featureSwitch.data) {
|
|
|
|
callback();
|
2020-07-29 15:05:19 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
private static InitWelcomeMessage() {
|
2020-07-29 15:48:21 +02:00
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
const fullOptions = new FullWelcomePaneWithTabs();
|
2020-07-29 15:48:21 +02:00
|
|
|
|
2020-11-14 02:54:33 +01:00
|
|
|
const help = Svg.help_svg().SetClass("open-welcome-button");
|
|
|
|
const close = Svg.close_svg().SetClass("close-welcome-button");
|
2020-07-29 18:35:46 +02:00
|
|
|
const checkbox = new CheckBox(
|
2020-07-29 15:05:19 +02:00
|
|
|
new Combine([
|
2020-11-06 01:58:26 +01:00
|
|
|
close,
|
|
|
|
fullOptions
|
|
|
|
.SetClass("welcomeMessage")
|
|
|
|
.onClick(() => {/*Catch the click*/
|
|
|
|
})]),
|
|
|
|
help
|
2020-07-29 15:05:19 +02:00
|
|
|
, true
|
|
|
|
).AttachTo("messagesbox");
|
2020-07-31 01:45:54 +02:00
|
|
|
const openedTime = new Date().getTime();
|
|
|
|
State.state.locationControl.addCallback(() => {
|
|
|
|
if (new Date().getTime() - openedTime < 15 * 1000) {
|
2020-09-12 23:15:17 +02:00
|
|
|
// Don't autoclose the first 15 secs when the map is moving
|
2020-07-29 18:35:46 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
checkbox.isEnabled.setData(false);
|
|
|
|
})
|
2020-07-29 15:05:19 +02:00
|
|
|
|
2021-01-04 23:36:02 +01:00
|
|
|
State.state.selectedElement.addCallback(selected => {
|
|
|
|
if(selected !== undefined){
|
|
|
|
checkbox.isEnabled.setData(false);
|
|
|
|
}
|
2020-11-17 02:22:48 +01:00
|
|
|
})
|
|
|
|
|
2020-07-29 15:05:19 +02:00
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
const fullOptions2 = new FullWelcomePaneWithTabs();
|
2020-07-31 01:45:54 +02:00
|
|
|
State.state.fullScreenMessage.setData(fullOptions2)
|
2020-11-06 01:58:26 +01:00
|
|
|
|
2020-11-14 02:54:33 +01:00
|
|
|
Svg.help_svg()
|
2020-11-06 01:58:26 +01:00
|
|
|
.SetClass("open-welcome-button")
|
|
|
|
.SetClass("shadow")
|
|
|
|
.onClick(() => {
|
|
|
|
State.state.fullScreenMessage.setData(fullOptions2)
|
|
|
|
}).AttachTo("help-button-mobile");
|
2020-07-29 15:05:19 +02:00
|
|
|
|
2020-07-30 00:59:08 +02:00
|
|
|
|
|
|
|
}
|
2020-07-31 04:58:58 +02:00
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
private static InitLayerSelection() {
|
2020-07-31 04:58:58 +02:00
|
|
|
InitUiElements.OnlyIf(State.state.featureSwitchLayers, () => {
|
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
const layerControlPanel = new LayerControlPanel()
|
|
|
|
.SetStyle("display:block;padding:0.75em;border-radius:1em;");
|
2020-11-14 02:54:33 +01:00
|
|
|
const closeButton = Svg.close_svg().SetClass("layer-selection-toggle").SetStyle(" background: var(--subtle-detail-color);")
|
2020-09-13 03:29:44 +02:00
|
|
|
const checkbox = new CheckBox(
|
|
|
|
new Combine([
|
|
|
|
closeButton,
|
|
|
|
layerControlPanel]).SetStyle("display:flex;flex-direction:row;")
|
2020-09-17 20:59:05 +02:00
|
|
|
.SetClass("hidden-on-mobile")
|
2020-09-13 03:29:44 +02:00
|
|
|
,
|
2020-11-14 02:54:33 +01:00
|
|
|
Svg.layers_svg().SetClass("layer-selection-toggle"),
|
2020-09-17 23:53:57 +02:00
|
|
|
State.state.layerControlIsOpened
|
2020-08-22 13:02:31 +02:00
|
|
|
);
|
2020-11-06 01:58:26 +01:00
|
|
|
|
|
|
|
checkbox.AttachTo("layer-selection");
|
2020-09-13 03:29:44 +02:00
|
|
|
|
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
State.state.locationControl
|
|
|
|
.addCallback(() => {
|
2021-01-04 22:14:56 +01:00
|
|
|
// Close the layer selection when the map is moved
|
|
|
|
// checkbox.isEnabled.setData(false);
|
|
|
|
});
|
2020-07-31 04:58:58 +02:00
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
const fullScreen = new LayerControlPanel();
|
2020-09-13 03:29:44 +02:00
|
|
|
checkbox.isEnabled.addCallback(isEnabled => {
|
|
|
|
if (isEnabled) {
|
|
|
|
State.state.fullScreenMessage.setData(fullScreen);
|
|
|
|
}
|
|
|
|
})
|
2021-01-04 04:06:21 +01:00
|
|
|
State.state.fullScreenMessage.addCallback(latest => {
|
2020-09-13 03:29:44 +02:00
|
|
|
if (latest === undefined) {
|
|
|
|
checkbox.isEnabled.setData(false);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-07-31 04:58:58 +02:00
|
|
|
});
|
|
|
|
}
|
2021-01-02 21:03:40 +01:00
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
private static InitBaseMap() {
|
2021-01-03 00:19:42 +01:00
|
|
|
|
2021-01-03 13:50:18 +01:00
|
|
|
State.state.availableBackgroundLayers = new AvailableBaseLayers(State.state.locationControl).availableEditorLayers;
|
|
|
|
State.state.backgroundLayer = QueryParameters.GetQueryParameter("background",
|
|
|
|
State.state.layoutToUse.data.defaultBackgroundId ?? AvailableBaseLayers.osmCarto.id,
|
|
|
|
"The id of the background layer to start with")
|
|
|
|
.map((selectedId: string) => {
|
|
|
|
const available = State.state.availableBackgroundLayers.data;
|
|
|
|
for (const layer of available) {
|
|
|
|
if (layer.id === selectedId) {
|
|
|
|
return layer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return AvailableBaseLayers.osmCarto;
|
|
|
|
}, [], layer => layer.id);
|
|
|
|
|
|
|
|
|
|
|
|
new LayerResetter(
|
|
|
|
State.state.backgroundLayer, State.state.locationControl,
|
|
|
|
State.state.availableBackgroundLayers, State.state.layoutToUse.map((layout: LayoutConfig) => layout.defaultBackgroundId));
|
|
|
|
|
|
|
|
|
2021-01-04 22:14:56 +01:00
|
|
|
const attr = new Attribution(State.state.locationControl, State.state.osmConnection.userDetails, State.state.layoutToUse,
|
2021-01-04 18:55:10 +01:00
|
|
|
State.state.leafletMap);
|
2021-01-02 21:03:40 +01:00
|
|
|
const bm = new Basemap("leafletDiv",
|
|
|
|
State.state.locationControl,
|
2021-01-02 19:09:49 +01:00
|
|
|
State.state.backgroundLayer,
|
2021-01-02 21:03:40 +01:00
|
|
|
State.state.LastClickLocation,
|
|
|
|
attr
|
2021-01-02 19:09:49 +01:00
|
|
|
);
|
2021-01-02 21:03:40 +01:00
|
|
|
State.state.leafletMap.setData(bm.map);
|
2020-07-31 17:38:03 +02:00
|
|
|
}
|
2020-07-30 00:59:08 +02:00
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
private static InitLayers() {
|
2021-01-03 13:50:18 +01:00
|
|
|
|
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
const state = State.state;
|
2021-01-04 04:06:21 +01:00
|
|
|
const flayers: { layerDef: LayerConfig, isDisplayed: UIEventSource<boolean> }[] = []
|
2020-07-31 01:45:54 +02:00
|
|
|
for (const layer of state.layoutToUse.data.layers) {
|
2020-09-05 15:27:35 +02:00
|
|
|
|
|
|
|
if (typeof (layer) === "string") {
|
|
|
|
throw "Layer " + layer + " was not substituted";
|
2020-08-31 02:59:47 +02:00
|
|
|
}
|
2020-07-30 00:59:08 +02:00
|
|
|
|
2021-01-04 04:06:21 +01:00
|
|
|
const isDisplayed = QueryParameters.GetQueryParameter("layer-" + layer.id, "true", "Wether or not layer " + layer.id + " is shown")
|
|
|
|
.map<boolean>((str) => str !== "false", [], (b) => b.toString());
|
|
|
|
const flayer = {
|
|
|
|
isDisplayed: isDisplayed,
|
|
|
|
layerDef: layer
|
2020-11-17 02:22:48 +01:00
|
|
|
}
|
2020-07-30 00:59:08 +02:00
|
|
|
flayers.push(flayer);
|
|
|
|
}
|
|
|
|
|
2020-07-31 16:17:16 +02:00
|
|
|
State.state.filteredLayers.setData(flayers);
|
2021-01-03 00:19:42 +01:00
|
|
|
|
2021-01-03 03:09:52 +01:00
|
|
|
|
|
|
|
const updater = new LoadFromOverpass(state.locationControl, state.layoutToUse, state.leafletMap);
|
2021-01-03 00:19:42 +01:00
|
|
|
State.state.layerUpdater = updater;
|
2021-01-04 22:14:56 +01:00
|
|
|
|
2021-01-03 03:09:52 +01:00
|
|
|
|
|
|
|
const source =
|
|
|
|
new FilteringFeatureSource(
|
|
|
|
flayers,
|
|
|
|
State.state.locationControl,
|
|
|
|
new FeatureSourceMerger([
|
|
|
|
new RememberingSource(new WayHandlingApplyingFeatureSource(flayers,
|
2021-01-04 22:14:56 +01:00
|
|
|
new NoOverlapSource(flayers, new FeatureDuplicatorPerLayer(flayers, updater))
|
2021-01-03 03:09:52 +01:00
|
|
|
)),
|
2021-01-04 22:14:56 +01:00
|
|
|
new FeatureDuplicatorPerLayer(flayers, State.state.changes)
|
|
|
|
])
|
|
|
|
);
|
2021-01-03 00:19:42 +01:00
|
|
|
|
2021-01-03 03:09:52 +01:00
|
|
|
source.features.addCallback((featuresFreshness: { feature: any, freshness: Date }[]) => {
|
|
|
|
let features = featuresFreshness.map(ff => ff.feature);
|
2021-01-03 00:19:42 +01:00
|
|
|
features.forEach(feature => {
|
|
|
|
State.state.allElements.addElement(feature);
|
|
|
|
})
|
|
|
|
MetaTagging.addMetatags(features);
|
|
|
|
})
|
2021-01-04 22:14:56 +01:00
|
|
|
|
|
|
|
new ShowDataLayer(source.features, State.state.leafletMap,
|
2021-01-04 20:09:07 +01:00
|
|
|
State.state.layoutToUse.data);
|
2021-01-03 00:19:42 +01:00
|
|
|
|
|
|
|
|
2020-07-29 15:05:19 +02:00
|
|
|
}
|
|
|
|
|
2021-01-02 21:03:40 +01:00
|
|
|
private static setupAllLayerElements() {
|
|
|
|
|
|
|
|
// ------------- Setup the layers -------------------------------
|
|
|
|
|
|
|
|
InitUiElements.InitLayers();
|
|
|
|
InitUiElements.InitLayerSelection();
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------ Setup various other UI elements ------------
|
|
|
|
|
|
|
|
|
|
|
|
InitUiElements.OnlyIf(State.state.featureSwitchAddNew, () => {
|
|
|
|
|
|
|
|
let presetCount = 0;
|
|
|
|
for (const layer of State.state.filteredLayers.data) {
|
|
|
|
for (const preset of layer.layerDef.presets) {
|
|
|
|
presetCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (presetCount == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
new StrayClickHandler(
|
|
|
|
State.state.LastClickLocation,
|
|
|
|
State.state.selectedElement,
|
|
|
|
State.state.filteredLayers,
|
|
|
|
State.state.leafletMap,
|
|
|
|
State.state.fullScreenMessage,
|
|
|
|
() => {
|
|
|
|
return new SimpleAddUI();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
new CenterMessageBox().AttachTo("centermessage");
|
|
|
|
|
|
|
|
}
|
2020-07-29 15:05:19 +02:00
|
|
|
}
|