From dc9b6a3acb00d824bacca3a4adacd7b4d0776303 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Wed, 18 Jan 2023 19:15:16 +0100 Subject: [PATCH] only treat `traffic_calming=island` as an area tag this is required for a proper fix of https://github.com/openstreetmap/id-tagging-schema/issues/733 --- modules/osm/tags.js | 3 +++ modules/presets/index.js | 1 + 2 files changed, 4 insertions(+) diff --git a/modules/osm/tags.js b/modules/osm/tags.js index 101c27fc2..303c95964 100644 --- a/modules/osm/tags.js +++ b/modules/osm/tags.js @@ -60,6 +60,9 @@ export var osmAreaKeysExceptions = { turntable: true, wash: true }, + traffic_calming: { + island: true + }, waterway: { dam: true } diff --git a/modules/presets/index.js b/modules/presets/index.js index 8f2860c5a..8996aae12 100644 --- a/modules/presets/index.js +++ b/modules/presets/index.js @@ -305,6 +305,7 @@ export function presetIndex() { footway: true, railway: true, junction: true, + traffic_calming: true, type: true }; let areaKeys = {};