From 94f0d11b6fc69d919922446c348eeade5a2cd9e9 Mon Sep 17 00:00:00 2001 From: Lev Dragunov Date: Mon, 6 Apr 2015 18:48:08 +0300 Subject: [PATCH] Walk on route crash fix for pedestrian --- routing/features_road_graph.cpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/routing/features_road_graph.cpp b/routing/features_road_graph.cpp index 67c5ee32d4..6a9576bd15 100644 --- a/routing/features_road_graph.cpp +++ b/routing/features_road_graph.cpp @@ -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