forked from organicmaps/organicmaps
[drape] [Booking] Use star icon for advertised non-Booking hotels MAPSME-14778
This commit is contained in:
parent
6cd77c1098
commit
d07d4a9c6a
1 changed files with 4 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue