From 06ea0e6abe35b7ab012a920f56ebffe32ba34f9a Mon Sep 17 00:00:00 2001 From: Ilya Grechuhin Date: Fri, 16 Jun 2017 15:49:42 +0300 Subject: [PATCH] [fix] [ios] Added handler for build route cancellation. --- iphone/Maps/Core/Routing/MWMRouter.mm | 4 +++- map/routing_manager.cpp | 3 --- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/iphone/Maps/Core/Routing/MWMRouter.mm b/iphone/Maps/Core/Routing/MWMRouter.mm index c8549b5869..12b8b6bfdf 100644 --- a/iphone/Maps/Core/Routing/MWMRouter.mm +++ b/iphone/Maps/Core/Routing/MWMRouter.mm @@ -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: diff --git a/map/routing_manager.cpp b/map/routing_manager.cpp index 4fc9742394..8c0b527005 100644 --- a/map/routing_manager.cpp +++ b/map/routing_manager.cpp @@ -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); }