| 5 | namespace search |
| 6 | { |
| 7 | double PointDistance(m2::PointD const & a, m2::PointD const & b) |
| 8 | { |
| 9 | return mercator::DistanceOnEarth(a, b); |
| 10 | } |
| 11 | |
| 12 | bool IsEqualMercator(m2::RectD const & r1, m2::RectD const & r2, double eps) |
| 13 | { |
no test coverage detected