forked from organicmaps/organicmaps
[fix] [ios] Added handler for build route cancellation.
This commit is contained in:
parent
13d3fdd8d0
commit
06ea0e6abe
2 changed files with 3 additions and 4 deletions
|
@ -474,7 +474,9 @@ m2::PointD getMercator(MWMRoutePoint * p)
|
|||
[self presentDownloaderAlert:code countries:absentCountries];
|
||||
[mapViewControlsManager onRouteError];
|
||||
break;
|
||||
case routing::IRouter::Cancelled: break;
|
||||
case routing::IRouter::Cancelled:
|
||||
[mapViewControlsManager onRoutePrepare];
|
||||
break;
|
||||
case routing::IRouter::StartPointNotFound:
|
||||
case routing::IRouter::EndPointNotFound:
|
||||
case routing::IRouter::NoCurrentPosition:
|
||||
|
|
|
@ -511,9 +511,6 @@ void RoutingManager::CheckLocationForRouting(location::GpsInfo const & info)
|
|||
void RoutingManager::CallRouteBuilded(routing::IRouter::ResultCode code,
|
||||
storage::TCountriesVec const & absentCountries)
|
||||
{
|
||||
if (code == IRouter::Cancelled)
|
||||
return;
|
||||
|
||||
m_routingCallback(code, absentCountries);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue