diff --git a/indexer/map_object.cpp b/indexer/map_object.cpp index 5cca6e0cf0..3d5a447ae5 100644 --- a/indexer/map_object.cpp +++ b/indexer/map_object.cpp @@ -85,7 +85,7 @@ std::string_view MapObject::GetPostcode() const return m_metadata.Get(MetadataID::FMD_POSTCODE); } -string MapObject::GetLocalizedType() const +std::string MapObject::GetLocalizedType() const { ASSERT(!m_types.Empty(), ()); feature::TypesHolder copy(m_types); @@ -94,6 +94,27 @@ string MapObject::GetLocalizedType() const return platform::GetLocalizedTypeName(classif().GetReadableObjectName(copy.GetBestType())); } +std::string MapObject::GetAllLocalizedTypes() const +{ + ASSERT(!m_types.Empty(), ()); + feature::TypesHolder copy(m_types); + copy.SortBySpec(); + + std::ostringstream oss; + bool first = true; + for (auto const type : copy) + { + if (!first) + oss << feature::kFieldsSeparator; + first = false; + + auto localizedType = platform::GetLocalizedTypeName(classif().GetReadableObjectName(type)); + oss << localizedType; + } + + return oss.str(); +} + std::string_view MapObject::GetMetadata(MetadataID type) const { return m_metadata.Get(type); diff --git a/indexer/map_object.hpp b/indexer/map_object.hpp index 98e912c659..46a5f96bc5 100644 --- a/indexer/map_object.hpp +++ b/indexer/map_object.hpp @@ -103,8 +103,11 @@ public: void AssignMetadata(feature::Metadata & dest) const { dest = m_metadata; } protected: - /// @returns "the best" type to display in UI. + /// @returns "the best" single type to display in UI. std::string GetLocalizedType() const; + + /// @returns all types separated by kFieldsSeparator to display in UI. + std::string GetAllLocalizedTypes() const; FeatureID m_featureID; m2::PointD m_mercator; diff --git a/map/place_page_info.cpp b/map/place_page_info.cpp index 1fdcbcd188..1fd7066d79 100644 --- a/map/place_page_info.cpp +++ b/map/place_page_info.cpp @@ -122,7 +122,7 @@ std::string Info::FormatSubtitle(bool withType) const append(m_bookmarkCategoryName); if (withType) - append(GetLocalizedType()); + append(GetAllLocalizedTypes()); // Flats. auto const flats = GetMetadata(feature::Metadata::FMD_FLATS);