forked from organicmaps/organicmaps
[routing] Good status after routing fail (0,0 coordinates) fix.
This commit is contained in:
parent
c331c05746
commit
b375c33e3a
1 changed files with 3 additions and 3 deletions
|
@ -539,7 +539,7 @@ OsrmRouter::ResultCode OsrmRouter::CalculateRoute(m2::PointD const & startPoint,
|
|||
if (!startMapping->IsValid())
|
||||
{
|
||||
route.AddAbsentCountry(startMapping->GetCountryName());
|
||||
return startMapping->GetError();
|
||||
return IRouter::StartPointNotFound;
|
||||
}
|
||||
if (!targetMapping->IsValid())
|
||||
{
|
||||
|
@ -551,9 +551,9 @@ OsrmRouter::ResultCode OsrmRouter::CalculateRoute(m2::PointD const & startPoint,
|
|||
targetMapping->GetCountryName())
|
||||
{
|
||||
route.AddAbsentCountry(targetMapping->GetCountryName());
|
||||
return targetMapping->GetError();
|
||||
return IRouter::EndPointNotFound;
|
||||
}
|
||||
return targetMapping->GetError();
|
||||
return IRouter::EndPointNotFound;
|
||||
}
|
||||
|
||||
MappingGuard startMappingGuard(startMapping);
|
||||
|
|
Loading…
Add table
Reference in a new issue