diff --git a/data/presets.yaml b/data/presets.yaml index f928ffcdd..04b8f20ea 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -1201,6 +1201,11 @@ en: # amenity=car_wash name: Car Wash terms: "" + amenity/casino: + # amenity=casino + name: Casino + # 'terms: gambling,roulette,craps,poker,blackjack' + terms: "" amenity/charging_station: # amenity=charging_station name: Charging Station @@ -2302,6 +2307,11 @@ en: # 'leisure=*' name: Leisure terms: "" + leisure/adult_gaming_centre: + # leisure=adult_gaming_centre + name: Adult Gaming Center + # 'terms: gambling,slot machine' + terms: "" leisure/common: # leisure=common name: Common diff --git a/data/presets/presets.json b/data/presets/presets.json index 3195115d3..aa49a9fc8 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -660,6 +660,30 @@ }, "name": "Car Wash" }, + "amenity/casino": { + "fields": [ + "operator", + "address", + "building_area", + "opening_hours", + "smoking" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "gambling", + "roulette", + "craps", + "poker", + "blackjack" + ], + "tags": { + "amenity": "casino" + }, + "name": "Casino" + }, "amenity/charging_station": { "icon": "car", "fields": [ @@ -4986,6 +5010,27 @@ }, "name": "Leisure" }, + "leisure/adult_gaming_centre": { + "fields": [ + "operator", + "address", + "building_area", + "opening_hours", + "smoking" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "gambling", + "slot machine" + ], + "tags": { + "leisure": "adult_gaming_centre" + }, + "name": "Adult Gaming Center" + }, "leisure/common": { "geometry": [ "point", diff --git a/data/presets/presets/amenity/casino.json b/data/presets/presets/amenity/casino.json new file mode 100644 index 000000000..14a6b2988 --- /dev/null +++ b/data/presets/presets/amenity/casino.json @@ -0,0 +1,24 @@ +{ + "fields": [ + "operator", + "address", + "building_area", + "opening_hours", + "smoking" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "gambling", + "roulette", + "craps", + "poker", + "blackjack" + ], + "tags": { + "amenity": "casino" + }, + "name": "Casino" +} diff --git a/data/presets/presets/leisure/adult_gaming_centre.json b/data/presets/presets/leisure/adult_gaming_centre.json new file mode 100644 index 000000000..6011ab426 --- /dev/null +++ b/data/presets/presets/leisure/adult_gaming_centre.json @@ -0,0 +1,21 @@ +{ + "fields": [ + "operator", + "address", + "building_area", + "opening_hours", + "smoking" + ], + "geometry": [ + "point", + "area" + ], + "terms": [ + "gambling", + "slot machine" + ], + "tags": { + "leisure": "adult_gaming_centre" + }, + "name": "Adult Gaming Center" +} diff --git a/data/taginfo.json b/data/taginfo.json index a9817944b..048ef2f61 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -160,6 +160,10 @@ "key": "amenity", "value": "car_wash" }, + { + "key": "amenity", + "value": "casino" + }, { "key": "amenity", "value": "charging_station" @@ -1160,6 +1164,10 @@ { "key": "leisure" }, + { + "key": "leisure", + "value": "adult_gaming_centre" + }, { "key": "leisure", "value": "common" diff --git a/dist/locales/en.json b/dist/locales/en.json index 1fa5ea865..7159e9723 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -1592,6 +1592,10 @@ "name": "Car Wash", "terms": "" }, + "amenity/casino": { + "name": "Casino", + "terms": "gambling,roulette,craps,poker,blackjack" + }, "amenity/charging_station": { "name": "Charging Station", "terms": "EV,Electric Vehicle,Supercharger" @@ -2600,6 +2604,10 @@ "name": "Leisure", "terms": "" }, + "leisure/adult_gaming_centre": { + "name": "Adult Gaming Center", + "terms": "gambling,slot machine" + }, "leisure/common": { "name": "Common", "terms": "open space"