forked from organicmaps/organicmaps
[Routing] Fix for followed_polyline.
This commit is contained in:
parent
20ef14ae01
commit
aab28bc72e
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue