From 3299ace3e60b30de073146eca980aaf40b81eecb Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Tue, 19 Sep 2023 09:56:01 +0200 Subject: [PATCH] Places: Also update map markers on idle #1187 #3657 Signed-off-by: Michael Mayer --- frontend/src/page/places.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/page/places.vue b/frontend/src/page/places.vue index 549103a95..a56803bcd 100644 --- a/frontend/src/page/places.vue +++ b/frontend/src/page/places.vue @@ -676,6 +676,7 @@ export default { this.map.on('move', this.updateMarkers); this.map.on('moveend', this.updateMarkers); this.map.on('resize', this.updateMarkers); + this.map.on('idle', this.updateMarkers); // Load pictures. this.search();