| 25 | } |
| 26 | |
| 27 | bool MiniRoundaboutInfo::IsProcessRoad(feature::FeatureBuilder const & fb) |
| 28 | { |
| 29 | // Important! Collect and transform only Car roundabouts. |
| 30 | return fb.IsLine() && routing::IsCarRoad(fb.GetTypes()); |
| 31 | } |
| 32 | |
| 33 | MiniRoundaboutData::MiniRoundaboutData(std::vector<MiniRoundaboutInfo> && data) : m_data(std::move(data)) |
| 34 | { |