2022-12-16 13:45:07 +01:00
|
|
|
import { Store, UIEventSource } from "../../Logic/UIEventSource"
|
2022-04-30 00:41:33 +02:00
|
|
|
import LayerConfig from "../../Models/ThemeConfig/LayerConfig"
|
2022-12-16 13:45:07 +01:00
|
|
|
import { ShowDataLayerOptions } from "./ShowDataLayerOptions"
|
|
|
|
import { ElementStorage } from "../../Logic/ElementStorage"
|
2022-04-30 00:41:33 +02:00
|
|
|
import RenderingMultiPlexerFeatureSource from "../../Logic/FeatureSource/Sources/RenderingMultiPlexerFeatureSource"
|
|
|
|
import ScrollableFullScreen from "../Base/ScrollableFullScreen"
|
2023-01-04 17:41:11 +01:00
|
|
|
import { LeafletMouseEvent, PathOptions } from "leaflet"
|
2022-12-16 13:45:07 +01:00
|
|
|
import Hash from "../../Logic/Web/Hash"
|
2023-01-04 17:41:11 +01:00
|
|
|
import { BBox } from "../../Logic/BBox"
|
|
|
|
import { Utils } from "../../Utils"
|
2022-04-30 00:41:33 +02:00
|
|
|
/*
|
2022-12-08 02:56:49 +01:00
|
|
|
// import 'leaflet-polylineoffset';
|
2022-04-30 00:41:33 +02:00
|
|
|
We don't actually import it here. It is imported in the 'MinimapImplementation'-class, which'll result in a patched 'L' object.
|
|
|
|
Even though actually importing this here would seem cleaner, we don't do this as this breaks some scripts:
|
|
|
|
- Scripts are ran in ts-node
|
|
|
|
- ts-node doesn't define the 'window'-object
|
|
|
|
- Importing this will execute some code which needs the window object
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The data layer shows all the given geojson elements with the appropriate icon etc
|
|
|
|
*/
|
|
|
|
export default class ShowDataLayerImplementation {
|
|
|
|
private static dataLayerIds = 0
|
2022-07-08 03:14:55 +02:00
|
|
|
private readonly _leafletMap: Store<L.Map>
|
2022-04-30 00:41:33 +02:00
|
|
|
private readonly _enablePopups: boolean
|
|
|
|
private readonly _features: RenderingMultiPlexerFeatureSource
|
|
|
|
private readonly _layerToShow: LayerConfig
|
|
|
|
private readonly _selectedElement: UIEventSource<any>
|
|
|
|
private readonly allElements: ElementStorage
|
|
|
|
// Used to generate a fresh ID when needed
|
|
|
|
private _cleanCount = 0
|
|
|
|
private geoLayer = undefined
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A collection of functions to call when the current geolayer is unregistered
|
|
|
|
*/
|
|
|
|
private unregister: (() => void)[] = []
|
|
|
|
private isDirty = false
|
|
|
|
/**
|
|
|
|
* If the selected element triggers, this is used to lookup the correct layer and to open the popup
|
|
|
|
* Used to avoid a lot of callbacks on the selected element
|
|
|
|
*
|
|
|
|
* Note: the key of this dictionary is 'feature.properties.id+features.geometry.type' as one feature might have multiple presentations
|
|
|
|
* @private
|
|
|
|
*/
|
2022-12-16 13:45:07 +01:00
|
|
|
private readonly leafletLayersPerId = new Map<
|
|
|
|
string,
|
|
|
|
{ feature: any; activateFunc: (event: LeafletMouseEvent) => void }
|
|
|
|
>()
|
2023-01-04 17:41:11 +01:00
|
|
|
|
2022-04-30 00:41:33 +02:00
|
|
|
private readonly showDataLayerid: number
|
|
|
|
private readonly createPopup: (
|
|
|
|
tags: UIEventSource<any>,
|
|
|
|
layer: LayerConfig
|
|
|
|
) => ScrollableFullScreen
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a datalayer.
|
|
|
|
*
|
|
|
|
* If 'createPopup' is set, this function is called every time that 'popupOpen' is called
|
|
|
|
* @param options
|
|
|
|
*/
|
|
|
|
constructor(options: ShowDataLayerOptions & { layerToShow: LayerConfig }) {
|
|
|
|
this._leafletMap = options.leafletMap
|
|
|
|
this.showDataLayerid = ShowDataLayerImplementation.dataLayerIds
|
|
|
|
ShowDataLayerImplementation.dataLayerIds++
|
|
|
|
if (options.features === undefined) {
|
|
|
|
console.error("Invalid ShowDataLayer invocation: options.features is undefed")
|
|
|
|
throw "Invalid ShowDataLayer invocation: options.features is undefed"
|
|
|
|
}
|
|
|
|
this._features = new RenderingMultiPlexerFeatureSource(
|
|
|
|
options.features,
|
|
|
|
options.layerToShow
|
2022-09-08 21:40:48 +02:00
|
|
|
)
|
2022-04-30 00:41:33 +02:00
|
|
|
this._layerToShow = options.layerToShow
|
|
|
|
this._selectedElement = options.selectedElement
|
|
|
|
this.allElements = options.state?.allElements
|
|
|
|
this.createPopup = undefined
|
|
|
|
this._enablePopups = options.popup !== undefined
|
|
|
|
if (options.popup !== undefined) {
|
|
|
|
this.createPopup = options.popup
|
|
|
|
}
|
|
|
|
const self = this
|
|
|
|
|
2023-01-04 17:41:11 +01:00
|
|
|
options.leafletMap.addCallback(() => {
|
2022-04-30 00:41:33 +02:00
|
|
|
return self.update(options)
|
|
|
|
})
|
|
|
|
|
|
|
|
this._features.features.addCallback((_) => self.update(options))
|
|
|
|
options.doShowLayer?.addCallback((doShow) => {
|
|
|
|
const mp = options.leafletMap.data
|
|
|
|
if (mp === null) {
|
|
|
|
self.Destroy()
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if (mp == undefined) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (doShow) {
|
|
|
|
if (self.isDirty) {
|
|
|
|
return self.update(options)
|
|
|
|
} else {
|
|
|
|
mp.addLayer(this.geoLayer)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (this.geoLayer !== undefined) {
|
|
|
|
mp.removeLayer(this.geoLayer)
|
|
|
|
this.unregister.forEach((f) => f())
|
|
|
|
this.unregister = []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
this._selectedElement?.addCallbackAndRunD((selected) => {
|
2023-01-04 18:52:49 +01:00
|
|
|
if (selected === undefined) {
|
|
|
|
ScrollableFullScreen.collapse()
|
|
|
|
return
|
|
|
|
}
|
2022-04-30 00:41:33 +02:00
|
|
|
self.openPopupOfSelectedElement(selected)
|
|
|
|
})
|
|
|
|
|
|
|
|
this.update(options)
|
|
|
|
}
|
|
|
|
|
|
|
|
private Destroy() {
|
|
|
|
this.unregister.forEach((f) => f())
|
|
|
|
}
|
|
|
|
|
|
|
|
private openPopupOfSelectedElement(selected) {
|
|
|
|
if (selected === undefined) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (this._leafletMap.data === undefined) {
|
|
|
|
return
|
|
|
|
}
|
2023-02-09 16:05:37 +01:00
|
|
|
const v = this.leafletLayersPerId.get(selected.properties.id)
|
2022-04-30 00:41:33 +02:00
|
|
|
if (v === undefined) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const feature = v.feature
|
|
|
|
if (selected.properties.id !== feature.properties.id) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (feature.id !== feature.properties.id) {
|
|
|
|
// Probably a feature which has renamed
|
|
|
|
// the feature might have as id 'node/-1' and as 'feature.properties.id' = 'the newly assigned id'. That is no good too
|
|
|
|
console.log("Not opening the popup for", feature, "as probably renamed")
|
|
|
|
return
|
|
|
|
}
|
2022-12-08 02:56:49 +01:00
|
|
|
v.activateFunc(null)
|
2022-04-30 00:41:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private update(options: ShowDataLayerOptions): boolean {
|
|
|
|
if (this._features.features.data === undefined) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.isDirty = true
|
|
|
|
if (options?.doShowLayer?.data === false) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const mp = options.leafletMap.data
|
|
|
|
|
|
|
|
if (mp === null) {
|
|
|
|
return true // Unregister as the map has been destroyed
|
|
|
|
}
|
|
|
|
if (mp === undefined) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this._cleanCount++
|
|
|
|
// clean all the old stuff away, if any
|
|
|
|
if (this.geoLayer !== undefined) {
|
|
|
|
mp.removeLayer(this.geoLayer)
|
|
|
|
}
|
|
|
|
|
|
|
|
const self = this
|
2023-01-04 17:41:11 +01:00
|
|
|
|
|
|
|
this.geoLayer = new L.LayerGroup()
|
2022-04-30 00:41:33 +02:00
|
|
|
|
|
|
|
const selfLayer = this.geoLayer
|
|
|
|
const allFeats = this._features.features.data
|
|
|
|
for (const feat of allFeats) {
|
|
|
|
if (feat === undefined) {
|
|
|
|
continue
|
|
|
|
}
|
2023-01-04 17:41:11 +01:00
|
|
|
|
|
|
|
// Why not one geojson layer with _all_ features, and attaching a right-click onto every feature individually?
|
|
|
|
// Because that somehow doesn't work :(
|
|
|
|
const feature = feat
|
|
|
|
const geojsonLayer = L.geoJSON(feature, {
|
|
|
|
style: (feature) => <PathOptions>self.createStyleFor(feature),
|
|
|
|
pointToLayer: (feature, latLng) => self.pointToLayer(feature, latLng),
|
|
|
|
onEachFeature: (feature, leafletLayer) =>
|
|
|
|
self.postProcessFeature(feature, leafletLayer),
|
|
|
|
})
|
|
|
|
if (feature.geometry.type === "Point") {
|
|
|
|
geojsonLayer.on({
|
|
|
|
contextmenu: (e) => {
|
|
|
|
const o = self.leafletLayersPerId.get(feature?.properties?.id)
|
|
|
|
o?.activateFunc(<LeafletMouseEvent>e)
|
|
|
|
Utils.preventDefaultOnMouseEvent(e.originalEvent)
|
|
|
|
},
|
|
|
|
dblclick: (e) => {
|
|
|
|
const o = self.leafletLayersPerId.get(feature?.properties?.id)
|
|
|
|
o?.activateFunc(<LeafletMouseEvent>e)
|
|
|
|
Utils.preventDefaultOnMouseEvent(e.originalEvent)
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
this.geoLayer.addLayer(geojsonLayer)
|
2022-04-30 00:41:33 +02:00
|
|
|
try {
|
|
|
|
if (feat.geometry.type === "LineString") {
|
|
|
|
const coords = L.GeoJSON.coordsToLatLngs(feat.geometry.coordinates)
|
|
|
|
const tagsSource =
|
|
|
|
this.allElements?.addOrGetElement(feat) ??
|
|
|
|
new UIEventSource<any>(feat.properties)
|
|
|
|
let offsettedLine
|
|
|
|
tagsSource
|
2022-06-05 02:24:14 +02:00
|
|
|
.map((tags) =>
|
|
|
|
this._layerToShow.lineRendering[
|
|
|
|
feat.lineRenderingIndex
|
|
|
|
].GenerateLeafletStyle(tags)
|
2022-09-08 21:40:48 +02:00
|
|
|
)
|
2022-04-30 00:41:33 +02:00
|
|
|
.withEqualityStabilized((a, b) => {
|
|
|
|
if (a === b) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if (a === undefined || b === undefined) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
a.offset === b.offset &&
|
|
|
|
a.color === b.color &&
|
|
|
|
a.weight === b.weight &&
|
|
|
|
a.dashArray === b.dashArray
|
2022-09-08 21:40:48 +02:00
|
|
|
)
|
2022-04-30 00:41:33 +02:00
|
|
|
})
|
|
|
|
.addCallbackAndRunD((lineStyle) => {
|
|
|
|
if (offsettedLine !== undefined) {
|
|
|
|
self.geoLayer.removeLayer(offsettedLine)
|
|
|
|
}
|
|
|
|
// @ts-ignore
|
|
|
|
offsettedLine = L.polyline(coords, lineStyle)
|
|
|
|
this.postProcessFeature(feat, offsettedLine)
|
|
|
|
offsettedLine.addTo(this.geoLayer)
|
|
|
|
|
|
|
|
// If 'self.geoLayer' is not the same as the layer the feature is added to, we can safely remove this callback
|
|
|
|
return self.geoLayer !== selfLayer
|
|
|
|
})
|
|
|
|
} else {
|
2023-01-04 17:41:11 +01:00
|
|
|
geojsonLayer.addData(feat)
|
2022-04-30 00:41:33 +02:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.error(
|
|
|
|
"Could not add ",
|
|
|
|
feat,
|
|
|
|
"to the geojson layer in leaflet due to",
|
|
|
|
e,
|
|
|
|
e.stack
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-04 17:41:11 +01:00
|
|
|
if ((options.zoomToFeatures ?? false) && allFeats.length > 0) {
|
|
|
|
let bound = undefined
|
|
|
|
for (const feat of allFeats) {
|
|
|
|
const fbound = BBox.get(feat)
|
|
|
|
bound = bound?.unionWith(fbound) ?? fbound
|
|
|
|
}
|
|
|
|
if (bound !== undefined) {
|
|
|
|
mp.fitBounds(bound?.toLeaflet(), { animate: false })
|
2022-04-30 00:41:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.doShowLayer?.data ?? true) {
|
|
|
|
mp.addLayer(this.geoLayer)
|
|
|
|
}
|
|
|
|
this.isDirty = false
|
|
|
|
this.openPopupOfSelectedElement(this._selectedElement?.data)
|
|
|
|
}
|
|
|
|
|
|
|
|
private createStyleFor(feature) {
|
|
|
|
const tagsSource =
|
|
|
|
this.allElements?.addOrGetElement(feature) ?? new UIEventSource<any>(feature.properties)
|
|
|
|
// Every object is tied to exactly one layer
|
|
|
|
const layer = this._layerToShow
|
|
|
|
|
|
|
|
const pointRenderingIndex = feature.pointRenderingIndex
|
|
|
|
const lineRenderingIndex = feature.lineRenderingIndex
|
|
|
|
|
|
|
|
if (pointRenderingIndex !== undefined) {
|
|
|
|
const style = layer.mapRendering[pointRenderingIndex].GenerateLeafletStyle(
|
|
|
|
tagsSource,
|
|
|
|
this._enablePopups
|
|
|
|
)
|
|
|
|
return {
|
|
|
|
icon: style,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (lineRenderingIndex !== undefined) {
|
|
|
|
return layer.lineRendering[lineRenderingIndex].GenerateLeafletStyle(tagsSource.data)
|
|
|
|
}
|
|
|
|
|
|
|
|
throw "Neither lineRendering nor mapRendering defined for " + feature
|
|
|
|
}
|
|
|
|
|
|
|
|
private pointToLayer(feature, latLng): L.Layer {
|
|
|
|
// Leaflet cannot handle geojson points natively
|
|
|
|
// We have to convert them to the appropriate icon
|
|
|
|
// Click handling is done in the next step
|
|
|
|
const layer: LayerConfig = this._layerToShow
|
|
|
|
if (layer === undefined) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let tagSource =
|
|
|
|
this.allElements?.getEventSourceById(feature.properties.id) ??
|
|
|
|
new UIEventSource<any>(feature.properties)
|
|
|
|
const clickable =
|
|
|
|
!(layer.title === undefined && (layer.tagRenderings ?? []).length === 0) &&
|
|
|
|
this._enablePopups
|
|
|
|
let style: any = layer.mapRendering[feature.pointRenderingIndex].GenerateLeafletStyle(
|
|
|
|
tagSource,
|
|
|
|
clickable
|
2022-09-08 21:40:48 +02:00
|
|
|
)
|
2022-04-30 00:41:33 +02:00
|
|
|
const baseElement = style.html
|
|
|
|
if (!this._enablePopups) {
|
|
|
|
baseElement.SetStyle("cursor: initial !important")
|
|
|
|
}
|
|
|
|
style.html = style.html.ConstructElement()
|
|
|
|
return L.marker(latLng, {
|
|
|
|
icon: L.divIcon(style),
|
|
|
|
})
|
|
|
|
}
|
2023-02-09 16:05:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a function which, for the given feature, will open the featureInfoBox (and lazyly create it)
|
|
|
|
* This function is cached
|
|
|
|
* @param feature
|
|
|
|
* @param key
|
|
|
|
* @param layer
|
|
|
|
* @private
|
|
|
|
*/
|
2023-01-04 17:41:11 +01:00
|
|
|
private createActivateFunction(feature, key: string, layer: LayerConfig): (event) => void {
|
2023-02-09 16:05:37 +01:00
|
|
|
if (this.leafletLayersPerId.has(key)) {
|
|
|
|
return this.leafletLayersPerId.get(key).activateFunc
|
|
|
|
}
|
|
|
|
|
2022-04-30 00:41:33 +02:00
|
|
|
let infobox: ScrollableFullScreen = undefined
|
2022-12-08 02:56:49 +01:00
|
|
|
const self = this
|
|
|
|
|
2022-12-16 13:45:07 +01:00
|
|
|
function activate(event: LeafletMouseEvent) {
|
2023-01-13 03:49:22 +01:00
|
|
|
Utils.preventDefaultOnMouseEvent(event)
|
2022-04-30 00:41:33 +02:00
|
|
|
if (infobox === undefined) {
|
|
|
|
const tags =
|
2022-12-08 02:56:49 +01:00
|
|
|
self.allElements?.getEventSourceById(key) ??
|
2022-04-30 00:41:33 +02:00
|
|
|
new UIEventSource<any>(feature.properties)
|
2022-12-08 02:56:49 +01:00
|
|
|
infobox = self.createPopup(tags, layer)
|
2022-04-30 00:41:33 +02:00
|
|
|
|
2022-12-08 02:56:49 +01:00
|
|
|
self.unregister.push(() => {
|
|
|
|
console.log("Destroying infobox")
|
|
|
|
infobox.Destroy()
|
2022-04-30 00:41:33 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
infobox.Activate()
|
2022-12-16 13:45:07 +01:00
|
|
|
self._selectedElement.setData(
|
|
|
|
self.allElements.ContainingFeatures.get(feature.id) ?? feature
|
|
|
|
)
|
2023-01-04 17:41:11 +01:00
|
|
|
}
|
|
|
|
return activate
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Post processing - basically adding the popup
|
|
|
|
* @param feature
|
|
|
|
* @param leafletLayer
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
private postProcessFeature(feature, leafletLayer: L.Evented) {
|
|
|
|
const layer: LayerConfig = this._layerToShow
|
|
|
|
if (layer.title === undefined || !this._enablePopups) {
|
|
|
|
// No popup action defined -> Don't do anything
|
|
|
|
// or probably a map in the popup - no popups needed!
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const key = feature.properties.id
|
2023-02-09 16:05:37 +01:00
|
|
|
const activate = this.createActivateFunction(feature, key, layer)
|
2022-12-08 02:56:49 +01:00
|
|
|
|
2023-01-04 17:41:11 +01:00
|
|
|
// We also have to open on rightclick, doubleclick, ... as users sometimes do this. See #1219
|
|
|
|
leafletLayer.on({
|
|
|
|
dblclick: activate,
|
|
|
|
contextmenu: activate,
|
2023-01-13 03:49:22 +01:00
|
|
|
// click: activate,
|
2023-01-04 17:41:11 +01:00
|
|
|
})
|
2023-01-13 03:49:22 +01:00
|
|
|
leafletLayer.addEventListener("click", activate)
|
2022-04-30 00:41:33 +02:00
|
|
|
// Add the feature to the index to open the popup when needed
|
2022-12-08 02:56:49 +01:00
|
|
|
this.leafletLayersPerId.set(key, {
|
2022-04-30 00:41:33 +02:00
|
|
|
feature: feature,
|
2022-12-08 02:56:49 +01:00
|
|
|
activateFunc: activate,
|
2022-04-30 00:41:33 +02:00
|
|
|
})
|
2022-12-16 13:45:07 +01:00
|
|
|
if (Hash.hash.data === key) {
|
2022-12-08 02:56:49 +01:00
|
|
|
activate(null)
|
|
|
|
}
|
2022-04-30 00:41:33 +02:00
|
|
|
}
|
|
|
|
}
|