Walk on route crash fix for pedestrian

This commit is contained in:
Lev Dragunov 2015-04-06 18:48:08 +03:00 committed by Alex Zolotarev
parent d63073f7fd
commit 94f0d11b6f

View file

@ -292,7 +292,17 @@ void FeaturesRoadGraph::ReconstructPath(RoadPosVectorT const & positions, Route
ft1.SwapGeometry(ft2);
}
route.SetGeometry(poly.rbegin(), poly.rend());
if (poly.size() > 1)
{
Route::TurnsT turnsDir;
Route::TimesT times;
times.push_back(Route::TimeItemT(poly.size() - 1, 100500)); //TODO make proper time and turns calculation
turnsDir.push_back(Route::TurnItem(poly.size() - 1, turns::ReachedYourDestination));
route.SetGeometry(poly.rbegin(), poly.rend());
route.SetTurnInstructions(turnsDir);
route.SetSectionTimes(times);
}
}
bool FeaturesRoadGraph::IsOneWay(FeatureType const & ft) const