forked from MapComplete/MapComplete
UX: place 'add new button' in bottom-left instead of having a dynamic pin
This commit is contained in:
parent
dab8d6cd5d
commit
285fe9ab83
7 changed files with 730 additions and 703 deletions
|
@ -124,7 +124,7 @@
|
||||||
"pleaseLogin": "Please log in to add a new feature",
|
"pleaseLogin": "Please log in to add a new feature",
|
||||||
"presetInfo": "The new POI will have {tags}",
|
"presetInfo": "The new POI will have {tags}",
|
||||||
"stillLoading": "The data is still loading. Please wait a bit before you add a new feature.",
|
"stillLoading": "The data is still loading. Please wait a bit before you add a new feature.",
|
||||||
"title": "Add a new feature?",
|
"title": "Add a new feature",
|
||||||
"warnVisibleForEveryone": "Your addition will be visible for everyone",
|
"warnVisibleForEveryone": "Your addition will be visible for everyone",
|
||||||
"wrongType": "This feature is not a node or a way and can not be imported",
|
"wrongType": "This feature is not a node or a way and can not be imported",
|
||||||
"zoomInFurther": "Zoom in further to add a feature.",
|
"zoomInFurther": "Zoom in further to add a feature.",
|
||||||
|
|
|
@ -124,7 +124,7 @@
|
||||||
"pleaseLogin": "Gelieve je aan te melden om een object toe te voegen",
|
"pleaseLogin": "Gelieve je aan te melden om een object toe te voegen",
|
||||||
"presetInfo": "Het nieuwe object krijgt de attributen {tags}",
|
"presetInfo": "Het nieuwe object krijgt de attributen {tags}",
|
||||||
"stillLoading": "De data worden nog geladen. Nog even geduld en dan kan je een object toevoegen.",
|
"stillLoading": "De data worden nog geladen. Nog even geduld en dan kan je een object toevoegen.",
|
||||||
"title": "Nieuw object toevoegen?",
|
"title": "Nieuw object toevoegen",
|
||||||
"warnVisibleForEveryone": "Je toevoeging is voor iedereen zichtbaar",
|
"warnVisibleForEveryone": "Je toevoeging is voor iedereen zichtbaar",
|
||||||
"wrongType": "Dit object is geen punt of lijn en kan daarom niet geïmporteerd worden",
|
"wrongType": "Dit object is geen punt of lijn en kan daarom niet geïmporteerd worden",
|
||||||
"zoomInFurther": "Gelieve verder in te zoomen om een object toe te voegen.",
|
"zoomInFurther": "Gelieve verder in te zoomen om een object toe te voegen.",
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
import LayoutConfig from "../../../Models/ThemeConfig/LayoutConfig"
|
import LayoutConfig from "../../../Models/ThemeConfig/LayoutConfig";
|
||||||
import { WritableFeatureSource } from "../FeatureSource"
|
import { WritableFeatureSource } from "../FeatureSource";
|
||||||
import { ImmutableStore, Store, UIEventSource } from "../../UIEventSource"
|
import { ImmutableStore, Store, UIEventSource } from "../../UIEventSource";
|
||||||
import { Feature, Point } from "geojson"
|
import { Feature, Point } from "geojson";
|
||||||
import { TagUtils } from "../../Tags/TagUtils"
|
import { TagUtils } from "../../Tags/TagUtils";
|
||||||
import BaseUIElement from "../../../UI/BaseUIElement"
|
import BaseUIElement from "../../../UI/BaseUIElement";
|
||||||
import { Utils } from "../../../Utils"
|
import { Utils } from "../../../Utils";
|
||||||
|
import { OsmTags } from "../../../Models/OsmFeature";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Highly specialized feature source.
|
* Highly specialized feature source.
|
||||||
|
@ -12,8 +13,14 @@ import { Utils } from "../../../Utils"
|
||||||
*/
|
*/
|
||||||
export class LastClickFeatureSource implements WritableFeatureSource {
|
export class LastClickFeatureSource implements WritableFeatureSource {
|
||||||
public readonly features: UIEventSource<Feature[]> = new UIEventSource<Feature[]>([])
|
public readonly features: UIEventSource<Feature[]> = new UIEventSource<Feature[]>([])
|
||||||
|
private i: number = 0
|
||||||
|
private readonly hasNoteLayer: string
|
||||||
|
private readonly renderings: string[];
|
||||||
|
private readonly hasPresets: string;
|
||||||
|
|
||||||
constructor(location: Store<{ lon: number; lat: number }>, layout: LayoutConfig) {
|
constructor(location: Store<{ lon: number; lat: number }>, layout: LayoutConfig) {
|
||||||
|
this.hasNoteLayer = layout.layers.some((l) => l.id === "note") ? "yes" : "no"
|
||||||
|
this.hasPresets= layout.layers.some((l) => l.presets?.length > 0) ? "yes" : "no"
|
||||||
const allPresets: BaseUIElement[] = []
|
const allPresets: BaseUIElement[] = []
|
||||||
for (const layer of layout.layers)
|
for (const layer of layout.layers)
|
||||||
for (let i = 0; i < (layer.presets ?? []).length; i++) {
|
for (let i = 0; i < (layer.presets ?? []).length; i++) {
|
||||||
|
@ -26,27 +33,30 @@ export class LastClickFeatureSource implements WritableFeatureSource {
|
||||||
allPresets.push(html)
|
allPresets.push(html)
|
||||||
}
|
}
|
||||||
|
|
||||||
const renderings = Utils.Dedup(
|
this.renderings = Utils.Dedup(
|
||||||
allPresets.map((uiElem) =>
|
allPresets.map((uiElem) =>
|
||||||
Utils.runningFromConsole ? "" : uiElem.ConstructElement().innerHTML
|
Utils.runningFromConsole ? "" : uiElem.ConstructElement().innerHTML
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
let i = 0
|
|
||||||
|
|
||||||
location.addCallbackAndRunD(({ lon, lat }) => {
|
location.addCallbackAndRunD(({ lon, lat }) => {
|
||||||
const properties = {
|
this.features.setData([this.createFeature(lon, lat)])
|
||||||
lastclick: "yes",
|
})
|
||||||
id: "last_click_" + i,
|
|
||||||
has_note_layer: layout.layers.some((l) => l.id === "note") ? "yes" : "no",
|
|
||||||
has_presets: layout.layers.some((l) => l.presets?.length > 0) ? "yes" : "no",
|
|
||||||
renderings: renderings.join(""),
|
|
||||||
number_of_presets: "" + renderings.length,
|
|
||||||
first_preset: renderings[0],
|
|
||||||
}
|
}
|
||||||
i++
|
|
||||||
|
|
||||||
const point = <Feature<Point>>{
|
public createFeature(lon: number, lat: number): Feature<Point, OsmTags> {
|
||||||
|
const properties: OsmTags = {
|
||||||
|
lastclick: "yes",
|
||||||
|
id: "last_click_" + this.i,
|
||||||
|
has_note_layer: this.hasNoteLayer ,
|
||||||
|
has_presets:this.hasPresets ,
|
||||||
|
renderings: this.renderings.join(""),
|
||||||
|
number_of_presets: "" +this. renderings.length,
|
||||||
|
first_preset: this.renderings[0],
|
||||||
|
}
|
||||||
|
this. i++
|
||||||
|
|
||||||
|
return <Feature<Point, OsmTags>>{
|
||||||
type: "Feature",
|
type: "Feature",
|
||||||
properties,
|
properties,
|
||||||
geometry: {
|
geometry: {
|
||||||
|
@ -54,7 +64,5 @@ export class LastClickFeatureSource implements WritableFeatureSource {
|
||||||
coordinates: [lon, lat],
|
coordinates: [lon, lat],
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
this.features.setData([point])
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -175,7 +175,7 @@ export default class ThemeViewStateHashActor {
|
||||||
}
|
}
|
||||||
|
|
||||||
private back() {
|
private back() {
|
||||||
console.log("Got a back event")
|
console.trace("Got a back event")
|
||||||
const state = this._state
|
const state = this._state
|
||||||
// history.pushState(null, null, window.location.pathname);
|
// history.pushState(null, null, window.location.pathname);
|
||||||
if (state.selectedElement.data) {
|
if (state.selectedElement.data) {
|
||||||
|
|
|
@ -58,7 +58,7 @@ export default class Constants {
|
||||||
|
|
||||||
importHelperUnlock: 5000,
|
importHelperUnlock: 5000,
|
||||||
}
|
}
|
||||||
static readonly minZoomLevelToAddNewPoint = Constants.isRetina() ? 18 : 19
|
static readonly minZoomLevelToAddNewPoint = Constants.isRetina() ? 17 : 18
|
||||||
/**
|
/**
|
||||||
* Used by 'PendingChangesUploader', which waits this amount of seconds to upload changes.
|
* Used by 'PendingChangesUploader', which waits this amount of seconds to upload changes.
|
||||||
* (Note that pendingChanges might upload sooner if the popup is closed or similar)
|
* (Note that pendingChanges might upload sooner if the popup is closed or similar)
|
||||||
|
|
|
@ -1,62 +1,58 @@
|
||||||
import LayoutConfig from "./ThemeConfig/LayoutConfig"
|
import LayoutConfig from "./ThemeConfig/LayoutConfig";
|
||||||
import { SpecialVisualizationState } from "../UI/SpecialVisualization"
|
import { SpecialVisualizationState } from "../UI/SpecialVisualization";
|
||||||
import { Changes } from "../Logic/Osm/Changes"
|
import { Changes } from "../Logic/Osm/Changes";
|
||||||
import { Store, UIEventSource } from "../Logic/UIEventSource"
|
import { Store, UIEventSource } from "../Logic/UIEventSource";
|
||||||
|
import { FeatureSource, IndexedFeatureSource, WritableFeatureSource } from "../Logic/FeatureSource/FeatureSource";
|
||||||
|
import { OsmConnection } from "../Logic/Osm/OsmConnection";
|
||||||
|
import { ExportableMap, MapProperties } from "./MapProperties";
|
||||||
|
import LayerState from "../Logic/State/LayerState";
|
||||||
|
import { Feature, Point, Polygon } from "geojson";
|
||||||
|
import FullNodeDatabaseSource from "../Logic/FeatureSource/TiledFeatureSource/FullNodeDatabaseSource";
|
||||||
|
import { Map as MlMap } from "maplibre-gl";
|
||||||
|
import InitialMapPositioning from "../Logic/Actors/InitialMapPositioning";
|
||||||
|
import { MapLibreAdaptor } from "../UI/Map/MapLibreAdaptor";
|
||||||
|
import { GeoLocationState } from "../Logic/State/GeoLocationState";
|
||||||
|
import FeatureSwitchState from "../Logic/State/FeatureSwitchState";
|
||||||
|
import { QueryParameters } from "../Logic/Web/QueryParameters";
|
||||||
|
import UserRelatedState from "../Logic/State/UserRelatedState";
|
||||||
|
import LayerConfig from "./ThemeConfig/LayerConfig";
|
||||||
|
import GeoLocationHandler from "../Logic/Actors/GeoLocationHandler";
|
||||||
|
import { AvailableRasterLayers, RasterLayerPolygon, RasterLayerUtils } from "./RasterLayers";
|
||||||
|
import LayoutSource from "../Logic/FeatureSource/Sources/LayoutSource";
|
||||||
|
import StaticFeatureSource from "../Logic/FeatureSource/Sources/StaticFeatureSource";
|
||||||
|
import FeaturePropertiesStore from "../Logic/FeatureSource/Actors/FeaturePropertiesStore";
|
||||||
|
import PerLayerFeatureSourceSplitter from "../Logic/FeatureSource/PerLayerFeatureSourceSplitter";
|
||||||
|
import FilteringFeatureSource from "../Logic/FeatureSource/Sources/FilteringFeatureSource";
|
||||||
|
import ShowDataLayer from "../UI/Map/ShowDataLayer";
|
||||||
|
import TitleHandler from "../Logic/Actors/TitleHandler";
|
||||||
|
import ChangeToElementsActor from "../Logic/Actors/ChangeToElementsActor";
|
||||||
|
import PendingChangesUploader from "../Logic/Actors/PendingChangesUploader";
|
||||||
|
import SelectedElementTagsUpdater from "../Logic/Actors/SelectedElementTagsUpdater";
|
||||||
|
import { BBox } from "../Logic/BBox";
|
||||||
|
import Constants from "./Constants";
|
||||||
|
import Hotkeys from "../UI/Base/Hotkeys";
|
||||||
|
import Translations from "../UI/i18n/Translations";
|
||||||
|
import { GeoIndexedStoreForLayer } from "../Logic/FeatureSource/Actors/GeoIndexedStore";
|
||||||
|
import { LastClickFeatureSource } from "../Logic/FeatureSource/Sources/LastClickFeatureSource";
|
||||||
|
import { MenuState } from "./MenuState";
|
||||||
|
import MetaTagging from "../Logic/MetaTagging";
|
||||||
|
import ChangeGeometryApplicator from "../Logic/FeatureSource/Sources/ChangeGeometryApplicator";
|
||||||
import {
|
import {
|
||||||
FeatureSource,
|
NewGeometryFromChangesFeatureSource
|
||||||
IndexedFeatureSource,
|
} from "../Logic/FeatureSource/Sources/NewGeometryFromChangesFeatureSource";
|
||||||
WritableFeatureSource,
|
import OsmObjectDownloader from "../Logic/Osm/OsmObjectDownloader";
|
||||||
} from "../Logic/FeatureSource/FeatureSource"
|
import ShowOverlayRasterLayer from "../UI/Map/ShowOverlayRasterLayer";
|
||||||
import { OsmConnection } from "../Logic/Osm/OsmConnection"
|
import { Utils } from "../Utils";
|
||||||
import { ExportableMap, MapProperties } from "./MapProperties"
|
import { EliCategory } from "./RasterLayerProperties";
|
||||||
import LayerState from "../Logic/State/LayerState"
|
import BackgroundLayerResetter from "../Logic/Actors/BackgroundLayerResetter";
|
||||||
import { Feature, Point, Polygon } from "geojson"
|
import SaveFeatureSourceToLocalStorage from "../Logic/FeatureSource/Actors/SaveFeatureSourceToLocalStorage";
|
||||||
import FullNodeDatabaseSource from "../Logic/FeatureSource/TiledFeatureSource/FullNodeDatabaseSource"
|
import BBoxFeatureSource from "../Logic/FeatureSource/Sources/TouchesBboxFeatureSource";
|
||||||
import { Map as MlMap } from "maplibre-gl"
|
import ThemeViewStateHashActor from "../Logic/Web/ThemeViewStateHashActor";
|
||||||
import InitialMapPositioning from "../Logic/Actors/InitialMapPositioning"
|
import NoElementsInViewDetector, { FeatureViewState } from "../Logic/Actors/NoElementsInViewDetector";
|
||||||
import { MapLibreAdaptor } from "../UI/Map/MapLibreAdaptor"
|
import FilteredLayer from "./FilteredLayer";
|
||||||
import { GeoLocationState } from "../Logic/State/GeoLocationState"
|
import { PreferredRasterLayerSelector } from "../Logic/Actors/PreferredRasterLayerSelector";
|
||||||
import FeatureSwitchState from "../Logic/State/FeatureSwitchState"
|
import { ImageUploadManager } from "../Logic/ImageProviders/ImageUploadManager";
|
||||||
import { QueryParameters } from "../Logic/Web/QueryParameters"
|
import { Imgur } from "../Logic/ImageProviders/Imgur";
|
||||||
import UserRelatedState from "../Logic/State/UserRelatedState"
|
|
||||||
import LayerConfig from "./ThemeConfig/LayerConfig"
|
|
||||||
import GeoLocationHandler from "../Logic/Actors/GeoLocationHandler"
|
|
||||||
import { AvailableRasterLayers, RasterLayerPolygon, RasterLayerUtils } from "./RasterLayers"
|
|
||||||
import LayoutSource from "../Logic/FeatureSource/Sources/LayoutSource"
|
|
||||||
import StaticFeatureSource from "../Logic/FeatureSource/Sources/StaticFeatureSource"
|
|
||||||
import FeaturePropertiesStore from "../Logic/FeatureSource/Actors/FeaturePropertiesStore"
|
|
||||||
import PerLayerFeatureSourceSplitter from "../Logic/FeatureSource/PerLayerFeatureSourceSplitter"
|
|
||||||
import FilteringFeatureSource from "../Logic/FeatureSource/Sources/FilteringFeatureSource"
|
|
||||||
import ShowDataLayer from "../UI/Map/ShowDataLayer"
|
|
||||||
import TitleHandler from "../Logic/Actors/TitleHandler"
|
|
||||||
import ChangeToElementsActor from "../Logic/Actors/ChangeToElementsActor"
|
|
||||||
import PendingChangesUploader from "../Logic/Actors/PendingChangesUploader"
|
|
||||||
import SelectedElementTagsUpdater from "../Logic/Actors/SelectedElementTagsUpdater"
|
|
||||||
import { BBox } from "../Logic/BBox"
|
|
||||||
import Constants from "./Constants"
|
|
||||||
import Hotkeys from "../UI/Base/Hotkeys"
|
|
||||||
import Translations from "../UI/i18n/Translations"
|
|
||||||
import { GeoIndexedStoreForLayer } from "../Logic/FeatureSource/Actors/GeoIndexedStore"
|
|
||||||
import { LastClickFeatureSource } from "../Logic/FeatureSource/Sources/LastClickFeatureSource"
|
|
||||||
import { MenuState } from "./MenuState"
|
|
||||||
import MetaTagging from "../Logic/MetaTagging"
|
|
||||||
import ChangeGeometryApplicator from "../Logic/FeatureSource/Sources/ChangeGeometryApplicator"
|
|
||||||
import { NewGeometryFromChangesFeatureSource } from "../Logic/FeatureSource/Sources/NewGeometryFromChangesFeatureSource"
|
|
||||||
import OsmObjectDownloader from "../Logic/Osm/OsmObjectDownloader"
|
|
||||||
import ShowOverlayRasterLayer from "../UI/Map/ShowOverlayRasterLayer"
|
|
||||||
import { Utils } from "../Utils"
|
|
||||||
import { EliCategory } from "./RasterLayerProperties"
|
|
||||||
import BackgroundLayerResetter from "../Logic/Actors/BackgroundLayerResetter"
|
|
||||||
import SaveFeatureSourceToLocalStorage from "../Logic/FeatureSource/Actors/SaveFeatureSourceToLocalStorage"
|
|
||||||
import BBoxFeatureSource from "../Logic/FeatureSource/Sources/TouchesBboxFeatureSource"
|
|
||||||
import ThemeViewStateHashActor from "../Logic/Web/ThemeViewStateHashActor"
|
|
||||||
import NoElementsInViewDetector, {
|
|
||||||
FeatureViewState,
|
|
||||||
} from "../Logic/Actors/NoElementsInViewDetector"
|
|
||||||
import FilteredLayer from "./FilteredLayer"
|
|
||||||
import { PreferredRasterLayerSelector } from "../Logic/Actors/PreferredRasterLayerSelector"
|
|
||||||
import { ImageUploadManager } from "../Logic/ImageProviders/ImageUploadManager"
|
|
||||||
import { Imgur } from "../Logic/ImageProviders/Imgur"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -67,71 +63,74 @@ import { Imgur } from "../Logic/ImageProviders/Imgur"
|
||||||
* It ties up all the needed elements and starts some actors.
|
* It ties up all the needed elements and starts some actors.
|
||||||
*/
|
*/
|
||||||
export default class ThemeViewState implements SpecialVisualizationState {
|
export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
readonly layout: LayoutConfig
|
readonly layout: LayoutConfig;
|
||||||
readonly map: UIEventSource<MlMap>
|
readonly map: UIEventSource<MlMap>;
|
||||||
readonly changes: Changes
|
readonly changes: Changes;
|
||||||
readonly featureSwitches: FeatureSwitchState
|
readonly featureSwitches: FeatureSwitchState;
|
||||||
readonly featureSwitchIsTesting: Store<boolean>
|
readonly featureSwitchIsTesting: Store<boolean>;
|
||||||
readonly featureSwitchUserbadge: Store<boolean>
|
readonly featureSwitchUserbadge: Store<boolean>;
|
||||||
|
|
||||||
readonly featureProperties: FeaturePropertiesStore
|
readonly featureProperties: FeaturePropertiesStore;
|
||||||
|
|
||||||
readonly osmConnection: OsmConnection
|
readonly osmConnection: OsmConnection;
|
||||||
readonly selectedElement: UIEventSource<Feature>
|
readonly selectedElement: UIEventSource<Feature>;
|
||||||
readonly selectedElementAndLayer: Store<{ feature: Feature; layer: LayerConfig }>
|
readonly selectedElementAndLayer: Store<{ feature: Feature; layer: LayerConfig }>;
|
||||||
readonly mapProperties: MapProperties & ExportableMap
|
readonly mapProperties: MapProperties & ExportableMap;
|
||||||
readonly osmObjectDownloader: OsmObjectDownloader
|
readonly osmObjectDownloader: OsmObjectDownloader;
|
||||||
|
|
||||||
readonly dataIsLoading: Store<boolean>
|
readonly dataIsLoading: Store<boolean>;
|
||||||
/**
|
/**
|
||||||
* Indicates if there is _some_ data in view, even if it is not shown due to the filters
|
* Indicates if there is _some_ data in view, even if it is not shown due to the filters
|
||||||
*/
|
*/
|
||||||
readonly hasDataInView: Store<FeatureViewState>
|
readonly hasDataInView: Store<FeatureViewState>;
|
||||||
|
|
||||||
readonly guistate: MenuState
|
readonly guistate: MenuState;
|
||||||
readonly fullNodeDatabase?: FullNodeDatabaseSource
|
readonly fullNodeDatabase?: FullNodeDatabaseSource;
|
||||||
|
|
||||||
readonly historicalUserLocations: WritableFeatureSource<Feature<Point>>
|
readonly historicalUserLocations: WritableFeatureSource<Feature<Point>>;
|
||||||
readonly indexedFeatures: IndexedFeatureSource & LayoutSource
|
readonly indexedFeatures: IndexedFeatureSource & LayoutSource;
|
||||||
readonly currentView: FeatureSource<Feature<Polygon>>
|
readonly currentView: FeatureSource<Feature<Polygon>>;
|
||||||
readonly featuresInView: FeatureSource
|
readonly featuresInView: FeatureSource;
|
||||||
readonly newFeatures: WritableFeatureSource
|
readonly newFeatures: WritableFeatureSource;
|
||||||
readonly layerState: LayerState
|
readonly layerState: LayerState;
|
||||||
readonly perLayer: ReadonlyMap<string, GeoIndexedStoreForLayer>
|
readonly perLayer: ReadonlyMap<string, GeoIndexedStoreForLayer>;
|
||||||
readonly perLayerFiltered: ReadonlyMap<string, FilteringFeatureSource>
|
readonly perLayerFiltered: ReadonlyMap<string, FilteringFeatureSource>;
|
||||||
|
|
||||||
readonly availableLayers: Store<RasterLayerPolygon[]>
|
readonly availableLayers: Store<RasterLayerPolygon[]>;
|
||||||
readonly selectedLayer: UIEventSource<LayerConfig>
|
readonly selectedLayer: UIEventSource<LayerConfig>;
|
||||||
readonly userRelatedState: UserRelatedState
|
readonly userRelatedState: UserRelatedState;
|
||||||
readonly geolocation: GeoLocationHandler
|
readonly geolocation: GeoLocationHandler;
|
||||||
|
|
||||||
readonly imageUploadManager: ImageUploadManager
|
readonly imageUploadManager: ImageUploadManager;
|
||||||
|
|
||||||
readonly lastClickObject: WritableFeatureSource
|
readonly addNewPoint: UIEventSource<boolean> = new UIEventSource<boolean>(false);
|
||||||
|
|
||||||
|
readonly lastClickObject: LastClickFeatureSource;
|
||||||
readonly overlayLayerStates: ReadonlyMap<
|
readonly overlayLayerStates: ReadonlyMap<
|
||||||
string,
|
string,
|
||||||
{ readonly isDisplayed: UIEventSource<boolean> }
|
{ readonly isDisplayed: UIEventSource<boolean> }
|
||||||
>
|
>;
|
||||||
/**
|
/**
|
||||||
* All 'level'-tags that are available with the current features
|
* All 'level'-tags that are available with the current features
|
||||||
*/
|
*/
|
||||||
readonly floors: Store<string[]>
|
readonly floors: Store<string[]>;
|
||||||
|
private readonly newPointDialog: FilteredLayer;
|
||||||
|
|
||||||
constructor(layout: LayoutConfig) {
|
constructor(layout: LayoutConfig) {
|
||||||
Utils.initDomPurify()
|
Utils.initDomPurify();
|
||||||
this.layout = layout
|
this.layout = layout;
|
||||||
this.featureSwitches = new FeatureSwitchState(layout)
|
this.featureSwitches = new FeatureSwitchState(layout);
|
||||||
this.guistate = new MenuState(
|
this.guistate = new MenuState(
|
||||||
this.featureSwitches.featureSwitchWelcomeMessage.data,
|
this.featureSwitches.featureSwitchWelcomeMessage.data,
|
||||||
layout.id
|
layout.id
|
||||||
)
|
);
|
||||||
this.map = new UIEventSource<MlMap>(undefined)
|
this.map = new UIEventSource<MlMap>(undefined);
|
||||||
const initial = new InitialMapPositioning(layout)
|
const initial = new InitialMapPositioning(layout);
|
||||||
this.mapProperties = new MapLibreAdaptor(this.map, initial)
|
this.mapProperties = new MapLibreAdaptor(this.map, initial);
|
||||||
const geolocationState = new GeoLocationState()
|
const geolocationState = new GeoLocationState();
|
||||||
|
|
||||||
this.featureSwitchIsTesting = this.featureSwitches.featureSwitchIsTesting
|
this.featureSwitchIsTesting = this.featureSwitches.featureSwitchIsTesting;
|
||||||
this.featureSwitchUserbadge = this.featureSwitches.featureSwitchEnableLogin
|
this.featureSwitchUserbadge = this.featureSwitches.featureSwitchEnableLogin;
|
||||||
|
|
||||||
this.osmConnection = new OsmConnection({
|
this.osmConnection = new OsmConnection({
|
||||||
dryRun: this.featureSwitches.featureSwitchIsTesting,
|
dryRun: this.featureSwitches.featureSwitchIsTesting,
|
||||||
|
@ -140,57 +139,57 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
"oauth_token",
|
"oauth_token",
|
||||||
undefined,
|
undefined,
|
||||||
"Used to complete the login"
|
"Used to complete the login"
|
||||||
),
|
)
|
||||||
})
|
});
|
||||||
this.userRelatedState = new UserRelatedState(
|
this.userRelatedState = new UserRelatedState(
|
||||||
this.osmConnection,
|
this.osmConnection,
|
||||||
layout?.language,
|
layout?.language,
|
||||||
layout,
|
layout,
|
||||||
this.featureSwitches,
|
this.featureSwitches,
|
||||||
this.mapProperties
|
this.mapProperties
|
||||||
)
|
);
|
||||||
this.userRelatedState.fixateNorth.addCallbackAndRunD((fixated) => {
|
this.userRelatedState.fixateNorth.addCallbackAndRunD((fixated) => {
|
||||||
this.mapProperties.allowRotating.setData(fixated !== "yes")
|
this.mapProperties.allowRotating.setData(fixated !== "yes");
|
||||||
})
|
});
|
||||||
this.selectedElement = new UIEventSource<Feature | undefined>(undefined, "Selected element")
|
this.selectedElement = new UIEventSource<Feature | undefined>(undefined, "Selected element");
|
||||||
this.selectedLayer = new UIEventSource<LayerConfig>(undefined, "Selected layer")
|
this.selectedLayer = new UIEventSource<LayerConfig>(undefined, "Selected layer");
|
||||||
|
|
||||||
this.selectedElementAndLayer = this.selectedElement.mapD(
|
this.selectedElementAndLayer = this.selectedElement.mapD(
|
||||||
(feature) => {
|
(feature) => {
|
||||||
const layer = this.selectedLayer.data
|
const layer = this.selectedLayer.data;
|
||||||
if (!layer) {
|
if (!layer) {
|
||||||
return undefined
|
return undefined;
|
||||||
}
|
}
|
||||||
return { layer, feature }
|
return { layer, feature };
|
||||||
},
|
},
|
||||||
[this.selectedLayer]
|
[this.selectedLayer]
|
||||||
)
|
);
|
||||||
|
|
||||||
this.geolocation = new GeoLocationHandler(
|
this.geolocation = new GeoLocationHandler(
|
||||||
geolocationState,
|
geolocationState,
|
||||||
this.selectedElement,
|
this.selectedElement,
|
||||||
this.mapProperties,
|
this.mapProperties,
|
||||||
this.userRelatedState.gpsLocationHistoryRetentionTime
|
this.userRelatedState.gpsLocationHistoryRetentionTime
|
||||||
)
|
);
|
||||||
|
|
||||||
this.availableLayers = AvailableRasterLayers.layersAvailableAt(this.mapProperties.location)
|
this.availableLayers = AvailableRasterLayers.layersAvailableAt(this.mapProperties.location);
|
||||||
|
|
||||||
const self = this
|
const self = this;
|
||||||
this.layerState = new LayerState(this.osmConnection, layout.layers, layout.id)
|
this.layerState = new LayerState(this.osmConnection, layout.layers, layout.id);
|
||||||
|
|
||||||
{
|
{
|
||||||
const overlayLayerStates = new Map<string, { isDisplayed: UIEventSource<boolean> }>()
|
const overlayLayerStates = new Map<string, { isDisplayed: UIEventSource<boolean> }>();
|
||||||
for (const rasterInfo of this.layout.tileLayerSources) {
|
for (const rasterInfo of this.layout.tileLayerSources) {
|
||||||
const isDisplayed = QueryParameters.GetBooleanQueryParameter(
|
const isDisplayed = QueryParameters.GetBooleanQueryParameter(
|
||||||
"overlay-" + rasterInfo.id,
|
"overlay-" + rasterInfo.id,
|
||||||
rasterInfo.defaultState ?? true,
|
rasterInfo.defaultState ?? true,
|
||||||
"Wether or not overlayer layer " + rasterInfo.id + " is shown"
|
"Wether or not overlayer layer " + rasterInfo.id + " is shown"
|
||||||
)
|
);
|
||||||
const state = { isDisplayed }
|
const state = { isDisplayed };
|
||||||
overlayLayerStates.set(rasterInfo.id, state)
|
overlayLayerStates.set(rasterInfo.id, state);
|
||||||
new ShowOverlayRasterLayer(rasterInfo, this.map, this.mapProperties, state)
|
new ShowOverlayRasterLayer(rasterInfo, this.map, this.mapProperties, state);
|
||||||
}
|
}
|
||||||
this.overlayLayerStates = overlayLayerStates
|
this.overlayLayerStates = overlayLayerStates;
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -199,7 +198,7 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (this.layout.layers.some((l) => l._needsFullNodeDatabase)) {
|
if (this.layout.layers.some((l) => l._needsFullNodeDatabase)) {
|
||||||
this.fullNodeDatabase = new FullNodeDatabaseSource()
|
this.fullNodeDatabase = new FullNodeDatabaseSource();
|
||||||
}
|
}
|
||||||
|
|
||||||
const layoutSource = new LayoutSource(
|
const layoutSource = new LayoutSource(
|
||||||
|
@ -209,49 +208,49 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
this.osmConnection.Backend(),
|
this.osmConnection.Backend(),
|
||||||
(id) => self.layerState.filteredLayers.get(id).isDisplayed,
|
(id) => self.layerState.filteredLayers.get(id).isDisplayed,
|
||||||
this.fullNodeDatabase
|
this.fullNodeDatabase
|
||||||
)
|
);
|
||||||
|
|
||||||
this.indexedFeatures = layoutSource
|
this.indexedFeatures = layoutSource;
|
||||||
|
|
||||||
const empty = []
|
|
||||||
let currentViewIndex = 0
|
let currentViewIndex = 0
|
||||||
|
const empty = [];
|
||||||
this.currentView = new StaticFeatureSource(
|
this.currentView = new StaticFeatureSource(
|
||||||
this.mapProperties.bounds.map((bbox) => {
|
this.mapProperties.bounds.map((bbox) => {
|
||||||
if (!bbox) {
|
if (!bbox) {
|
||||||
return empty
|
return empty;
|
||||||
}
|
}
|
||||||
currentViewIndex++
|
currentViewIndex++;
|
||||||
return <Feature[]>[
|
return <Feature[]>[
|
||||||
bbox.asGeoJson({
|
bbox.asGeoJson({
|
||||||
zoom: this.mapProperties.zoom.data,
|
zoom: this.mapProperties.zoom.data,
|
||||||
...this.mapProperties.location.data,
|
...this.mapProperties.location.data,
|
||||||
id: "current_view",
|
id: "current_view_"+currentViewIndex
|
||||||
}),
|
|
||||||
]
|
|
||||||
})
|
})
|
||||||
)
|
];
|
||||||
this.featuresInView = new BBoxFeatureSource(layoutSource, this.mapProperties.bounds)
|
})
|
||||||
this.dataIsLoading = layoutSource.isLoading
|
);
|
||||||
|
this.featuresInView = new BBoxFeatureSource(layoutSource, this.mapProperties.bounds);
|
||||||
|
this.dataIsLoading = layoutSource.isLoading;
|
||||||
|
|
||||||
const indexedElements = this.indexedFeatures
|
const indexedElements = this.indexedFeatures;
|
||||||
this.featureProperties = new FeaturePropertiesStore(indexedElements)
|
this.featureProperties = new FeaturePropertiesStore(indexedElements);
|
||||||
this.changes = new Changes(
|
this.changes = new Changes(
|
||||||
{
|
{
|
||||||
dryRun: this.featureSwitches.featureSwitchIsTesting,
|
dryRun: this.featureSwitches.featureSwitchIsTesting,
|
||||||
allElements: indexedElements,
|
allElements: indexedElements,
|
||||||
featurePropertiesStore: this.featureProperties,
|
featurePropertiesStore: this.featureProperties,
|
||||||
osmConnection: this.osmConnection,
|
osmConnection: this.osmConnection,
|
||||||
historicalUserLocations: this.geolocation.historicalUserLocations,
|
historicalUserLocations: this.geolocation.historicalUserLocations
|
||||||
},
|
},
|
||||||
layout?.isLeftRightSensitive() ?? false
|
layout?.isLeftRightSensitive() ?? false
|
||||||
)
|
);
|
||||||
this.historicalUserLocations = this.geolocation.historicalUserLocations
|
this.historicalUserLocations = this.geolocation.historicalUserLocations;
|
||||||
this.newFeatures = new NewGeometryFromChangesFeatureSource(
|
this.newFeatures = new NewGeometryFromChangesFeatureSource(
|
||||||
this.changes,
|
this.changes,
|
||||||
indexedElements,
|
indexedElements,
|
||||||
this.featureProperties
|
this.featureProperties
|
||||||
)
|
);
|
||||||
layoutSource.addSource(this.newFeatures)
|
layoutSource.addSource(this.newFeatures);
|
||||||
|
|
||||||
const perLayer = new PerLayerFeatureSourceSplitter(
|
const perLayer = new PerLayerFeatureSourceSplitter(
|
||||||
Array.from(this.layerState.filteredLayers.values()).filter(
|
Array.from(this.layerState.filteredLayers.values()).filter(
|
||||||
|
@ -267,11 +266,11 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
features.length,
|
features.length,
|
||||||
"leftover features, such as",
|
"leftover features, such as",
|
||||||
features[0].properties
|
features[0].properties
|
||||||
)
|
);
|
||||||
},
|
|
||||||
}
|
}
|
||||||
)
|
}
|
||||||
this.perLayer = perLayer.perLayer
|
);
|
||||||
|
this.perLayer = perLayer.perLayer;
|
||||||
}
|
}
|
||||||
this.perLayer.forEach((fs) => {
|
this.perLayer.forEach((fs) => {
|
||||||
new SaveFeatureSourceToLocalStorage(
|
new SaveFeatureSourceToLocalStorage(
|
||||||
|
@ -281,80 +280,81 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
fs,
|
fs,
|
||||||
this.featureProperties,
|
this.featureProperties,
|
||||||
fs.layer.layerDef.maxAgeOfCache
|
fs.layer.layerDef.maxAgeOfCache
|
||||||
)
|
);
|
||||||
})
|
});
|
||||||
|
this.newPointDialog = this.layerState.filteredLayers.get("last_click");
|
||||||
|
|
||||||
this.floors = this.featuresInView.features.stabilized(500).map((features) => {
|
this.floors = this.featuresInView.features.stabilized(500).map((features) => {
|
||||||
if (!features) {
|
if (!features) {
|
||||||
return []
|
return [];
|
||||||
}
|
}
|
||||||
const floors = new Set<string>()
|
const floors = new Set<string>();
|
||||||
for (const feature of features) {
|
for (const feature of features) {
|
||||||
let level = feature.properties["_level"]
|
let level = feature.properties["_level"];
|
||||||
if (level) {
|
if (level) {
|
||||||
const levels = level.split(";")
|
const levels = level.split(";");
|
||||||
for (const l of levels) {
|
for (const l of levels) {
|
||||||
floors.add(l)
|
floors.add(l);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
floors.add("0") // '0' is the default and is thus _always_ present
|
floors.add("0"); // '0' is the default and is thus _always_ present
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const sorted = Array.from(floors)
|
const sorted = Array.from(floors);
|
||||||
// Sort alphabetically first, to deal with floor "A", "B" and "C"
|
// Sort alphabetically first, to deal with floor "A", "B" and "C"
|
||||||
sorted.sort()
|
sorted.sort();
|
||||||
sorted.sort((a, b) => {
|
sorted.sort((a, b) => {
|
||||||
// We use the laxer 'parseInt' to deal with floor '1A'
|
// We use the laxer 'parseInt' to deal with floor '1A'
|
||||||
const na = parseInt(a)
|
const na = parseInt(a);
|
||||||
const nb = parseInt(b)
|
const nb = parseInt(b);
|
||||||
if (isNaN(na) || isNaN(nb)) {
|
if (isNaN(na) || isNaN(nb)) {
|
||||||
return 0
|
return 0;
|
||||||
}
|
}
|
||||||
return na - nb
|
return na - nb;
|
||||||
})
|
});
|
||||||
sorted.reverse(/* new list, no side-effects */)
|
sorted.reverse(/* new list, no side-effects */);
|
||||||
return sorted
|
return sorted;
|
||||||
})
|
});
|
||||||
|
|
||||||
const lastClick = (this.lastClickObject = new LastClickFeatureSource(
|
const lastClick = (this.lastClickObject = new LastClickFeatureSource(
|
||||||
this.mapProperties.lastClickLocation,
|
this.mapProperties.lastClickLocation,
|
||||||
this.layout
|
this.layout
|
||||||
))
|
));
|
||||||
|
|
||||||
this.osmObjectDownloader = new OsmObjectDownloader(
|
this.osmObjectDownloader = new OsmObjectDownloader(
|
||||||
this.osmConnection.Backend(),
|
this.osmConnection.Backend(),
|
||||||
this.changes
|
this.changes
|
||||||
)
|
);
|
||||||
|
|
||||||
this.perLayerFiltered = this.showNormalDataOn(this.map)
|
this.perLayerFiltered = this.showNormalDataOn(this.map);
|
||||||
|
|
||||||
this.hasDataInView = new NoElementsInViewDetector(this).hasFeatureInView
|
this.hasDataInView = new NoElementsInViewDetector(this).hasFeatureInView;
|
||||||
this.imageUploadManager = new ImageUploadManager(
|
this.imageUploadManager = new ImageUploadManager(
|
||||||
layout,
|
layout,
|
||||||
Imgur.singleton,
|
Imgur.singleton,
|
||||||
this.featureProperties,
|
this.featureProperties,
|
||||||
this.osmConnection,
|
this.osmConnection,
|
||||||
this.changes
|
this.changes
|
||||||
)
|
);
|
||||||
|
|
||||||
this.initActors()
|
this.initActors();
|
||||||
this.addLastClick(lastClick)
|
// TODO remove this.addLastClick(lastClick);
|
||||||
this.drawSpecialLayers()
|
this.drawSpecialLayers();
|
||||||
this.initHotkeys()
|
this.initHotkeys();
|
||||||
this.miscSetup()
|
this.miscSetup();
|
||||||
if (!Utils.runningFromConsole) {
|
if (!Utils.runningFromConsole) {
|
||||||
console.log("State setup completed", this)
|
console.log("State setup completed", this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public showNormalDataOn(map: Store<MlMap>): ReadonlyMap<string, FilteringFeatureSource> {
|
public showNormalDataOn(map: Store<MlMap>): ReadonlyMap<string, FilteringFeatureSource> {
|
||||||
const filteringFeatureSource = new Map<string, FilteringFeatureSource>()
|
const filteringFeatureSource = new Map<string, FilteringFeatureSource>();
|
||||||
this.perLayer.forEach((fs, layerName) => {
|
this.perLayer.forEach((fs, layerName) => {
|
||||||
const doShowLayer = this.mapProperties.zoom.map(
|
const doShowLayer = this.mapProperties.zoom.map(
|
||||||
(z) =>
|
(z) =>
|
||||||
(fs.layer.isDisplayed?.data ?? true) && z >= (fs.layer.layerDef?.minzoom ?? 0),
|
(fs.layer.isDisplayed?.data ?? true) && z >= (fs.layer.layerDef?.minzoom ?? 0),
|
||||||
[fs.layer.isDisplayed]
|
[fs.layer.isDisplayed]
|
||||||
)
|
);
|
||||||
|
|
||||||
if (!doShowLayer.data && this.featureSwitches.featureSwitchFilter.data === false) {
|
if (!doShowLayer.data && this.featureSwitches.featureSwitchFilter.data === false) {
|
||||||
/* This layer is hidden and there is no way to enable it (filterview is disabled or this layer doesn't show up in the filter view as the name is not defined)
|
/* This layer is hidden and there is no way to enable it (filterview is disabled or this layer doesn't show up in the filter view as the name is not defined)
|
||||||
|
@ -364,15 +364,15 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
* Note: it is tempting to also permanently disable the layer if it is not visible _and_ the layer name is hidden.
|
* Note: it is tempting to also permanently disable the layer if it is not visible _and_ the layer name is hidden.
|
||||||
* However, this is _not_ correct: the layer might be hidden because zoom is not enough. Zooming in more _will_ reveal the layer!
|
* However, this is _not_ correct: the layer might be hidden because zoom is not enough. Zooming in more _will_ reveal the layer!
|
||||||
* */
|
* */
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
const filtered = new FilteringFeatureSource(
|
const filtered = new FilteringFeatureSource(
|
||||||
fs.layer,
|
fs.layer,
|
||||||
fs,
|
fs,
|
||||||
(id) => this.featureProperties.getStore(id),
|
(id) => this.featureProperties.getStore(id),
|
||||||
this.layerState.globalFilters
|
this.layerState.globalFilters
|
||||||
)
|
);
|
||||||
filteringFeatureSource.set(layerName, filtered)
|
filteringFeatureSource.set(layerName, filtered);
|
||||||
|
|
||||||
new ShowDataLayer(map, {
|
new ShowDataLayer(map, {
|
||||||
layer: fs.layer.layerDef,
|
layer: fs.layer.layerDef,
|
||||||
|
@ -380,30 +380,30 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
doShowLayer,
|
doShowLayer,
|
||||||
selectedElement: this.selectedElement,
|
selectedElement: this.selectedElement,
|
||||||
selectedLayer: this.selectedLayer,
|
selectedLayer: this.selectedLayer,
|
||||||
fetchStore: (id) => this.featureProperties.getStore(id),
|
fetchStore: (id) => this.featureProperties.getStore(id)
|
||||||
})
|
});
|
||||||
})
|
});
|
||||||
return filteringFeatureSource
|
return filteringFeatureSource;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Various small methods that need to be called
|
* Various small methods that need to be called
|
||||||
*/
|
*/
|
||||||
private miscSetup() {
|
private miscSetup() {
|
||||||
this.userRelatedState.markLayoutAsVisited(this.layout)
|
this.userRelatedState.markLayoutAsVisited(this.layout);
|
||||||
|
|
||||||
this.selectedElement.addCallbackAndRunD((feature) => {
|
this.selectedElement.addCallbackAndRunD((feature) => {
|
||||||
// As soon as we have a selected element, we clear the selected element
|
// As soon as we have a selected element, we clear the selected element
|
||||||
// This is to work around maplibre, which'll _first_ register the click on the map and only _then_ on the feature
|
// This is to work around maplibre, which'll _first_ register the click on the map and only _then_ on the feature
|
||||||
// The only exception is if the last element is the 'add_new'-button, as we don't want it to disappear
|
// The only exception is if the last element is the 'add_new'-button, as we don't want it to disappear
|
||||||
if (feature.properties.id === "last_click") {
|
if (feature.properties.id === "last_click") {
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
this.lastClickObject.features.setData([])
|
this.lastClickObject.features.setData([]);
|
||||||
})
|
});
|
||||||
|
|
||||||
if (this.layout.customCss !== undefined && window.location.pathname.indexOf("theme") >= 0) {
|
if (this.layout.customCss !== undefined && window.location.pathname.indexOf("theme") >= 0) {
|
||||||
Utils.LoadCustomCss(this.layout.customCss)
|
Utils.LoadCustomCss(this.layout.customCss);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -412,97 +412,107 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
{ nomod: "Escape", onUp: true },
|
{ nomod: "Escape", onUp: true },
|
||||||
Translations.t.hotkeyDocumentation.closeSidebar,
|
Translations.t.hotkeyDocumentation.closeSidebar,
|
||||||
() => {
|
() => {
|
||||||
this.selectedElement.setData(undefined)
|
this.selectedElement.setData(undefined);
|
||||||
this.guistate.closeAll()
|
this.guistate.closeAll();
|
||||||
}
|
}
|
||||||
)
|
);
|
||||||
|
|
||||||
Hotkeys.RegisterHotkey(
|
Hotkeys.RegisterHotkey(
|
||||||
{
|
{
|
||||||
nomod: "b",
|
nomod: "b"
|
||||||
},
|
},
|
||||||
Translations.t.hotkeyDocumentation.openLayersPanel,
|
Translations.t.hotkeyDocumentation.openLayersPanel,
|
||||||
() => {
|
() => {
|
||||||
if (this.featureSwitches.featureSwitchFilter.data) {
|
if (this.featureSwitches.featureSwitchFilter.data) {
|
||||||
this.guistate.openFilterView()
|
this.guistate.openFilterView();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
);
|
||||||
|
|
||||||
Hotkeys.RegisterHotkey(
|
Hotkeys.RegisterHotkey(
|
||||||
{ shift: "O" },
|
{ shift: "O" },
|
||||||
Translations.t.hotkeyDocumentation.selectMapnik,
|
Translations.t.hotkeyDocumentation.selectMapnik,
|
||||||
() => {
|
() => {
|
||||||
this.mapProperties.rasterLayer.setData(AvailableRasterLayers.osmCarto)
|
this.mapProperties.rasterLayer.setData(AvailableRasterLayers.osmCarto);
|
||||||
}
|
}
|
||||||
)
|
);
|
||||||
const setLayerCategory = (category: EliCategory) => {
|
const setLayerCategory = (category: EliCategory) => {
|
||||||
const available = this.availableLayers.data
|
const available = this.availableLayers.data;
|
||||||
const current = this.mapProperties.rasterLayer
|
const current = this.mapProperties.rasterLayer;
|
||||||
const best = RasterLayerUtils.SelectBestLayerAccordingTo(
|
const best = RasterLayerUtils.SelectBestLayerAccordingTo(
|
||||||
available,
|
available,
|
||||||
category,
|
category,
|
||||||
current.data
|
current.data
|
||||||
)
|
);
|
||||||
console.log("Best layer for category", category, "is", best.properties.id)
|
console.log("Best layer for category", category, "is", best.properties.id);
|
||||||
current.setData(best)
|
current.setData(best);
|
||||||
}
|
};
|
||||||
|
|
||||||
Hotkeys.RegisterHotkey(
|
Hotkeys.RegisterHotkey(
|
||||||
{ nomod: "O" },
|
{ nomod: "O" },
|
||||||
Translations.t.hotkeyDocumentation.selectOsmbasedmap,
|
Translations.t.hotkeyDocumentation.selectOsmbasedmap,
|
||||||
() => setLayerCategory("osmbasedmap")
|
() => setLayerCategory("osmbasedmap")
|
||||||
)
|
);
|
||||||
|
|
||||||
Hotkeys.RegisterHotkey({ nomod: "M" }, Translations.t.hotkeyDocumentation.selectMap, () =>
|
Hotkeys.RegisterHotkey({ nomod: "M" }, Translations.t.hotkeyDocumentation.selectMap, () =>
|
||||||
setLayerCategory("map")
|
setLayerCategory("map")
|
||||||
)
|
);
|
||||||
|
|
||||||
Hotkeys.RegisterHotkey(
|
Hotkeys.RegisterHotkey(
|
||||||
{ nomod: "P" },
|
{ nomod: "P" },
|
||||||
Translations.t.hotkeyDocumentation.selectAerial,
|
Translations.t.hotkeyDocumentation.selectAerial,
|
||||||
() => setLayerCategory("photo")
|
() => setLayerCategory("photo")
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
private addLastClick(last_click: LastClickFeatureSource) {
|
private addLastClick(last_click: LastClickFeatureSource) {
|
||||||
// The last_click gets a _very_ special treatment as it interacts with various parts
|
// The last_click gets a _very_ special treatment as it interacts with various parts
|
||||||
|
|
||||||
const last_click_layer = this.layerState.filteredLayers.get("last_click")
|
this.featureProperties.trackFeatureSource(last_click);
|
||||||
this.featureProperties.trackFeatureSource(last_click)
|
this.indexedFeatures.addSource(last_click);
|
||||||
this.indexedFeatures.addSource(last_click)
|
|
||||||
|
|
||||||
last_click.features.addCallbackAndRunD((features) => {
|
last_click.features.addCallbackAndRunD((features) => {
|
||||||
if (this.selectedLayer.data?.id === "last_click") {
|
if (this.selectedLayer.data?.id === "last_click") {
|
||||||
// The last-click location moved, but we have selected the last click of the previous location
|
// The last-click location moved, but we have selected the last click of the previous location
|
||||||
// So, we update _after_ clearing the selection to make sure no stray data is sticking around
|
// So, we update _after_ clearing the selection to make sure no stray data is sticking around
|
||||||
this.selectedElement.setData(undefined)
|
this.selectedElement.setData(undefined);
|
||||||
this.selectedElement.setData(features[0])
|
this.selectedElement.setData(features[0]);
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
|
||||||
new ShowDataLayer(this.map, {
|
new ShowDataLayer(this.map, {
|
||||||
features: new FilteringFeatureSource(last_click_layer, last_click),
|
features: new FilteringFeatureSource(this.newPointDialog, last_click),
|
||||||
doShowLayer: this.featureSwitches.featureSwitchEnableLogin,
|
doShowLayer: this.featureSwitches.featureSwitchEnableLogin,
|
||||||
layer: last_click_layer.layerDef,
|
layer: this.newPointDialog.layerDef,
|
||||||
selectedElement: this.selectedElement,
|
selectedElement: this.selectedElement,
|
||||||
selectedLayer: this.selectedLayer,
|
selectedLayer: this.selectedLayer,
|
||||||
onClick: (feature: Feature) => {
|
onClick: (feature: Feature) => {
|
||||||
if (this.mapProperties.zoom.data < Constants.minZoomLevelToAddNewPoint) {
|
if (this.mapProperties.zoom.data < Constants.minZoomLevelToAddNewPoint) {
|
||||||
this.map.data.flyTo({
|
this.map.data.flyTo({
|
||||||
zoom: Constants.minZoomLevelToAddNewPoint,
|
zoom: Constants.minZoomLevelToAddNewPoint,
|
||||||
center: this.mapProperties.lastClickLocation.data,
|
center: this.mapProperties.lastClickLocation.data
|
||||||
})
|
});
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
// We first clear the selection to make sure no weird state is around
|
// We first clear the selection to make sure no weird state is around
|
||||||
this.selectedLayer.setData(undefined)
|
this.selectedLayer.setData(undefined);
|
||||||
this.selectedElement.setData(undefined)
|
this.selectedElement.setData(undefined);
|
||||||
|
|
||||||
this.selectedElement.setData(feature)
|
this.selectedElement.setData(feature);
|
||||||
this.selectedLayer.setData(last_click_layer.layerDef)
|
this.selectedLayer.setData(this.newPointDialog.layerDef);
|
||||||
},
|
}
|
||||||
})
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public openNewDialog() {
|
||||||
|
this.selectedLayer.setData(undefined);
|
||||||
|
this.selectedElement.setData(undefined);
|
||||||
|
|
||||||
|
const { lon, lat } = this.mapProperties.location.data;
|
||||||
|
const feature = this.lastClickObject.createFeature(lon, lat)
|
||||||
|
this.featureProperties.trackFeature(feature)
|
||||||
|
this.selectedElement.setData(feature);
|
||||||
|
this.selectedLayer.setData(this.newPointDialog.layerDef);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -510,7 +520,7 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
*/
|
*/
|
||||||
private drawSpecialLayers() {
|
private drawSpecialLayers() {
|
||||||
type AddedByDefaultTypes = (typeof Constants.added_by_default)[number]
|
type AddedByDefaultTypes = (typeof Constants.added_by_default)[number]
|
||||||
const empty = []
|
const empty = [];
|
||||||
/**
|
/**
|
||||||
* A listing which maps the layerId onto the featureSource
|
* A listing which maps the layerId onto the featureSource
|
||||||
*/
|
*/
|
||||||
|
@ -530,21 +540,21 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
bbox === undefined ? empty : <Feature[]>[bbox.asGeoJson({ id: "range" })]
|
bbox === undefined ? empty : <Feature[]>[bbox.asGeoJson({ id: "range" })]
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
current_view: this.currentView,
|
current_view: this.currentView
|
||||||
}
|
};
|
||||||
if (this.layout?.lockLocation) {
|
if (this.layout?.lockLocation) {
|
||||||
const bbox = new BBox(this.layout.lockLocation)
|
const bbox = new BBox(this.layout.lockLocation);
|
||||||
this.mapProperties.maxbounds.setData(bbox)
|
this.mapProperties.maxbounds.setData(bbox);
|
||||||
ShowDataLayer.showRange(
|
ShowDataLayer.showRange(
|
||||||
this.map,
|
this.map,
|
||||||
new StaticFeatureSource([bbox.asGeoJson({ id: "range" })]),
|
new StaticFeatureSource([bbox.asGeoJson({ id: "range" })]),
|
||||||
this.featureSwitches.featureSwitchIsTesting
|
this.featureSwitches.featureSwitchIsTesting
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
const currentViewLayer = this.layout.layers.find((l) => l.id === "current_view")
|
const currentViewLayer = this.layout.layers.find((l) => l.id === "current_view");
|
||||||
if (currentViewLayer?.tagRenderings?.length > 0) {
|
if (currentViewLayer?.tagRenderings?.length > 0) {
|
||||||
const params = MetaTagging.createExtraFuncParams(this)
|
const params = MetaTagging.createExtraFuncParams(this);
|
||||||
this.featureProperties.trackFeatureSource(specialLayers.current_view)
|
this.featureProperties.trackFeatureSource(specialLayers.current_view);
|
||||||
specialLayers.current_view.features.addCallbackAndRunD((features) => {
|
specialLayers.current_view.features.addCallbackAndRunD((features) => {
|
||||||
MetaTagging.addMetatags(
|
MetaTagging.addMetatags(
|
||||||
features,
|
features,
|
||||||
|
@ -553,36 +563,36 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
this.layout,
|
this.layout,
|
||||||
this.osmObjectDownloader,
|
this.osmObjectDownloader,
|
||||||
this.featureProperties
|
this.featureProperties
|
||||||
)
|
);
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const rangeFLayer: FilteredLayer = this.layerState.filteredLayers.get("range")
|
const rangeFLayer: FilteredLayer = this.layerState.filteredLayers.get("range");
|
||||||
|
|
||||||
const rangeIsDisplayed = rangeFLayer?.isDisplayed
|
const rangeIsDisplayed = rangeFLayer?.isDisplayed;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
!QueryParameters.wasInitialized(FilteredLayer.queryParameterKey(rangeFLayer.layerDef))
|
!QueryParameters.wasInitialized(FilteredLayer.queryParameterKey(rangeFLayer.layerDef))
|
||||||
) {
|
) {
|
||||||
rangeIsDisplayed?.syncWith(this.featureSwitches.featureSwitchIsTesting, true)
|
rangeIsDisplayed?.syncWith(this.featureSwitches.featureSwitchIsTesting, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.layerState.filteredLayers.forEach((flayer) => {
|
this.layerState.filteredLayers.forEach((flayer) => {
|
||||||
const id = flayer.layerDef.id
|
const id = flayer.layerDef.id;
|
||||||
const features: FeatureSource = specialLayers[id]
|
const features: FeatureSource = specialLayers[id];
|
||||||
if (features === undefined) {
|
if (features === undefined) {
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.featureProperties.trackFeatureSource(features)
|
this.featureProperties.trackFeatureSource(features);
|
||||||
new ShowDataLayer(this.map, {
|
new ShowDataLayer(this.map, {
|
||||||
features,
|
features,
|
||||||
doShowLayer: flayer.isDisplayed,
|
doShowLayer: flayer.isDisplayed,
|
||||||
layer: flayer.layerDef,
|
layer: flayer.layerDef,
|
||||||
selectedElement: this.selectedElement,
|
selectedElement: this.selectedElement,
|
||||||
selectedLayer: this.selectedLayer,
|
selectedLayer: this.selectedLayer
|
||||||
})
|
});
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -591,35 +601,35 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
private initActors() {
|
private initActors() {
|
||||||
// Unselect the selected element if it is panned out of view
|
// Unselect the selected element if it is panned out of view
|
||||||
this.mapProperties.bounds.stabilized(250).addCallbackD((bounds) => {
|
this.mapProperties.bounds.stabilized(250).addCallbackD((bounds) => {
|
||||||
const selected = this.selectedElement.data
|
const selected = this.selectedElement.data;
|
||||||
if (selected === undefined) {
|
if (selected === undefined) {
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
const bbox = BBox.get(selected)
|
const bbox = BBox.get(selected);
|
||||||
if (!bbox.overlapsWith(bounds)) {
|
if (!bbox.overlapsWith(bounds)) {
|
||||||
this.selectedElement.setData(undefined)
|
this.selectedElement.setData(undefined);
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
|
||||||
this.selectedElement.addCallback((selected) => {
|
this.selectedElement.addCallback((selected) => {
|
||||||
if (selected === undefined) {
|
if (selected === undefined) {
|
||||||
// We did _unselect_ an item - we always remove the lastclick-object
|
// We did _unselect_ an item - we always remove the lastclick-object
|
||||||
this.lastClickObject.features.setData([])
|
this.lastClickObject.features.setData([]);
|
||||||
this.selectedLayer.setData(undefined)
|
this.selectedLayer.setData(undefined);
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
new ThemeViewStateHashActor(this)
|
new ThemeViewStateHashActor(this);
|
||||||
new MetaTagging(this)
|
new MetaTagging(this);
|
||||||
new TitleHandler(this.selectedElement, this.selectedLayer, this.featureProperties, this)
|
new TitleHandler(this.selectedElement, this.selectedLayer, this.featureProperties, this);
|
||||||
new ChangeToElementsActor(this.changes, this.featureProperties)
|
new ChangeToElementsActor(this.changes, this.featureProperties);
|
||||||
new PendingChangesUploader(this.changes, this.selectedElement)
|
new PendingChangesUploader(this.changes, this.selectedElement);
|
||||||
new SelectedElementTagsUpdater(this)
|
new SelectedElementTagsUpdater(this);
|
||||||
new BackgroundLayerResetter(this.mapProperties.rasterLayer, this.availableLayers)
|
new BackgroundLayerResetter(this.mapProperties.rasterLayer, this.availableLayers);
|
||||||
new PreferredRasterLayerSelector(
|
new PreferredRasterLayerSelector(
|
||||||
this.mapProperties.rasterLayer,
|
this.mapProperties.rasterLayer,
|
||||||
this.availableLayers,
|
this.availableLayers,
|
||||||
this.featureSwitches.backgroundLayerId,
|
this.featureSwitches.backgroundLayerId,
|
||||||
this.userRelatedState.preferredBackgroundLayer
|
this.userRelatedState.preferredBackgroundLayer
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,115 +1,114 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Store, UIEventSource } from "../Logic/UIEventSource"
|
import { Store, UIEventSource } from "../Logic/UIEventSource";
|
||||||
import { Map as MlMap } from "maplibre-gl"
|
import { Map as MlMap } from "maplibre-gl";
|
||||||
import MaplibreMap from "./Map/MaplibreMap.svelte"
|
import MaplibreMap from "./Map/MaplibreMap.svelte";
|
||||||
import FeatureSwitchState from "../Logic/State/FeatureSwitchState"
|
import FeatureSwitchState from "../Logic/State/FeatureSwitchState";
|
||||||
import MapControlButton from "./Base/MapControlButton.svelte"
|
import MapControlButton from "./Base/MapControlButton.svelte";
|
||||||
import ToSvelte from "./Base/ToSvelte.svelte"
|
import ToSvelte from "./Base/ToSvelte.svelte";
|
||||||
import If from "./Base/If.svelte"
|
import If from "./Base/If.svelte";
|
||||||
import { GeolocationControl } from "./BigComponents/GeolocationControl"
|
import { GeolocationControl } from "./BigComponents/GeolocationControl";
|
||||||
import type { Feature } from "geojson"
|
import type { Feature } from "geojson";
|
||||||
import SelectedElementView from "./BigComponents/SelectedElementView.svelte"
|
import SelectedElementView from "./BigComponents/SelectedElementView.svelte";
|
||||||
import LayerConfig from "../Models/ThemeConfig/LayerConfig"
|
import LayerConfig from "../Models/ThemeConfig/LayerConfig";
|
||||||
import Filterview from "./BigComponents/Filterview.svelte"
|
import Filterview from "./BigComponents/Filterview.svelte";
|
||||||
import ThemeViewState from "../Models/ThemeViewState"
|
import ThemeViewState from "../Models/ThemeViewState";
|
||||||
import type { MapProperties } from "../Models/MapProperties"
|
import type { MapProperties } from "../Models/MapProperties";
|
||||||
import Geosearch from "./BigComponents/Geosearch.svelte"
|
import Geosearch from "./BigComponents/Geosearch.svelte";
|
||||||
import Translations from "./i18n/Translations"
|
import Translations from "./i18n/Translations";
|
||||||
import { CogIcon, EyeIcon, MenuIcon, XCircleIcon } from "@rgossiaux/svelte-heroicons/solid"
|
import { CogIcon, EyeIcon, MenuIcon, XCircleIcon } from "@rgossiaux/svelte-heroicons/solid";
|
||||||
|
|
||||||
import Tr from "./Base/Tr.svelte"
|
import Tr from "./Base/Tr.svelte";
|
||||||
import CommunityIndexView from "./BigComponents/CommunityIndexView.svelte"
|
import CommunityIndexView from "./BigComponents/CommunityIndexView.svelte";
|
||||||
import FloatOver from "./Base/FloatOver.svelte"
|
import FloatOver from "./Base/FloatOver.svelte";
|
||||||
import PrivacyPolicy from "./BigComponents/PrivacyPolicy"
|
import PrivacyPolicy from "./BigComponents/PrivacyPolicy";
|
||||||
import Constants from "../Models/Constants"
|
import Constants from "../Models/Constants";
|
||||||
import TabbedGroup from "./Base/TabbedGroup.svelte"
|
import TabbedGroup from "./Base/TabbedGroup.svelte";
|
||||||
import UserRelatedState from "../Logic/State/UserRelatedState"
|
import UserRelatedState from "../Logic/State/UserRelatedState";
|
||||||
import LoginToggle from "./Base/LoginToggle.svelte"
|
import LoginToggle from "./Base/LoginToggle.svelte";
|
||||||
import LoginButton from "./Base/LoginButton.svelte"
|
import LoginButton from "./Base/LoginButton.svelte";
|
||||||
import CopyrightPanel from "./BigComponents/CopyrightPanel"
|
import CopyrightPanel from "./BigComponents/CopyrightPanel";
|
||||||
import DownloadPanel from "./DownloadFlow/DownloadPanel.svelte"
|
import DownloadPanel from "./DownloadFlow/DownloadPanel.svelte";
|
||||||
import ModalRight from "./Base/ModalRight.svelte"
|
import ModalRight from "./Base/ModalRight.svelte";
|
||||||
import { Utils } from "../Utils"
|
import { Utils } from "../Utils";
|
||||||
import Hotkeys from "./Base/Hotkeys"
|
import Hotkeys from "./Base/Hotkeys";
|
||||||
import { VariableUiElement } from "./Base/VariableUIElement"
|
import { VariableUiElement } from "./Base/VariableUIElement";
|
||||||
import SvelteUIElement from "./Base/SvelteUIElement"
|
import SvelteUIElement from "./Base/SvelteUIElement";
|
||||||
import OverlayToggle from "./BigComponents/OverlayToggle.svelte"
|
import OverlayToggle from "./BigComponents/OverlayToggle.svelte";
|
||||||
import LevelSelector from "./BigComponents/LevelSelector.svelte"
|
import LevelSelector from "./BigComponents/LevelSelector.svelte";
|
||||||
import ExtraLinkButton from "./BigComponents/ExtraLinkButton"
|
import ExtraLinkButton from "./BigComponents/ExtraLinkButton";
|
||||||
import SelectedElementTitle from "./BigComponents/SelectedElementTitle.svelte"
|
import SelectedElementTitle from "./BigComponents/SelectedElementTitle.svelte";
|
||||||
import Svg from "../Svg"
|
import Svg from "../Svg";
|
||||||
import ThemeIntroPanel from "./BigComponents/ThemeIntroPanel.svelte"
|
import ThemeIntroPanel from "./BigComponents/ThemeIntroPanel.svelte";
|
||||||
import type { RasterLayerPolygon } from "../Models/RasterLayers"
|
import type { RasterLayerPolygon } from "../Models/RasterLayers";
|
||||||
import { AvailableRasterLayers } from "../Models/RasterLayers"
|
import { AvailableRasterLayers } from "../Models/RasterLayers";
|
||||||
import RasterLayerOverview from "./Map/RasterLayerOverview.svelte"
|
import RasterLayerOverview from "./Map/RasterLayerOverview.svelte";
|
||||||
import IfHidden from "./Base/IfHidden.svelte"
|
import IfHidden from "./Base/IfHidden.svelte";
|
||||||
import { onDestroy } from "svelte"
|
import { onDestroy } from "svelte";
|
||||||
import { OpenJosm } from "./BigComponents/OpenJosm"
|
import { OpenJosm } from "./BigComponents/OpenJosm";
|
||||||
import MapillaryLink from "./BigComponents/MapillaryLink.svelte"
|
import MapillaryLink from "./BigComponents/MapillaryLink.svelte";
|
||||||
import OpenIdEditor from "./BigComponents/OpenIdEditor.svelte"
|
import OpenIdEditor from "./BigComponents/OpenIdEditor.svelte";
|
||||||
import OpenBackgroundSelectorButton from "./BigComponents/OpenBackgroundSelectorButton.svelte"
|
import OpenBackgroundSelectorButton from "./BigComponents/OpenBackgroundSelectorButton.svelte";
|
||||||
import StateIndicator from "./BigComponents/StateIndicator.svelte"
|
import StateIndicator from "./BigComponents/StateIndicator.svelte";
|
||||||
import LanguagePicker from "./LanguagePicker"
|
import LanguagePicker from "./LanguagePicker";
|
||||||
import Locale from "./i18n/Locale"
|
import Locale from "./i18n/Locale";
|
||||||
import ShareScreen from "./BigComponents/ShareScreen.svelte"
|
import ShareScreen from "./BigComponents/ShareScreen.svelte";
|
||||||
import { Square3Stack3dIcon } from "@babeard/svelte-heroicons/solid";
|
|
||||||
|
|
||||||
export let state: ThemeViewState
|
export let state: ThemeViewState;
|
||||||
let layout = state.layout
|
let layout = state.layout;
|
||||||
|
|
||||||
let maplibremap: UIEventSource<MlMap> = state.map
|
let maplibremap: UIEventSource<MlMap> = state.map;
|
||||||
let selectedElement: UIEventSource<Feature> = state.selectedElement
|
let selectedElement: UIEventSource<Feature> = state.selectedElement;
|
||||||
let selectedLayer: UIEventSource<LayerConfig> = state.selectedLayer
|
let selectedLayer: UIEventSource<LayerConfig> = state.selectedLayer;
|
||||||
|
|
||||||
const selectedElementView = selectedElement.map(
|
const selectedElementView = selectedElement.map(
|
||||||
(selectedElement) => {
|
(selectedElement) => {
|
||||||
// Svelte doesn't properly reload some of the legacy UI-elements
|
// Svelte doesn't properly reload some of the legacy UI-elements
|
||||||
// As such, we _reconstruct_ the selectedElementView every time a new feature is selected
|
// As such, we _reconstruct_ the selectedElementView every time a new feature is selected
|
||||||
// This is a bit wasteful, but until everything is a svelte-component, this should do the trick
|
// This is a bit wasteful, but until everything is a svelte-component, this should do the trick
|
||||||
const layer = selectedLayer.data
|
const layer = selectedLayer.data;
|
||||||
if (selectedElement === undefined || layer === undefined) {
|
if (selectedElement === undefined || layer === undefined) {
|
||||||
return undefined
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(layer.tagRenderings?.length > 0) || layer.title === undefined) {
|
if (!(layer.tagRenderings?.length > 0) || layer.title === undefined) {
|
||||||
return undefined
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
const tags = state.featureProperties.getStore(selectedElement.properties.id)
|
const tags = state.featureProperties.getStore(selectedElement.properties.id);
|
||||||
return new SvelteUIElement(SelectedElementView, { state, layer, selectedElement, tags })
|
return new SvelteUIElement(SelectedElementView, { state, layer, selectedElement, tags });
|
||||||
},
|
},
|
||||||
[selectedLayer]
|
[selectedLayer]
|
||||||
)
|
);
|
||||||
|
|
||||||
const selectedElementTitle = selectedElement.map(
|
const selectedElementTitle = selectedElement.map(
|
||||||
(selectedElement) => {
|
(selectedElement) => {
|
||||||
// Svelte doesn't properly reload some of the legacy UI-elements
|
// Svelte doesn't properly reload some of the legacy UI-elements
|
||||||
// As such, we _reconstruct_ the selectedElementView every time a new feature is selected
|
// As such, we _reconstruct_ the selectedElementView every time a new feature is selected
|
||||||
// This is a bit wasteful, but until everything is a svelte-component, this should do the trick
|
// This is a bit wasteful, but until everything is a svelte-component, this should do the trick
|
||||||
const layer = selectedLayer.data
|
const layer = selectedLayer.data;
|
||||||
if (selectedElement === undefined || layer === undefined) {
|
if (selectedElement === undefined || layer === undefined) {
|
||||||
return undefined
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
const tags = state.featureProperties.getStore(selectedElement.properties.id)
|
const tags = state.featureProperties.getStore(selectedElement.properties.id);
|
||||||
return new SvelteUIElement(SelectedElementTitle, { state, layer, selectedElement, tags })
|
return new SvelteUIElement(SelectedElementTitle, { state, layer, selectedElement, tags });
|
||||||
},
|
},
|
||||||
[selectedLayer]
|
[selectedLayer]
|
||||||
)
|
);
|
||||||
|
|
||||||
let mapproperties: MapProperties = state.mapProperties
|
let mapproperties: MapProperties = state.mapProperties;
|
||||||
let featureSwitches: FeatureSwitchState = state.featureSwitches
|
let featureSwitches: FeatureSwitchState = state.featureSwitches;
|
||||||
let availableLayers = state.availableLayers
|
let availableLayers = state.availableLayers;
|
||||||
let userdetails = state.osmConnection.userDetails
|
let userdetails = state.osmConnection.userDetails;
|
||||||
let currentViewLayer = layout.layers.find((l) => l.id === "current_view")
|
let currentViewLayer = layout.layers.find((l) => l.id === "current_view");
|
||||||
let rasterLayer: Store<RasterLayerPolygon> = state.mapProperties.rasterLayer
|
let rasterLayer: Store<RasterLayerPolygon> = state.mapProperties.rasterLayer;
|
||||||
let rasterLayerName =
|
let rasterLayerName =
|
||||||
rasterLayer.data?.properties?.name ?? AvailableRasterLayers.maptilerDefaultLayer.properties.name
|
rasterLayer.data?.properties?.name ?? AvailableRasterLayers.maptilerDefaultLayer.properties.name;
|
||||||
onDestroy(
|
onDestroy(
|
||||||
rasterLayer.addCallbackAndRunD((l) => {
|
rasterLayer.addCallbackAndRunD((l) => {
|
||||||
rasterLayerName = l.properties.name
|
rasterLayerName = l.properties.name;
|
||||||
})
|
})
|
||||||
)
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="absolute top-0 left-0 h-screen w-screen overflow-hidden">
|
<div class="absolute top-0 left-0 h-screen w-screen overflow-hidden">
|
||||||
|
@ -169,6 +168,13 @@
|
||||||
<div class="pointer-events-none absolute bottom-0 left-0 mb-4 w-screen">
|
<div class="pointer-events-none absolute bottom-0 left-0 mb-4 w-screen">
|
||||||
<!-- bottom controls -->
|
<!-- bottom controls -->
|
||||||
<div class="flex w-full items-end justify-between px-4">
|
<div class="flex w-full items-end justify-between px-4">
|
||||||
|
<div class="flex flex-col">
|
||||||
|
<span>
|
||||||
|
<button class="w-fit pointer-events-auto" on:click={() => {state.openNewDialog()}}>
|
||||||
|
<Tr t={Translations.t.general.add.title}/>
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
|
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<!-- bottom left elements -->
|
<!-- bottom left elements -->
|
||||||
<MapControlButton on:click={() => state.guistate.openFilterView()}>
|
<MapControlButton on:click={() => state.guistate.openFilterView()}>
|
||||||
|
@ -186,6 +192,7 @@
|
||||||
© OpenStreetMap, <span class="w-24">{rasterLayerName}</span>
|
© OpenStreetMap, <span class="w-24">{rasterLayerName}</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="flex flex-col items-end">
|
<div class="flex flex-col items-end">
|
||||||
<!-- bottom right elements -->
|
<!-- bottom right elements -->
|
||||||
|
@ -319,7 +326,7 @@
|
||||||
|
|
||||||
<ToSvelte construct={() => new CopyrightPanel(state)} slot="content3" />
|
<ToSvelte construct={() => new CopyrightPanel(state)} slot="content3" />
|
||||||
|
|
||||||
<div slot="title4" class="flex">
|
<div class="flex" slot="title4">
|
||||||
<ToSvelte construct={Svg.share_svg().SetClass("w-4 h-4")} />
|
<ToSvelte construct={Svg.share_svg().SetClass("w-4 h-4")} />
|
||||||
<Tr t={Translations.t.general.sharescreen.title} />
|
<Tr t={Translations.t.general.sharescreen.title} />
|
||||||
</div>
|
</div>
|
||||||
|
@ -347,7 +354,9 @@
|
||||||
|
|
||||||
<If condition={state.guistate.menuIsOpened}>
|
<If condition={state.guistate.menuIsOpened}>
|
||||||
<!-- Menu page -->
|
<!-- Menu page -->
|
||||||
<FloatOver>
|
<FloatOver on:close={() => {
|
||||||
|
selectedElement.setData(undefined)
|
||||||
|
}}>
|
||||||
<span slot="close-button"><!-- Hide the default close button --></span>
|
<span slot="close-button"><!-- Hide the default close button --></span>
|
||||||
<TabbedGroup tab={state.guistate.menuViewTabIndex}>
|
<TabbedGroup tab={state.guistate.menuViewTabIndex}>
|
||||||
<div slot="post-tablist">
|
<div slot="post-tablist">
|
||||||
|
|
Loading…
Add table
Reference in a new issue