Removing initial map flickering

This commit is contained in:
2026-05-03 14:39:40 +02:00
parent 87286dc8fd
commit 36aa480205
3 changed files with 65 additions and 64 deletions

View File

@@ -127,10 +127,10 @@
executeMainAction() {
switch(this.options.type) {
case 'message':
return this.panMapToMarker(0);
return this.openMarkerPopup(false);
case 'media':
this.$refs.medialink.openMedia();
if(this.lngLat) return this.panMapToMarker(0);
if(this.lngLat) return this.openMarkerPopup(false);
default:
return Promise.resolve();
}