Browse Source

footways: map info: shared/segregated cycle- and footway

pedestrian
parent
commit
8fa3be8b58
  1. 18
      footways.yaml

18
footways.yaml

@ -72,7 +72,11 @@ feature:
{% if tags.footway %} {% if tags.footway %}
{{ tagTrans('footway', tags.footway) }} {{ tagTrans('footway', tags.footway) }}
{% elseif tags.highway %} {% elseif tags.highway %}
{{ tagTrans('highway', tags.highway) }} {% if tags.segregated %}
{{ tagTrans('highway', tags.highway ~ ' segregated=' ~ tags.segregated) }}
{% else %}
{{ tagTrans('highway', tags.highway) }}
{% endif %}
{% elseif tags.railway %} {% elseif tags.railway %}
{{ tagTrans('railway', tags.railway) }} {{ tagTrans('railway', tags.railway) }}
{% endif %} {% endif %}
@ -254,7 +258,7 @@ info: |
dashOffset: 3 dashOffset: 3
} }
}) }}</td> }) }}</td>
<td>highway=cycleway segregated=no</td> <td>{{ tagTrans('highway', 'cycleway segregated=no') }}</td>
</tr> </tr>
<tr> <tr>
<td>{{ markerLine({ <td>{{ markerLine({
@ -270,7 +274,7 @@ info: |
offset: 1 offset: 1
} }
}) }}</td> }) }}</td>
<td>highway=cycleway segregated=yes</td> <td>{{ tagTrans('highway', 'cycleway segregated=yes') }}</td>
</tr> </tr>
{% for k, d in const.sidewalks %} {% for k, d in const.sidewalks %}
<tr> <tr>
@ -317,12 +321,12 @@ const:
key: railway key: railway
color: '#00ff00' color: '#00ff00'
sidewalks: sidewalks:
yes: 'yes':
color: '#ff007f' color: '#ff007f'
styles: 'leftr,left' styles: 'leftr,left'
separate: 'separate':
color: '#ff007f' color: '#ff007f'
styles: 'leftr' styles: 'leftr'
no: 'no':
color: '#000000' color: '#000000'
styles: 'leftr,left' styles: 'leftr'
|||||||
100:0
Loading…
Cancel
Save