Fixed opening of popups
This commit is contained in:
parent
bc1863dcb6
commit
770c8d1dde
4 changed files with 25 additions and 24 deletions
|
@ -15,6 +15,12 @@ export class GeoOperations {
|
||||||
return newFeature;
|
return newFeature;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static centerpointCoordinates(feature: any){
|
||||||
|
const coordinates = turf.center(feature).geometry.coordinates;
|
||||||
|
coordinates.reverse();
|
||||||
|
return coordinates;
|
||||||
|
}
|
||||||
|
|
||||||
static featureIsContainedInAny(feature: any,
|
static featureIsContainedInAny(feature: any,
|
||||||
shouldNotContain: any[],
|
shouldNotContain: any[],
|
||||||
maxOverlapPercentage: number): boolean {
|
maxOverlapPercentage: number): boolean {
|
||||||
|
|
|
@ -12,7 +12,7 @@ export default class Attribution extends Combine {
|
||||||
Translations.W((license ?? "") === "undefined" ? "CC0" : (license ?? ""))
|
Translations.W((license ?? "") === "undefined" ? "CC0" : (license ?? ""))
|
||||||
]).SetClass("flex flex-col")
|
]).SetClass("flex flex-col")
|
||||||
]);
|
]);
|
||||||
this.SetClass("flex flex-row bg-black text-white text-sm absolute bottom-0 left-0 p-0.5 rounded");
|
this.SetClass("flex flex-row bg-black text-white text-sm absolute bottom-0 left-0 p-0.5 pl-5 pr-3 rounded-lg");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -54,7 +54,6 @@ export class MapillaryImage extends UIElement {
|
||||||
return new Combine([
|
return new Combine([
|
||||||
image,
|
image,
|
||||||
new Attribution(meta.artist, meta.license, Svg.mapillary_svg())
|
new Attribution(meta.artist, meta.license, Svg.mapillary_svg())
|
||||||
|
|
||||||
]).SetClass("relative block").Render();
|
]).SetClass("relative block").Render();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,7 @@ import LazyElement from "./Base/LazyElement";
|
||||||
import FeatureInfoBox from "./Popup/FeatureInfoBox";
|
import FeatureInfoBox from "./Popup/FeatureInfoBox";
|
||||||
import LayoutConfig from "../Customizations/JSON/LayoutConfig";
|
import LayoutConfig from "../Customizations/JSON/LayoutConfig";
|
||||||
import ScrollableFullScreen from "./Base/ScrollableFullScreen";
|
import ScrollableFullScreen from "./Base/ScrollableFullScreen";
|
||||||
|
import {GeoOperations} from "../Logic/GeoOperations";
|
||||||
|
|
||||||
|
|
||||||
export default class ShowDataLayer {
|
export default class ShowDataLayer {
|
||||||
|
@ -53,14 +54,10 @@ export default class ShowDataLayer {
|
||||||
}
|
}
|
||||||
|
|
||||||
const allFeats = features.data.map(ff => ff.feature);
|
const allFeats = features.data.map(ff => ff.feature);
|
||||||
console.log("AllFeats contain ", allFeats.length)
|
|
||||||
geoLayer = self.CreateGeojsonLayer();
|
geoLayer = self.CreateGeojsonLayer();
|
||||||
let i = 0;
|
|
||||||
for (const feat of allFeats) {
|
for (const feat of allFeats) {
|
||||||
const key = feat.geometry.type + feat.properties.id + feat.layer;
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
geoLayer.addData(feat);
|
geoLayer.addData(feat);
|
||||||
i++;
|
|
||||||
}
|
}
|
||||||
if (layoutToUse.data.clustering.minNeededElements <= allFeats.length) {
|
if (layoutToUse.data.clustering.minNeededElements <= allFeats.length) {
|
||||||
// Activate clustering if it wasn't already activated
|
// Activate clustering if it wasn't already activated
|
||||||
|
@ -68,11 +65,11 @@ export default class ShowDataLayer {
|
||||||
cluster = cl.markerClusterGroup({disableClusteringAtZoom: layoutToUse.data.clustering.maxZoom});
|
cluster = cl.markerClusterGroup({disableClusteringAtZoom: layoutToUse.data.clustering.maxZoom});
|
||||||
cluster.addLayer(geoLayer);
|
cluster.addLayer(geoLayer);
|
||||||
mp.addLayer(cluster);
|
mp.addLayer(cluster);
|
||||||
console.log("Added cluster", i)
|
|
||||||
} else {
|
} else {
|
||||||
mp.addLayer(geoLayer)
|
mp.addLayer(geoLayer)
|
||||||
console.log("Added geoLayer", i)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
State.state.selectedElement.ping();
|
||||||
}
|
}
|
||||||
|
|
||||||
features.addCallback(() => update());
|
features.addCallback(() => update());
|
||||||
|
@ -125,8 +122,6 @@ export default class ShowDataLayer {
|
||||||
closeButton: false
|
closeButton: false
|
||||||
}, leafletLayer);
|
}, leafletLayer);
|
||||||
|
|
||||||
let isOpen = false;
|
|
||||||
|
|
||||||
const tags = State.state.allElements.getEventSourceFor(feature);
|
const tags = State.state.allElements.getEventSourceFor(feature);
|
||||||
const uiElement = new LazyElement(() =>
|
const uiElement = new LazyElement(() =>
|
||||||
FeatureInfoBox.construct(tags, layer, () => {
|
FeatureInfoBox.construct(tags, layer, () => {
|
||||||
|
@ -138,14 +133,7 @@ export default class ShowDataLayer {
|
||||||
"<div style='height: 90vh'>Rendering</div>"); // By setting 90vh, leaflet will attempt to fit the entire screen and move the feature down
|
"<div style='height: 90vh'>Rendering</div>"); // By setting 90vh, leaflet will attempt to fit the entire screen and move the feature down
|
||||||
popup.setContent(uiElement.Render());
|
popup.setContent(uiElement.Render());
|
||||||
popup.on('remove', () => {
|
popup.on('remove', () => {
|
||||||
if (!isOpen) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
console.log("Closing popup...")
|
|
||||||
isOpen = false;
|
|
||||||
ScrollableFullScreen.RestoreLeaflet(); // Just in case...
|
ScrollableFullScreen.RestoreLeaflet(); // Just in case...
|
||||||
State.state.selectedElement.setData(undefined);
|
|
||||||
|
|
||||||
});
|
});
|
||||||
leafletLayer.bindPopup(popup);
|
leafletLayer.bindPopup(popup);
|
||||||
// We first render the UIelement (which'll still need an update later on...)
|
// We first render the UIelement (which'll still need an update later on...)
|
||||||
|
@ -153,26 +141,34 @@ export default class ShowDataLayer {
|
||||||
|
|
||||||
|
|
||||||
leafletLayer.on("popupopen", () => {
|
leafletLayer.on("popupopen", () => {
|
||||||
isOpen = true;
|
|
||||||
State.state.selectedElement.setData(feature);
|
State.state.selectedElement.setData(feature);
|
||||||
uiElement.Activate();
|
uiElement.Activate();
|
||||||
})
|
})
|
||||||
|
|
||||||
State.state.selectedElement.addCallbackAndRun(selected => {
|
State.state.selectedElement.addCallbackAndRun(selected => {
|
||||||
|
if(selected !== undefined && feature.properties.id === selected.properties.id){
|
||||||
|
console.log("Currently selected feature:", selected, "feature is",feature, "is same?", selected == feature)
|
||||||
|
}
|
||||||
|
|
||||||
if (selected === undefined) {
|
if (selected === undefined) {
|
||||||
if (popup.isOpen() && isOpen) {
|
if (popup.isOpen()) {
|
||||||
popup.remove();
|
popup.remove();
|
||||||
}
|
}
|
||||||
} else if (selected == feature && selected.geometry.type == feature.geometry.type) {
|
} else if (selected == feature && selected.geometry.type === feature.geometry.type) {
|
||||||
|
console.log("Found the popup to open!")
|
||||||
// If wayhandling introduces a centerpoint and an area, this code might become unstable:
|
// If wayhandling introduces a centerpoint and an area, this code might become unstable:
|
||||||
// The popup for the centerpoint would open, a bit later the area would close the first popup and open it's own
|
// The popup for the centerpoint would open, a bit later the area would close the first popup and open it's own
|
||||||
// In the process, the 'selectedElement' is set to undefined and to the other feature again, causing an infinite loop
|
// In the process, the 'selectedElement' is set to undefined and to the other feature again, causing an infinite loop
|
||||||
|
|
||||||
// This is why we check for the geometry-type too
|
// This is why we check for the geometry-type too
|
||||||
|
|
||||||
if (!popup.isOpen() && !isOpen) {
|
const mp = this._leafletMap.data;
|
||||||
isOpen = true;
|
if (!popup.isOpen() && mp !== undefined) {
|
||||||
leafletLayer.openPopup();
|
var centerpoint = GeoOperations.centerpointCoordinates(feature);
|
||||||
|
console.log("centerpoint:", centerpoint,"of",feature)
|
||||||
|
popup
|
||||||
|
.setLatLng(GeoOperations.centerpointCoordinates(feature))
|
||||||
|
.openOn(mp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue