mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
qmlmapwidgethelper: add the centerOnDiveSite() method
MapWidget sould not handle any of the map backend. Instead it should just pass calls to MapWidgetHelper. Do that for centerOnDiveSite(). Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
parent
c68536ec56
commit
5cc2c02dfb
3 changed files with 17 additions and 7 deletions
|
|
@ -23,13 +23,7 @@ MapWidget::MapWidget(QWidget *parent) : QQuickWidget(parent)
|
|||
|
||||
void MapWidget::centerOnDiveSite(struct dive_site *ds)
|
||||
{
|
||||
if (!dive_site_has_gps_location(ds))
|
||||
return;
|
||||
|
||||
qreal longitude = ds->longitude.udeg / 1000000.0;
|
||||
qreal latitude = ds->latitude.udeg / 1000000.0;
|
||||
|
||||
qDebug() << longitude << latitude;
|
||||
m_mapHelper->centerOnDiveSite(ds);
|
||||
}
|
||||
|
||||
void MapWidget::centerOnIndex(const QModelIndex& idx)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue