[Routing] Fix for followed_polyline.

This commit is contained in:
Olga Khlopkova 2020-01-31 16:27:50 +03:00 committed by Vladimir Byko-Ianko
parent 20ef14ae01
commit aab28bc72e

View file

@ -139,7 +139,8 @@ Iter FollowedPolyline::GetBestMatchingProjection(m2::RectD const & posRect) cons
// At first trying to find a projection to two closest route segments of route which is close
// enough to |posRect| center. If |m_current| is right before intermediate point we can get |iter|
// right after intermediate point (in next subroute).
size_t const hoppingBorderIdx = min(m_segProj.size(), m_current.m_ind + 3);
size_t const hoppingBorderIdx =
min(m_nextCheckpointIndex, min(m_segProj.size(), m_current.m_ind + 3));
auto const iter = GetClosestMatchingProjectionInInterval(posRect, m_current.m_ind, hoppingBorderIdx);
if (iter.IsValid())
return iter;