forked from OpenStreetBrowser/main
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.
148 lines
5.6 KiB
148 lines
5.6 KiB
{
|
|
"type": "overpass",
|
|
"query": {
|
|
"14": [
|
|
"(",
|
|
"way[highway=cycleway];",
|
|
")"
|
|
],
|
|
"16": [
|
|
"(",
|
|
"way[highway][highway!~'^(motorway.*|trunk.*|footway|service|steps|platform|corridor|path)$'][bicycle!=no];",
|
|
"way[highway~'^(cycleway|living_street)$'];",
|
|
"way[bicycle~'^(yes|designated)$'];",
|
|
"way[cycleway];",
|
|
")"
|
|
]
|
|
},
|
|
"feature": {
|
|
"pre": [
|
|
"{% set forward = false %}",
|
|
"{% set backward = false %}",
|
|
"{% set cycleway = tags.cycleway|split(';') %}",
|
|
"{% set road_type = const[tags.highway] ? tags.highway : 'shared_lane' %}",
|
|
"{% if tags.bicycle_road and tags.bicycle_road != 'no' %}{% set road_type = 'bicycle_road' %}{% endif %}",
|
|
"{% set oneway = attribute(tags, 'oneway:bicycle')|default(tags.oneway) %}",
|
|
"{% if tags.highway == 'path' and tags.bicycle == 'designated' %}{% set road_type = 'cycleway' %}{% endif %}",
|
|
"{% if oneway in ['yes', '1'] %}{% set forward = road_type %}{% elseif oneway in ['-1'] %}{% set backward = road_type %}{% else %}{% set forward = road_type %}{% set backward = road_type %}{% endif %}",
|
|
"{% for c in cycleway %}",
|
|
" {% if c in ['opposite', 'opposite_lane', 'opposite_track'] %}{% set backward = c|slice(9)|default(road_type) %}{% endif %}",
|
|
" {% if const[c] %}{% if oneway in ['yes', '1', '-1'] %}{% set forward = c %}{% else %}{% set forward = c %}{% set backward = c %}{% endif %}{% endif %}",
|
|
"{% endfor %}"
|
|
],
|
|
"body": [
|
|
"{{ keyTrans('highway') }}: {{ tagTrans('highway', tags.highway) }}<br>",
|
|
"{% if tags.cycleway %}{{ keyTrans('cycleway') }}: {% for c in cycleway %}{{ tagTrans('cycleway', c) }} {% endfor %}<br>{% endif %}",
|
|
"{% if tags.surface %}{{ keyTrans('surface') }}: {{ tagTrans('surface', tags.surface) }}<br>{% endif %}"
|
|
],
|
|
"markerSymbol": null,
|
|
"listMarkerSymbol": "line",
|
|
"styles": "{% if forward and backward and forward == backward %}default{% else %}{% if forward %},forward{% endif %}{% if backward %},backward{% endif %}{% endif %}",
|
|
"style": {
|
|
"color": "{{ const[forward].color }}",
|
|
"fill": "{% if tags.area == 'yes' %}true{% else %}false{% endif %}",
|
|
"width": "{% if tags.area == 'yes' %}0{% else %}{{ const[forward].width }}{% endif %}"
|
|
},
|
|
"style:forward": {
|
|
"width": "0",
|
|
"fill": "false",
|
|
"pattern": "arrowHead",
|
|
"pattern-offset": "8",
|
|
"pattern-repeat": "60",
|
|
"pattern-polygon": "true",
|
|
"pattern-pixelSize": "9",
|
|
"pattern-angleCorrection": "0",
|
|
"pattern-path-width": "0",
|
|
"pattern-path-color": "{{ const[forward].color }}",
|
|
"pattern-path-fillOpacity": "1",
|
|
"pattern-lineOffset": "0",
|
|
"pattern2": "dash",
|
|
"pattern2-offset": "50",
|
|
"pattern2-repeat": "60",
|
|
"pattern2-pixelSize": "22",
|
|
"pattern2-path-width": "{{ const[forward].width }}",
|
|
"pattern2-path-color": "{{ const[forward].color }}",
|
|
"pattern2-lineOffset": "0",
|
|
"pattern2-path-lineCap": "butt",
|
|
"pattern2-path-fillOpacity": "1"
|
|
},
|
|
"style:backward": {
|
|
"width": "0",
|
|
"fill": "false",
|
|
"pattern": "arrowHead",
|
|
"pattern-offset": "10",
|
|
"pattern-repeat": "60",
|
|
"pattern-polygon": "true",
|
|
"pattern-pixelSize": "9",
|
|
"pattern-angleCorrection": "180",
|
|
"pattern-path-width": "0",
|
|
"pattern-path-color": "{{ const[backward].color }}",
|
|
"pattern-path-fillOpacity": "1",
|
|
"pattern-lineOffset": "0",
|
|
"pattern2": "dash",
|
|
"pattern2-offset": "25",
|
|
"pattern2-repeat": "60",
|
|
"pattern2-pixelSize": "22",
|
|
"pattern2-path-width": "{{ const[backward].width }}",
|
|
"pattern2-path-color": "{{ const[backward].color }}",
|
|
"pattern2-lineOffset": "0",
|
|
"pattern2-path-lineCap": "butt",
|
|
"pattern2-path-fillOpacity": "1"
|
|
}
|
|
},
|
|
"info": [
|
|
"<table>",
|
|
"{% for key, value in const if not value.info_hide %}",
|
|
" <tr>",
|
|
" <td>{{ markerLine({'width': value.width, 'color': value.color})|raw }}</div></td>",
|
|
" <td>{{ tagTrans(value.trans_tag|default('highway'), key) }}</td>",
|
|
" </tr>",
|
|
"{% endfor %}",
|
|
"</table>"
|
|
],
|
|
"const": {
|
|
"cycleway": {
|
|
"width": "2",
|
|
"color": "#0000ff"
|
|
},
|
|
"track": {
|
|
"width": "4",
|
|
"color": "#0000ff",
|
|
"info_hide": true
|
|
},
|
|
"lane": {
|
|
"width": "2",
|
|
"color": "#7f0000"
|
|
},
|
|
"share_busway": {
|
|
"width": "2",
|
|
"color": "#7f007f",
|
|
"trans_tag": "cycleway"
|
|
},
|
|
"footway": {
|
|
"width": "2",
|
|
"color": "#00af00"
|
|
},
|
|
"path": {
|
|
"width": "2",
|
|
"color": "#00af00",
|
|
"info_hide": true
|
|
},
|
|
"pedestrian": {
|
|
"width": "4",
|
|
"color": "#5faf00"
|
|
},
|
|
"living_street": {
|
|
"width": "4",
|
|
"color": "#00afff"
|
|
},
|
|
"bicycle_road": {
|
|
"width": "4",
|
|
"color": "#003fff"
|
|
},
|
|
"shared_lane": {
|
|
"width": "4",
|
|
"color": "#000000"
|
|
}
|
|
}
|
|
}
|