forked from organicmaps/organicmaps
[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:
parent
0a8e6ddcfe
commit
a8077eb6a0
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue