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.
119 lines
4.5 KiB
119 lines
4.5 KiB
{
|
|
"type": "overpass",
|
|
"name": {
|
|
"de": "Wanderrouten",
|
|
"en": "Hiking routes",
|
|
"fr": "Itinéraires pédestres",
|
|
"hu": "Turistautak",
|
|
"pt": "Rotas de caminhada",
|
|
"pt-br": "Rotas de caminhada"
|
|
},
|
|
"query": {
|
|
"10": "relation[type=route][route~\"^(|.*;)hiking(|;.*)$\"][network~\"^(|.*;)(iwn)(|;.*)$\"]",
|
|
"11": "relation[type=route][route~\"^(|.*;)hiking(|;.*)$\"][network~\"^(|.*;)(iwn|nwn)(|;.*)$\"]",
|
|
"12": "relation[type=route][route~\"^(|.*;)hiking(|;.*)$\"][network~\"^(|.*;)(iwn|nwn|rwn)(|;.*)$\"]",
|
|
"14": "relation[type=route][route~\"^(|.*;)hiking(|;.*)$\"]"
|
|
},
|
|
"members": true,
|
|
"feature": {
|
|
"pre": [
|
|
"{% set network = tags.network %}",
|
|
"{% for n in tags.network|split(';') %}",
|
|
"{% if n|matches('wn$') %}{% set network = n %}{% endif %}",
|
|
"{% endfor %}"
|
|
],
|
|
"priority": "{{ const[network].priority|default(4) }}",
|
|
"description": "{% if network %}{{ tagTrans('network', network) }}{% endif %}",
|
|
"listMarkerSymbol": "{{ markerLine({ 'width': 4, 'color': const[network|default('')].color|default(const[''].color) })|raw }}",
|
|
"title": "{% if tags.ref and tags.name %}{{ tags.ref }} - {{ tags.name }}{% elseif tags.ref %}{{ tags.ref }}{% elseif tags.name %}{{ tags.name }}{% endif %}",
|
|
"styles": "",
|
|
"markerSymbol": ""
|
|
},
|
|
"memberFeature": {
|
|
"pre": [
|
|
"{% set priority = 4 %}",
|
|
"{% set network = '' %}",
|
|
"{% set refs = [] %}",
|
|
"",
|
|
"{% for master in masters %}",
|
|
" {% set masterNetwork = '' %}",
|
|
" {% for n in master.tags.network|split(';') %}",
|
|
" {% if n|matches('wn$') %}{% set masterNetwork = n %}{% endif %}",
|
|
" {% endfor %}",
|
|
" {% set _p = const[masterNetwork].priority|default(4) %}",
|
|
" {% if _p < priority %}",
|
|
" {% set priority = _p %}",
|
|
" {% set network = masterNetwork %}",
|
|
" {% endif %}",
|
|
" {% if master.tags.ref %}",
|
|
" {% set refs = refs|merge([ master.tags.ref ]) %}",
|
|
" {% endif %}",
|
|
"{% endfor %}"
|
|
],
|
|
"body": [
|
|
"<h4>Routes</h4>",
|
|
"<ul class='overpass-layer-list'>",
|
|
"{% for master in masters %}",
|
|
" {% set masterNetwork = '' %}",
|
|
" {% for n in master.tags.network|split(';') %}",
|
|
" {% if n|matches('wn$') %}{% set masterNetwork = n %}{% endif %}",
|
|
" {% endfor %}",
|
|
" <li data-object=\"{{ master.id }}\">",
|
|
" <span class='markerParent'><div class='marker'>{{ markerLine({ width: 4, color: const[masterNetwork].color|default(const[''].color) })|raw }}</div></span>",
|
|
" <span class='title'>{% if master.tags.ref and master.tags.name %}{{ master.tags.ref }} - {{ master.tags.name|default(master.tags.ref) }}{% elseif master.tags.ref %}{{ master.tags.ref }}{% elseif master.tags.name %}{{ master.tags.name }}{% endif %}</span>",
|
|
" <span class='description'>{{ tagTrans('network', masterNetwork) }}</span>",
|
|
" </li>",
|
|
"{% endfor %}",
|
|
"</ul>"
|
|
],
|
|
"listExclude": "1",
|
|
"style": {
|
|
"color": "{{ const[network].color }}",
|
|
"width": 4,
|
|
"opacity": 1,
|
|
"text": "{{ refs|join(' · ') }} ",
|
|
"textRepeat": "1",
|
|
"textOffset": "12",
|
|
"textFontWeight": "bold"
|
|
}
|
|
},
|
|
"const": {
|
|
"iwn": {
|
|
"color": "#ff0000",
|
|
"priority": 0,
|
|
"zoom": 10
|
|
},
|
|
"nwn": {
|
|
"color": "#ff00ba",
|
|
"priority": 1,
|
|
"zoom": 11
|
|
},
|
|
"rwn": {
|
|
"color": "#ba00ff",
|
|
"priority": 2,
|
|
"zoom": 12
|
|
},
|
|
"lwn": {
|
|
"color": "#0000ff",
|
|
"priority": 3,
|
|
"zoom": 14
|
|
},
|
|
"": {
|
|
"color": "#007fff",
|
|
"priority": 4,
|
|
"zoom": 14
|
|
}
|
|
},
|
|
"info": [
|
|
"<table>",
|
|
"{% for value, data in const %}",
|
|
"{% if data.zoom <= map.zoom %}",
|
|
" <tr>",
|
|
" <td>{{ markerLine({ 'width': 4, color: data.color })|raw }}</td>",
|
|
" <td>{% if value %}{{ tagTrans('network', value) }}{% else %}{{ trans('unknown') }}{% endif %}</td>",
|
|
" </tr>",
|
|
"{% endif %}",
|
|
"{% endfor %}",
|
|
"</table>"
|
|
]
|
|
}
|