Split OSM car category in car sharing and car rental

This commit is contained in:
MM20
2024-06-14 15:41:07 +02:00
parent a057fb8caa
commit e011d9d07c
2 changed files with 4 additions and 2 deletions
@@ -218,7 +218,8 @@ private fun Map<String, String>.categorize(context: Context): Pair<String?, Loca
} ?: (R.string.poi_category_restaurant to LocationIcon.Restaurant)
"fuel" -> R.string.poi_category_fuel to LocationIcon.GasStation
"car_rental", "car_sharing" -> R.string.poi_category_car to LocationIcon.CarRental
"car_rental" -> R.string.poi_category_car to LocationIcon.CarRental
"car_sharing" -> R.string.poi_category_car to LocationIcon.CarRental
"car_wash" -> R.string.poi_category_car_wash to LocationIcon.CarWash
"charging_station" -> R.string.poi_category_charging_station to LocationIcon.ChargingStation
"parking", "parking_space", "motorcycle_parking" -> R.string.poi_category_parking to LocationIcon.Parking