forked from organicmaps/organicmaps
Using GPS corrdinates to calulate moving from projection distance.
This commit is contained in:
parent
0c18178148
commit
4ef24c1559
1 changed files with 2 additions and 1 deletions
|
@ -195,7 +195,8 @@ RoutingSession::State RoutingSession::OnLocationPositionChanged(m2::PointD const
|
|||
{
|
||||
// Distance from the last known projection on route
|
||||
// (check if we are moving far from the last known projection).
|
||||
double const dist = MercatorBounds::DistanceOnEarth(m_route.GetFollowedPolyline().GetCurrentIter().m_pt, position);
|
||||
double const dist = MercatorBounds::DistanceOnEarth(m_route.GetFollowedPolyline().GetCurrentIter().m_pt,
|
||||
MercatorBounds::FromLatLon(info.m_latitude, info.m_longitude));
|
||||
if (my::AlmostEqualAbs(dist, m_lastDistance, kRunawayDistanceSensitivityMeters))
|
||||
return m_state;
|
||||
if (dist > m_lastDistance)
|
||||
|
|
Loading…
Add table
Reference in a new issue