Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'search/house_detector.cpp')
-rw-r--r--search/house_detector.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/search/house_detector.cpp b/search/house_detector.cpp
index 6c116962c6..457a7dc4f8 100644
--- a/search/house_detector.cpp
+++ b/search/house_detector.cpp
@@ -6,7 +6,6 @@
#include "../indexer/classificator.hpp"
#include "../geometry/distance.hpp"
-#include "../geometry/distance_on_sphere.hpp"
#include "../geometry/angles.hpp"
#include "../base/logging.hpp"
@@ -267,8 +266,7 @@ bool LessStreetDistance(HouseProjection const & p1, HouseProjection const & p2)
double GetDistanceMeters(m2::PointD const & p1, m2::PointD const & p2)
{
- return ms::DistanceOnEarth(MercatorBounds::YToLat(p1.y), MercatorBounds::XToLon(p1.x),
- MercatorBounds::YToLat(p2.y), MercatorBounds::XToLon(p2.x));
+ return MercatorBounds::DistanceOnEarth(p1, p2);
}
pair<double, double> GetConnectionAngleAndDistance(bool & isBeg, Street const * s1, Street const * s2)