| 82 | } // namespace |
| 83 | |
| 84 | void Framework::VisualizeRoadsInRect(m2::RectD const & rect) |
| 85 | { |
| 86 | m_featuresFetcher.ForEachFeature(rect, [this, &rect](FeatureType & ft) |
| 87 | { |
| 88 | if (routing::IsRoad(feature::TypesHolder(ft))) |
| 89 | VisualizeFeatureInRect(rect, ft, m_drapeApi); |
| 90 | }, scales::GetUpperScale()); |
| 91 | } |
| 92 | |
| 93 | void Framework::VisualizeCityBoundariesInRect(m2::RectD const & rect) |
| 94 | { |
no test coverage detected