From 9634039f706f27f803e1cef056fc8c01c1a52851 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Thu, 23 Apr 2020 10:52:06 -0700 Subject: [PATCH] Add boardwalk preset and line styling (close #7518) --- css/30_highways.css | 3 +++ .../presets/highway/path/boardwalk.json | 25 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 data/presets/presets/highway/path/boardwalk.json diff --git a/css/30_highways.css b/css/30_highways.css index 837920820..653f6ea9c 100644 --- a/css/30_highways.css +++ b/css/30_highways.css @@ -465,6 +465,9 @@ path.line.casing.tag-highway-bridleway { path.line.stroke.tag-highway-path { stroke: #988; } +path.line.stroke.tag-highway-path.tag-bridge-boardwalk { + stroke: #dca; +} /* footways */ .preset-icon .icon.tag-route-foot, diff --git a/data/presets/presets/highway/path/boardwalk.json b/data/presets/presets/highway/path/boardwalk.json new file mode 100644 index 000000000..ded75c8f0 --- /dev/null +++ b/data/presets/presets/highway/path/boardwalk.json @@ -0,0 +1,25 @@ +{ + "icon": "temaki-pedestrian", + "geometry": [ + "line" + ], + "tags": { + "highway": "path", + "bridge": "boardwalk" + }, + "addTags": { + "highway": "path", + "bridge": "boardwalk", + "surface": "wood" + }, + "reference": { + "key": "bridge", + "value": "boardwalk" + }, + "terms": [ + "pier", + "plank walkway", + "wooden raised foot path" + ], + "name": "Boardwalk" +}