summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/MapWidget.qml
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2017-07-27 23:46:54 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-07-28 07:31:11 -0700
commitff4924f650361695587e750fc4c3713107b94cfa (patch)
tree313454c793e7be163c95700380d44f4fc28855fb /mobile-widgets/qml/MapWidget.qml
parentf6e269c07a163c7c53e7d1cb405e39b51322b062 (diff)
downloadsubsurface-ff4924f650361695587e750fc4c3713107b94cfa.tar.gz
mapwidgethelper: change centerOnDiveSite()
Call setSelectedUuid() from C++ also center on coodinates instead on a MapLocation, as there is no point to pass the MapLocation object back to QML. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'mobile-widgets/qml/MapWidget.qml')
-rw-r--r--mobile-widgets/qml/MapWidget.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/mobile-widgets/qml/MapWidget.qml b/mobile-widgets/qml/MapWidget.qml
index 128423285..685bc0dc6 100644
--- a/mobile-widgets/qml/MapWidget.qml
+++ b/mobile-widgets/qml/MapWidget.qml
@@ -153,9 +153,8 @@ Item {
mapAnimationZoomOut.restart()
}
- function centerOnMapLocation(mapLocation) {
- mapHelper.model.setSelectedUuid(mapLocation.uuid, false)
- animateMapZoomIn(mapLocation.coordinate)
+ function centerOnCoordinate(coord) {
+ animateMapZoomIn(coord)
}
function deselectMapLocation() {