| 1521 | // Add new {lon, lat} city bboxes here. |
| 1522 | } |
| 1523 | bool IsInside(m2::PointD const & pt) |
| 1524 | { |
| 1525 | auto const ll = mercator::ToLatLon(pt); |
| 1526 | for (auto const & r : m_rects) |
| 1527 | if (r.IsPointInside({ll.m_lon, ll.m_lat})) |
| 1528 | return true; |
| 1529 | return false; |
| 1530 | } |
| 1531 | }; |
| 1532 | |
| 1533 | static CityBBox s_cityBBox; |
no test coverage detected