[routing] Good status after routing fail (0,0 coordinates) fix.

This commit is contained in:
Lev Dragunov 2015-08-28 16:47:27 +03:00 committed by Alex Zolotarev
parent c331c05746
commit b375c33e3a

View file

@ -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);