diff --git a/footways.yaml b/footways.yaml index caf73e8..33ee293 100644 --- a/footways.yaml +++ b/footways.yaml @@ -272,6 +272,27 @@ info: | }) }} highway=cycleway segregated=yes + {% for k, d in const.sidewalks %} + + {{ markerLine({ + styles: d.styles, + 'style:leftr': { + width: 7, + offset: -2.5, + opacity: 0.3, + dashArray: '1,10', + lineCap: butt, + color: d.color + }, + 'style:left': { + width: 3, + offset: -7, + color: d.color + } + }) }} + {{ tagTrans('sidewalk', k) }} + + {% endfor %} const: categories: @@ -295,3 +316,13 @@ const: platform: key: railway color: '#00ff00' + sidewalks: + yes: + color: '#ff007f' + styles: 'leftr,left' + separate: + color: '#ff007f' + styles: 'leftr' + no: + color: '#000000' + styles: 'leftr,left'