You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.2 KiB
72 lines
2.2 KiB
query: |
|
|
(
|
|
way[highway=cycleway];
|
|
way["cycleway:width"];
|
|
)
|
|
feature:
|
|
style:
|
|
width: 4
|
|
color: |
|
|
{% set width = attribute(tags, 'cycleway:width') %}
|
|
{% if width matches "/'$/" %}
|
|
{% set width = (width|slice(0, -1)) * 0.3048 %}
|
|
{% endif %}
|
|
|
|
{% set minWidth = tags.oneway in ['yes', 1, -1] ? const.minWidthOneway : const.minWidthBoth %}
|
|
{% set optWidth = tags.oneway in ['yes', 1, -1] ? const.optWidthOneway : const.optWidthBoth %}
|
|
|
|
{% if width %}
|
|
{{ colorInterpolate(const.colorScheme, (width - minWidth) / (optWidth - minWidth)) }}
|
|
{% else %}black
|
|
{% endif %}
|
|
markerSymbol: false
|
|
listMarkerSymbol: line
|
|
description: |
|
|
{{ tagTrans('highway', tags.highway) }}
|
|
details: |
|
|
{% if not attribute(tags, 'cycleway:width') %}
|
|
{% elseif attribute(tags, 'cycleway:width') matches "/'$/" %}
|
|
{{ attribute(tags, 'cycleway:width') }}
|
|
{% else %}
|
|
{{ attribute(tags, 'cycleway:width') }}m
|
|
{% endif %}
|
|
body: |
|
|
<ul>
|
|
<li>
|
|
{{ keyTrans('cycleway:width') }}:
|
|
{% if not attribute(tags, 'cycleway:width') %}
|
|
{% elseif attribute(tags, 'cycleway:width') matches "/(m|')$/" %}
|
|
{{ attribute(tags, 'cycleway:width') }}
|
|
{% else %}
|
|
{{ attribute(tags, 'cycleway:width') }}m
|
|
{% endif %}
|
|
</ul>
|
|
info: |
|
|
<table>
|
|
<tr>
|
|
<th>Symbol</th>
|
|
<th>{{ keyTrans('oneway') }}={{ tagTrans('oneway', 'yes') }}</th>
|
|
<th>{{ keyTrans('oneway') }}={{ tagTrans('oneway', 'no') }}</th>
|
|
</tr>
|
|
{% for v in range(0, 1, 0.25) %}
|
|
<tr>
|
|
<td>
|
|
{{ markerLine({ width: 4, color: colorInterpolate(const.colorScheme, v) }) }}
|
|
</td>
|
|
<td>
|
|
{% if v == 0 %}<={% elseif v == 1 %}>={% endif %}
|
|
{{ (const.minWidthOneway + (v * (const.optWidthOneway - const.minWidthOneway)))|number_format(2) }}m
|
|
</td>
|
|
<td>
|
|
{% if v == 0 %}<={% elseif v == 1 %}>={% endif %}
|
|
{{ (const.minWidthBoth + (v * (const.optWidthBoth - const.minWidthBoth)))|number_format(2) }}m
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
const:
|
|
minWidthBoth: 1.5
|
|
optWidthBoth: 5
|
|
minWidthOneway: 0.75
|
|
optWidthOneway: 3
|
|
colorScheme: ['#ff0000', '#7f7fff', '#0000ff']
|