aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/MapWidget.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qml/MapWidget.qml')
-rw-r--r--mobile-widgets/qml/MapWidget.qml5
1 files changed, 5 insertions, 0 deletions
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;
+ }
}
}