forked from organicmaps/organicmaps-tmp
[android] Fixed bug with finished routing.
This commit is contained in:
parent
bb29d142b4
commit
44aab4d12b
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ public:
|
|||
|
||||
m2::PointD GetEndPoint() const { return m_endPoint; }
|
||||
bool IsActive() const { return (m_state != RoutingNotActive); }
|
||||
bool IsNavigable() const { return (m_state == RouteNotStarted || m_state == OnRoute); }
|
||||
bool IsNavigable() const { return (m_state == RouteNotStarted || m_state == OnRoute || m_state == RouteFinished); }
|
||||
bool IsBuilt() const { return (IsNavigable() || m_state == RouteNeedRebuild || m_state == RouteFinished); }
|
||||
bool IsBuilding() const { return (m_state == RouteBuilding); }
|
||||
bool IsOnRoute() const { return (m_state == OnRoute); }
|
||||
|
|
Loading…
Add table
Reference in a new issue