From 30f8573dfc185f67b8c0f6d4fe0fa66d1986113c Mon Sep 17 00:00:00 2001 From: Volker Krause Date: Sat, 17 Jun 2023 14:48:06 +0200 Subject: [PATCH] Show live location shares on the room map as well --- src/qml/Component/LocationPage.qml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/qml/Component/LocationPage.qml b/src/qml/Component/LocationPage.qml index e5724cdd2..627a2b490 100644 --- a/src/qml/Component/LocationPage.qml +++ b/src/qml/Component/LocationPage.qml @@ -31,5 +31,12 @@ Kirigami.Page { isLive: true } } + + MapItemView { + model: LiveLocationsModel { + room: locationsPage.room + } + delegate: LocationMapItem {} + } } }