mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
2cb8fee827
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
23 lines
616 B
C++
23 lines
616 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include <QDebug>
|
|
#include "qmlmapwidgethelper.h"
|
|
|
|
#include "core/dive.h"
|
|
#include "core/divesite.h"
|
|
|
|
MapWidgetHelper::MapWidgetHelper(QObject *parent) : QObject(parent)
|
|
{
|
|
}
|
|
|
|
void MapWidgetHelper::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;
|
|
|
|
QMetaObject::invokeMethod(m_map, "centerOnCoordinates",
|
|
Q_ARG(QVariant, latitude),
|
|
Q_ARG(QVariant, longitude));
|
|
}
|