forked from organicmaps/organicmaps
Walk on route crash fix for pedestrian
This commit is contained in:
parent
d63073f7fd
commit
94f0d11b6f
1 changed files with 11 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue