diff --git a/webapp/pages/map.vue b/webapp/pages/map.vue index 776287dee..b632eec96 100644 --- a/webapp/pages/map.vue +++ b/webapp/pages/map.vue @@ -78,7 +78,7 @@ export default { async mounted() { this.currentUserLocation = await this.getUserLocation(this.currentUser.id) this.currentUserCoordinates = this.currentUserLocation - ? [this.currentUserLocation.lng, this.currentUserLocation.lat] // Wolle: getCoordinates + ? this.getCoordinates(this.currentUserLocation) : null this.mapFlyToCenter() },