diff --git a/indexer/feature_utils.cpp b/indexer/feature_utils.cpp index b3bd659ed4..2bdb3830a2 100644 --- a/indexer/feature_utils.cpp +++ b/indexer/feature_utils.cpp @@ -438,4 +438,10 @@ string GetLocalizedFeeType(TypesHolder const & types) return localized_types[0]; } +bool HasAtm(TypesHolder const & types) +{ + auto const & isAtmType = ftypes::IsATMChecker::Instance(); + return isAtmType(types); +} + } // namespace feature diff --git a/indexer/feature_utils.hpp b/indexer/feature_utils.hpp index 823caffb58..5988733a5c 100644 --- a/indexer/feature_utils.hpp +++ b/indexer/feature_utils.hpp @@ -129,4 +129,7 @@ namespace feature // Returns fee type localized by platform. std::string GetLocalizedFeeType(TypesHolder const & types); + /// Returns true if feature has ATM type. + bool HasAtm(TypesHolder const & types); + } // namespace feature diff --git a/indexer/map_object.cpp b/indexer/map_object.cpp index 6bc4d03fa8..634ab0458f 100644 --- a/indexer/map_object.cpp +++ b/indexer/map_object.cpp @@ -168,6 +168,11 @@ string MapObject::GetLocalizedFeeType() const return feature::GetLocalizedFeeType(m_types); } +bool MapObject::HasAtm() const +{ + return feature::HasAtm(m_types); +} + string MapObject::FormatCuisines() const { return strings::JoinStrings(GetLocalizedCuisines(), kFieldsSeparator); diff --git a/indexer/map_object.hpp b/indexer/map_object.hpp index e38da0c592..a5da6e0a93 100644 --- a/indexer/map_object.hpp +++ b/indexer/map_object.hpp @@ -100,6 +100,9 @@ public: int GetStars() const; ftraits::WheelchairAvailability GetWheelchairType() const; + /// @returns true if feature has ATM type. + bool HasAtm() const; + /// @returns formatted elevation in feet or meters, or empty string. std::string GetElevationFormatted() const; /// @} diff --git a/map/place_page_info.cpp b/map/place_page_info.cpp index acf20bbff4..d146b741a5 100644 --- a/map/place_page_info.cpp +++ b/map/place_page_info.cpp @@ -22,6 +22,7 @@ namespace place_page char const * const Info::kStarSymbol = "★"; char const * const Info::kMountainSymbol = "▲"; char const * const kWheelchairSymbol = "\u267F"; +char const * const kAtmSymbol = "💳"; bool Info::IsBookmark() const { @@ -162,6 +163,10 @@ std::string Info::FormatSubtitle(bool withType) const auto const eleStr = GetElevationFormatted(); if (!eleStr.empty()) append(kMountainSymbol + eleStr); + + // ATM + if (HasAtm()) + append(kAtmSymbol); // Internet. if (HasWifi())