mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-25 23:33:53 +00:00
[styles] Add charging_station search result icon & bookmark icon
Signed-off-by: David Martinez <47610359+dvdmrtnz@users.noreply.github.com>
This commit is contained in:
committed by
Konstantin Pastbin
parent
d4cef9385b
commit
d5d86ffd36
@@ -47,6 +47,7 @@ enum SearchMarkPoint::SearchMarkType : uint8_t
|
||||
Playground,
|
||||
Bank,
|
||||
Fuel,
|
||||
ChargingStation,
|
||||
ShopAlcohol,
|
||||
ShopButcher,
|
||||
ShopClothes,
|
||||
@@ -116,6 +117,7 @@ std::array<std::string, SearchMarkType::Count> const kSymbols = {
|
||||
"search-result-playground", // Playground.
|
||||
"search-result-bank", // Bank.
|
||||
"search-result-fuel", // Fuel.
|
||||
"search-result-charging_station", // ChargingStation.
|
||||
"search-result-shop-alcohol", // ShopAlcohol.
|
||||
"search-result-shop-butcher", // ShopButcher.
|
||||
"search-result-shop-clothes", // ShopClothes.
|
||||
@@ -221,6 +223,9 @@ private:
|
||||
{{"amenity", "bank"}, SearchMarkType::Bank},
|
||||
{{"shop", "money_lender"}, SearchMarkType::Bank},
|
||||
{{"amenity", "fuel"}, SearchMarkType::Fuel},
|
||||
{{"amenity", "charging_station"}, SearchMarkType::ChargingStation},
|
||||
{{"amenity", "charging_station", "bicycle"}, SearchMarkType::ChargingStation},
|
||||
{{"amenity", "charging_station", "motorcar"}, SearchMarkType::ChargingStation},
|
||||
{{"shop", "alcohol"}, SearchMarkType::ShopAlcohol},
|
||||
{{"shop", "beverages"}, SearchMarkType::ShopAlcohol},
|
||||
{{"shop", "wine"}, SearchMarkType::ShopAlcohol},
|
||||
|
||||
Reference in New Issue
Block a user