forked from organicmaps/organicmaps-tmp
Route no following in same cases fix.
This commit is contained in:
parent
3d8a1b8740
commit
63046840e2
1 changed files with 2 additions and 5 deletions
|
@ -221,11 +221,6 @@ RoutingSession::State RoutingSession::OnLocationPositionChanged(GpsInfo const &
|
|||
++m_moveAwayCounter;
|
||||
m_lastDistance = dist;
|
||||
}
|
||||
else
|
||||
{
|
||||
m_moveAwayCounter = 0;
|
||||
m_lastDistance = 0.0;
|
||||
}
|
||||
|
||||
if (m_moveAwayCounter > kOnRouteMissedCount)
|
||||
{
|
||||
|
@ -407,6 +402,7 @@ void RoutingSession::MatchLocationToRoute(location::GpsInfo & location,
|
|||
|
||||
bool RoutingSession::DisableFollowMode()
|
||||
{
|
||||
LOG(LINFO, ("Routing disables a following mode. State: ", m_state));
|
||||
if (m_state == RouteNotStarted || m_state == OnRoute)
|
||||
{
|
||||
m_state = RouteNoFollowing;
|
||||
|
@ -418,6 +414,7 @@ bool RoutingSession::DisableFollowMode()
|
|||
|
||||
bool RoutingSession::EnableFollowMode()
|
||||
{
|
||||
LOG(LINFO, ("Routing enables a following mode. State: ", m_state));
|
||||
if (m_state == RouteNotStarted || m_state == OnRoute)
|
||||
{
|
||||
m_state = OnRoute;
|
||||
|
|
Loading…
Add table
Reference in a new issue