diff --git a/data/presets.yaml b/data/presets.yaml index 18a844dbd..25b70533d 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -288,6 +288,8 @@ en: label: Type shop: label: Type + sloped_curb: + label: Sloped Curb smoking: label: Smoking social_facility_for: @@ -313,6 +315,8 @@ en: label: Supervised surface: label: Surface + tactile_paving: + label: Tactile Paving toilets/disposal: label: Disposal tourism: diff --git a/data/presets/fields.json b/data/presets/fields.json index 1ba2e7c09..7156b0098 100644 --- a/data/presets/fields.json +++ b/data/presets/fields.json @@ -711,6 +711,11 @@ "type": "typeCombo", "label": "Type" }, + "sloped_curb": { + "key": "sloped_curb", + "type": "combo", + "label": "Sloped Curb" + }, "smoking": { "key": "smoking", "type": "combo", @@ -806,6 +811,11 @@ "type": "combo", "label": "Surface" }, + "tactile_paving": { + "key": "tactile_paving", + "type": "check", + "label": "Tactile Paving" + }, "toilets/disposal": { "key": "toilets:disposal", "type": "combo", diff --git a/data/presets/fields/sloped_curb.json b/data/presets/fields/sloped_curb.json new file mode 100644 index 000000000..a293a4751 --- /dev/null +++ b/data/presets/fields/sloped_curb.json @@ -0,0 +1,5 @@ +{ + "key": "sloped_curb", + "type": "combo", + "label": "Sloped Curb" +} \ No newline at end of file diff --git a/data/presets/fields/tactile_paving.json b/data/presets/fields/tactile_paving.json new file mode 100644 index 000000000..be0f73ffd --- /dev/null +++ b/data/presets/fields/tactile_paving.json @@ -0,0 +1,5 @@ +{ + "key": "tactile_paving", + "type": "check", + "label": "Tactile Paving" +} \ No newline at end of file diff --git a/data/presets/presets.json b/data/presets/presets.json index 5253414b4..65e4e1bbb 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -3652,7 +3652,9 @@ }, "highway/crossing": { "fields": [ - "crossing" + "crossing", + "sloped_curb", + "tactile_paving" ], "geometry": [ "vertex" diff --git a/data/presets/presets/highway/crossing.json b/data/presets/presets/highway/crossing.json index 8823df1cc..0d30790e5 100644 --- a/data/presets/presets/highway/crossing.json +++ b/data/presets/presets/highway/crossing.json @@ -1,6 +1,8 @@ { "fields": [ - "crossing" + "crossing", + "sloped_curb", + "tactile_paving" ], "geometry": [ "vertex" diff --git a/dist/locales/en.json b/dist/locales/en.json index 72cc7e977..8a1ae65fc 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -813,6 +813,9 @@ "shop": { "label": "Type" }, + "sloped_curb": { + "label": "Sloped Curb" + }, "smoking": { "label": "Smoking" }, @@ -848,6 +851,9 @@ "surface": { "label": "Surface" }, + "tactile_paving": { + "label": "Tactile Paving" + }, "toilets/disposal": { "label": "Disposal" },