From 23c56b3c314ef5601e4ba7670ddd2285cb44c303 Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Thu, 20 Jul 2017 00:29:42 +0300 Subject: [PATCH] mapwidget.qml: add deselectMapLocation() When called this function will zoom-out the map and set it's center to (0, 0) Signed-off-by: Lubomir I. Ivanov --- mobile-widgets/qml/MapWidget.qml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mobile-widgets/qml/MapWidget.qml b/mobile-widgets/qml/MapWidget.qml index 99cb7bf48..2d6319dd6 100644 --- a/mobile-widgets/qml/MapWidget.qml +++ b/mobile-widgets/qml/MapWidget.qml @@ -95,8 +95,13 @@ Item { function centerOnMapLocation(mapLocation) { zoomLevel = defaultZoomOut - animateMapTo(mapLocation.coordinate, defaultZoomIn); + animateMapTo(mapLocation.coordinate, defaultZoomIn) mapHelper.model.selectedUuid = mapLocation.uuid } + + function deselectMapLocation() { + mapHelper.model.selectedUuid = 0 + animateMapTo(defaultCenter, defaultZoomOut) + } } }