| 110 | } |
| 111 | |
| 112 | bool HasAtm(FeatureType & f) |
| 113 | { |
| 114 | static uint32_t const atm = classif().GetTypeByPath({"amenity", "atm"}); |
| 115 | bool result = false; |
| 116 | f.ForEachType([&result](uint32_t type) |
| 117 | { |
| 118 | if (type == atm) |
| 119 | result = true; |
| 120 | }); |
| 121 | return result; |
| 122 | } |
| 123 | |
| 124 | string BuildUniqueId(ms::LatLon const & coords, string const & name) |
| 125 | { |
no test coverage detected