From f043e420f50b3b0587ebf1bc0659770fba3fe079 Mon Sep 17 00:00:00 2001 From: palewire Date: Sun, 14 Apr 2013 08:33:18 -0700 Subject: [PATCH] Added highway=pedestrian preset for roads convertered into walkways, towns squares, shopping plazas, etc. Also, gave the small footway alternative tag the ability to be saved as an area for small walkway areas connected to sidewalks. For #1304. --- data/presets/presets/highway/footway.json | 4 ++-- data/presets/presets/highway/pedestrian.json | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 data/presets/presets/highway/pedestrian.json diff --git a/data/presets/presets/highway/footway.json b/data/presets/presets/highway/footway.json index 07e760faa..5adff5df6 100644 --- a/data/presets/presets/highway/footway.json +++ b/data/presets/presets/highway/footway.json @@ -6,7 +6,7 @@ "surface" ], "geometry": [ - "line" + "line", "area" ], "terms": [ "beaten path", @@ -38,4 +38,4 @@ "highway": "footway" }, "name": "Foot Path" -} \ No newline at end of file +} diff --git a/data/presets/presets/highway/pedestrian.json b/data/presets/presets/highway/pedestrian.json new file mode 100644 index 000000000..996c2d313 --- /dev/null +++ b/data/presets/presets/highway/pedestrian.json @@ -0,0 +1,16 @@ +{ + "icon": "highway-path", + "fields": [ + "access", + "oneway", + "surface" + ], + "geometry": [ + "line", "area" + ], + "tags": { + "highway": "pedestrian" + }, + "terms": [], + "name": "Pedestrianized road" +}