From 5f2e60142a1c8717a612744ab82f7f8f5c6a3713 Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Mon, 17 Jul 2017 00:25:19 +0300 Subject: mapwidget.qml: add the function centerOnCoordinates() This function can be called to center the map on a specific coordinates. For the C++ version call it via QMetaObject::invokeMethod() in centerOnDiveSite(). TODO: add QML property animations. Signed-off-by: Lubomir I. Ivanov --- mobile-widgets/qml/MapWidget.qml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'mobile-widgets/qml') diff --git a/mobile-widgets/qml/MapWidget.qml b/mobile-widgets/qml/MapWidget.qml index 60f67d162..06280bbbf 100644 --- a/mobile-widgets/qml/MapWidget.qml +++ b/mobile-widgets/qml/MapWidget.qml @@ -26,5 +26,10 @@ Item { Component.onCompleted: { map.activeMapType = map.supportedMapTypes[esriMapTypeIndexes.SATELLITE]; } + + function centerOnCoordinates(latitude, longitude) { + map.center = QtPositioning.coordinate(latitude, longitude); + map.zoomLevel = map.maximumZoomLevel * 0.9; + } } } -- cgit v1.2.3-70-g09d2