[drape] [Booking] Use star icon for advertised non-Booking hotels MAPSME-14778

This commit is contained in:
Anatoliy Tomilov 2020-09-08 19:40:58 +05:00 committed by Maksim Andrianov
parent 6cd77c1098
commit d07d4a9c6a

View file

@ -92,7 +92,7 @@ std::string const kSelectionChipSmall = "selection-chips-s";
std::array<std::string, static_cast<size_t>(SearchMarkType::Count)> const kSymbols = {
"search-result", // Default.
"coloredmark-default-l", // Booking.
kOsmHotelSearchIcon, // Hotel
"coloredmark-default-l", // Hotel
"search-result-cafe", // Cafe.
"search-result-bakery", // Bakery.
"search-result-bar", // Bar.
@ -144,6 +144,9 @@ std::string GetSymbol(SearchMarkType searchMarkType, bool hasLocalAds, bool hasR
if (searchMarkType == SearchMarkType::Booking && !hasRating)
return kBookingNoRatingSearchIcon;
if (searchMarkType == SearchMarkType::Hotel && !hasLocalAds)
return kOsmHotelSearchIcon;
auto const index = static_cast<size_t>(searchMarkType);
ASSERT_LESS(index, kSymbols.size(), ());
if (hasLocalAds)