[platform] get PointD from the GpsInfo to calc length between 2 gpsInfo pts

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2024-10-11 21:43:00 +04:00 committed by Viktor Havaka
parent 0a8e6ddcfe
commit a8077eb6a0

View file

@ -1,6 +1,7 @@
#pragma once
#include "geometry/point2d.hpp"
#include "geometry/mercator.hpp"
#include "base/base.hpp"
@ -60,6 +61,8 @@ namespace location
bool HasBearing() const { return m_bearing >= 0.0; }
bool HasSpeed() const { return m_speed >= 0.0; }
bool HasVerticalAccuracy() const { return m_verticalAccuracy >= 0.0; }
m2::PointD GetPoint() const { return mercator::FromLatLon(m_latitude, m_longitude); }
};
class CompassInfo