diff --git a/routing/base/followed_polyline.cpp b/routing/base/followed_polyline.cpp index 50febccef3..c51123290c 100644 --- a/routing/base/followed_polyline.cpp +++ b/routing/base/followed_polyline.cpp @@ -128,9 +128,7 @@ Iter FollowedPolyline::GetBestProjection(m2::RectD const & posRect, return GetClosestProjectionInInterval(posRect, distFn, hoppingBorderIdx, m_nextCheckpointIndex); } - template - pair FollowedPolyline::GetBestMatchedProjection(m2::RectD const & posRect, - DistanceFn const & distFn) const + pair FollowedPolyline::GetBestMatchedProjection(m2::RectD const & posRect) const { CHECK_EQUAL(m_segProj.size() + 1, m_poly.GetSize(), ()); // At first trying to find a projection to two closest route segments of route which is close @@ -139,14 +137,13 @@ Iter FollowedPolyline::GetBestProjection(m2::RectD const & posRect, size_t const hoppingBorderIdx = min(m_segProj.size(), m_current.m_ind + 3); Iter closestIter; bool nearestIsFake = false; - tie(closestIter, nearestIsFake) = GetClosestMatchedProjectionInInterval(posRect, distFn, m_current.m_ind, - hoppingBorderIdx); + tie(closestIter, nearestIsFake) = GetClosestMatchedProjectionInInterval(posRect, m_current.m_ind, hoppingBorderIdx); if (closestIter.IsValid()) return make_pair(closestIter, nearestIsFake); // If a projection to the 3 closest route segments is not found tries to find projection to other route // segments of current subroute. - return GetClosestMatchedProjectionInInterval(posRect, distFn, hoppingBorderIdx, m_nextCheckpointIndex); + return GetClosestMatchedProjectionInInterval(posRect, hoppingBorderIdx, m_nextCheckpointIndex); } pair FollowedPolyline::UpdateMatchedProjection(m2::RectD const & posRect) @@ -157,9 +154,7 @@ pair FollowedPolyline::UpdateMatchedProjection(m2::RectD const & pos Iter iter; bool nearestIsFake = false; m2::PointD const currPos = posRect.Center(); - tie(iter, nearestIsFake) = GetBestMatchedProjection(posRect, [&](Iter const & it) { - return MercatorBounds::DistanceOnEarth(it.m_pt, currPos); - }); + tie(iter, nearestIsFake) = GetBestMatchedProjection(posRect); if (iter.IsValid()) m_current = iter; diff --git a/routing/base/followed_polyline.hpp b/routing/base/followed_polyline.hpp index a838778c16..a9800d40dc 100644 --- a/routing/base/followed_polyline.hpp +++ b/routing/base/followed_polyline.hpp @@ -126,8 +126,7 @@ public: } /// \returns pair of iterator (projection point) and bool (true if nearest point is on an unmatched segment). - template - std::pair GetClosestMatchedProjectionInInterval(m2::RectD const & posRect, DistanceFn const & distFn, + std::pair GetClosestMatchedProjectionInInterval(m2::RectD const & posRect, size_t startIdx, size_t endIdx) const { CHECK_LESS_OR_EQUAL(endIdx, m_segProj.size(), ()); @@ -146,7 +145,7 @@ public: continue; Iter it(pt, i); - double const dp = distFn(it); + double const dp = MercatorBounds::DistanceOnEarth(it.m_pt, currPos); if (dp >= minDistUnmatched && dp >= minDist) continue; @@ -160,7 +159,7 @@ public: } else { - if (minDistUnmatched > dp) // overwrite best match for unmatched segment + if (minDistUnmatched > dp) minDistUnmatched = dp; } } @@ -175,9 +174,7 @@ private: template Iter GetBestProjection(m2::RectD const & posRect, DistanceFn const & distFn) const; - template - std::pair GetBestMatchedProjection(m2::RectD const & posRect, - DistanceFn const & distFn) const; + std::pair GetBestMatchedProjection(m2::RectD const & posRect) const; void Update();