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.
129 lines
4.2 KiB
129 lines
4.2 KiB
type: overpass
|
|
query:
|
|
'14': |-
|
|
(
|
|
node["canoe"~"^(put_in|egress|put_in;egress)$"];
|
|
node["leisure"="slipway"];
|
|
way["canoe"="portage"];
|
|
nwr[shop~"^(boat)$"]["boat:type"~"^(.*;|)canoe|kayak|standup_paddleboard|dinghy|pedalboat(|;.*)$"];
|
|
nwr[rental~"^(boat)$"]["boat:type"~"^(.*;|)canoe|kayak|standup_paddleboard|dinghy|pedalboat(|;.*)$"];
|
|
nwr["canoe_rental"="yes"];
|
|
nwr["kayak_rental"="yes"];
|
|
nwr["standup_paddleboard_rental"="yes"];
|
|
nwr["dinghy_rental"="yes"];
|
|
nwr["pedalboat_rental"="yes"];
|
|
)
|
|
feature:
|
|
pre: |-
|
|
{% if tags.canoe == 'portage' and ( not attribute(tags, 'surface') or attribute(tags, 'surface') == 'water' ) %}
|
|
{% set key = 'waterway' %}
|
|
{% set value = 'portage' %}
|
|
{% elseif tags.canoe %}
|
|
{% set key = 'canoe' %}
|
|
{% set value = tags.canoe %}
|
|
{% elseif tags.leisure %}
|
|
{% set key = 'leisure' %}
|
|
{% set value = tags.leisure %}
|
|
{% elseif tags.shop %}
|
|
{% set key = 'shop' %}
|
|
{% set value = 'shop' %}
|
|
{% elseif tags.rental or tags.canoe_rental or tags.kayak_rental or tags.standup_paddleboard_rental or tags.dingy_rental or tags.pedalboat_rental %}
|
|
{% set key = 'shop' %}
|
|
{% set value = 'rental' %}
|
|
{% endif %}
|
|
|
|
{% set constIndex = (key ~ "=" ~ value) %}
|
|
{% set item = const[constIndex] %}
|
|
title: |
|
|
{{ localizedTag(tags, 'name') }}
|
|
{% if attribute(tags, 'ref') %}
|
|
( {{ localizedTag(tags, 'ref') }} )
|
|
{% endif %}
|
|
description: |
|
|
{{ tagTrans(key, value) }}
|
|
body: |-
|
|
{% if constIndex in ['canoe=put_in', 'canoe=egress', 'canoe=put_in;egress', 'leisure=slipway','canoe=portage'] %}
|
|
<ul>
|
|
{% if attribute(tags, 'surface') %}
|
|
<li class='hasSymbol'>
|
|
<i class='fa fa-window-minimize'></i>
|
|
{{ keyTrans('Surface') }}:
|
|
<span class='value'>{{ attribute(tags, 'surface') ? tagTrans('surface', attribute(tags, 'surface')) : '' }}</span>
|
|
</li>
|
|
{% endif %}
|
|
|
|
|
|
{% if attribute(tags, 'operator') %}
|
|
<li class='hasSymbol'>
|
|
<i class='fa fa-drivers-license-o'></i>
|
|
{{ keyTrans('Operator') }}:
|
|
<span class='value'>{{ attribute(tags, 'operator') ? tagTrans('operator', attribute(tags, 'operator')) : '' }}</span>
|
|
</li>
|
|
{% endif %}
|
|
|
|
{% if attribute(tags, 'access') %}
|
|
<li class='hasSymbol'>
|
|
<i class='fa fa-unlock'></i>
|
|
{{ keyTrans('Access') }}:
|
|
<span class='value'>{{ attribute(tags, 'access') ? tagTrans('access', attribute(tags, 'access')) : '' }}</span>
|
|
</li>
|
|
{% endif %}
|
|
|
|
{% if attribute(tags, 'fee') %}
|
|
<li class='hasSymbol'>
|
|
<i class='fa fa-money'></i>
|
|
{{ keyTrans('Fee') }}:
|
|
<span class='value'>{{ attribute(tags, 'fee') ? tagTrans('fee', attribute(tags, 'fee')) : '' }}</span>
|
|
</li>
|
|
{% endif %}
|
|
|
|
{% if attribute(tags, 'mapillary') %}
|
|
<li class='hasSymbol'>
|
|
<i class='fa fa-camera'></i>
|
|
{{ trans('Photos') }}:
|
|
<span class='value'>
|
|
<a href="https://www.mapillary.com/app/?focus=photo&pKey={{ attribute(tags, 'mapillary') }}" rel="noreferrer" target="_blank">Mapillary</a>
|
|
</span>
|
|
</li>
|
|
{% endif %}
|
|
|
|
</ul>
|
|
{% endif %}
|
|
<!-- Description and Wheelchair rendered from detailsBody.html. -->
|
|
markerSign: '{{ item[''sign''] | raw }}'
|
|
markerSymbol: |
|
|
{% if item['sign'] %}{{ markerPointer({ fillColor: '#FFFFFF' }) }}{% endif %}
|
|
listMarkerSymbol: |
|
|
{% if item['sign'] %}{{ markerCircle({ fillColor: '#FFFFFF' }) }}{% endif %}
|
|
priority: |-
|
|
{% if item is defined %}
|
|
{{ item['priority'] }}
|
|
{% else %}
|
|
10
|
|
{% endif %}
|
|
const:
|
|
canoe=portage:
|
|
sign:
|
|
priority: 2
|
|
canoe=put_in:
|
|
sign: <i class="fas fa-long-arrow-alt-down"></i>
|
|
priority: 0
|
|
canoe=egress:
|
|
sign: <i class="fas fa-long-arrow-alt-up"></i>
|
|
priority: 0
|
|
canoe=put_in;egress:
|
|
sign: <i class="fas fa-arrows-alt-v"></i>
|
|
priority: 0
|
|
leisure=slipway:
|
|
sign: <i class="fas fa-ship"></i>
|
|
priority: 1
|
|
shop=shop:
|
|
sign: <i class="fas fa-store-alt"></i>
|
|
priority: 3
|
|
shop=rental:
|
|
sign: <i class="fas fa-store"></i>
|
|
priority: 3
|
|
waterway=portage:
|
|
sign:
|
|
priority: 2
|
|
|