| 39 | } |
| 40 | |
| 41 | void EditorDelegate::ForEachFeatureAtPoint(osm::Editor::FeatureTypeFn && fn, m2::PointD const & point) const |
| 42 | { |
| 43 | auto constexpr kToleranceMeters = 1e-2; |
| 44 | indexer::ForEachFeatureAtPoint(m_dataSource, std::move(fn), point, kToleranceMeters); |
| 45 | } |
| 46 | } // namespace search |
nothing calls this directly
no test coverage detected