| 63 | } |
| 64 | |
| 65 | void Graph::FindClosestEdges(m2::PointD const & point, uint32_t const count, |
| 66 | vector<pair<Edge, Junction>> & vicinities) const |
| 67 | { |
| 68 | m_graph.FindClosestEdges(mercator::RectByCenterXYAndSizeInMeters(point, FeaturesRoadGraph::kClosestEdgesRadiusM), |
| 69 | count, vicinities); |
| 70 | } |
| 71 | |
| 72 | void Graph::AddIngoingFakeEdge(Edge const & e) |
| 73 | { |
no test coverage detected