diff options
Diffstat (limited to 'map-widget')
-rw-r--r-- | map-widget/qml/MapWidget.qml | 2 | ||||
-rw-r--r-- | map-widget/qmlmapwidgethelper.cpp | 10 | ||||
-rw-r--r-- | map-widget/qmlmapwidgethelper.h | 3 |
3 files changed, 12 insertions, 3 deletions
diff --git a/map-widget/qml/MapWidget.qml b/map-widget/qml/MapWidget.qml index 2a3283482..c7904fc5f 100644 --- a/map-widget/qml/MapWidget.qml +++ b/map-widget/qml/MapWidget.qml @@ -72,7 +72,7 @@ Item { onDoubleClicked: map.doubleClickHandler(mapItem.coordinate) onReleased: { if (mapHelper.editMode && mapHelper.model.selectedUuid === model.uuid) { - mapHelper.updateCurrentDiveSiteCoordinates(mapHelper.model.selectedUuid, mapItem.coordinate) + mapHelper.updateCurrentDiveSiteCoordinatesFromMap(mapHelper.model.selectedUuid, mapItem.coordinate) } } } diff --git a/map-widget/qmlmapwidgethelper.cpp b/map-widget/qmlmapwidgethelper.cpp index 1c0469c4a..16f57c317 100644 --- a/map-widget/qmlmapwidgethelper.cpp +++ b/map-widget/qmlmapwidgethelper.cpp @@ -210,7 +210,7 @@ void MapWidgetHelper::copyToClipboardCoordinates(QGeoCoordinate coord, bool form prefs.coordinates_traditional = savep; } -void MapWidgetHelper::updateCurrentDiveSiteCoordinates(quint32 uuid, QGeoCoordinate coord) +void MapWidgetHelper::updateCurrentDiveSiteCoordinatesFromMap(quint32 uuid, QGeoCoordinate coord) { MapLocation *loc = m_mapLocationModel->getMapLocationForUuid(uuid); if (loc) @@ -220,6 +220,14 @@ void MapWidgetHelper::updateCurrentDiveSiteCoordinates(quint32 uuid, QGeoCoordin emit coordinatesChanged(); } +void MapWidgetHelper::updateCurrentDiveSiteCoordinatesToMap() +{ + const qreal latitude = displayed_dive_site.latitude.udeg * 0.000001; + const qreal longitude = displayed_dive_site.longitude.udeg * 0.000001; + QGeoCoordinate coord(latitude, longitude); + m_mapLocationModel->updateMapLocationCoordinates(displayed_dive_site.uuid, coord); +} + bool MapWidgetHelper::editMode() { return m_editMode; diff --git a/map-widget/qmlmapwidgethelper.h b/map-widget/qmlmapwidgethelper.h index 36d25d178..22388e237 100644 --- a/map-widget/qmlmapwidgethelper.h +++ b/map-widget/qmlmapwidgethelper.h @@ -24,8 +24,9 @@ public: void reloadMapLocations(); Q_INVOKABLE void copyToClipboardCoordinates(QGeoCoordinate coord, bool formatTraditional); Q_INVOKABLE void calculateSmallCircleRadius(QGeoCoordinate coord); - Q_INVOKABLE void updateCurrentDiveSiteCoordinates(quint32 uuid, QGeoCoordinate coord); + Q_INVOKABLE void updateCurrentDiveSiteCoordinatesFromMap(quint32 uuid, QGeoCoordinate coord); Q_INVOKABLE void selectVisibleLocations(); + void updateCurrentDiveSiteCoordinatesToMap(); bool editMode(); void setEditMode(bool editMode); QString pluginObject(); |