| 41 | } |
| 42 | |
| 43 | std::string GetLocalizedFeatureType(std::vector<uint32_t> const & types) |
| 44 | { |
| 45 | if (types.empty()) |
| 46 | return {}; |
| 47 | |
| 48 | auto const & c = classif(); |
| 49 | auto const type = c.GetTypeForIndex(types.front()); |
| 50 | |
| 51 | return localisation::TranslatedFeatureType(c.GetReadableObjectName(type)); |
| 52 | } |
| 53 | |
| 54 | std::string GetPreferredBookmarkNameForKml(BookmarkData const & bmData) |
| 55 | { |
no test coverage detected