From f043e420f50b3b0587ebf1bc0659770fba3fe079 Mon Sep 17 00:00:00 2001 From: palewire Date: Sun, 14 Apr 2013 08:33:18 -0700 Subject: [PATCH 1/2] 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" +} From 373522d43c3a091d96a8f265253fcfc23bdcdf6c Mon Sep 17 00:00:00 2001 From: palewire Date: Sun, 14 Apr 2013 08:55:26 -0700 Subject: [PATCH 2/2] Icon and title tweaks --- data/presets/presets/highway/pedestrian.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/presets/presets/highway/pedestrian.json b/data/presets/presets/highway/pedestrian.json index 996c2d313..56a36da1f 100644 --- a/data/presets/presets/highway/pedestrian.json +++ b/data/presets/presets/highway/pedestrian.json @@ -1,5 +1,5 @@ { - "icon": "highway-path", + "icon": "highway-pedestrian", "fields": [ "access", "oneway", @@ -12,5 +12,5 @@ "highway": "pedestrian" }, "terms": [], - "name": "Pedestrianized road" + "name": "Pedestrian" }