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.
78 lines
2.1 KiB
78 lines
2.1 KiB
type: overpass
|
|
name:
|
|
en: Paddling Amenities
|
|
query:
|
|
'12': |-
|
|
(
|
|
node["canoe"="put_in"];
|
|
node["leisure"="slipway"];
|
|
way["canoe"="portage"];
|
|
nwr[shop~"^(boat)$"]["boat:type"~"^(.*;|)canoe|kayak|sup(|;.*)$"];
|
|
)
|
|
feature:
|
|
pre: |-
|
|
{% if 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 = tags.shop %}
|
|
{% endif %}
|
|
|
|
{% set constIndex = (key ~ "=" ~ value) %}
|
|
{% set item = const[constIndex] %}
|
|
|
|
title: |
|
|
{{ localizedTag(tags, 'name') | default(localizedTag(tags, 'operator')) | default(localizedTag(tags, 'ref')) }}
|
|
description: |
|
|
{{ tagTrans(key, value) }}
|
|
body: |-
|
|
{% if constIndex in ['canoe=put_in', 'leisure=slipway','canoe=portage'] %}
|
|
<dl>
|
|
<dt>{{ keyTrans('Description') }}</dt>
|
|
<dd>{{ localizedTag(tags, 'description') }}</dd>
|
|
|
|
<dt>{{ keyTrans('Surface') }}</dt>
|
|
<dd>{{ attribute(tags, 'surface') ? tagTrans('surface', attribute(tags, 'surface')) : '' }}</dd>
|
|
|
|
<dt>{{ keyTrans('Access') }}</dt>
|
|
<dd>{{ attribute(tags, 'access') ? tagTrans('access', attribute(tags, 'access')) : '' }}</dd>
|
|
|
|
<dt>{{ keyTrans('Fee') }}</dt>
|
|
<dd>{{ attribute(tags, 'fee') ? tagTrans('fee', attribute(tags, 'fee')) : '' }}</dd>
|
|
|
|
<dt>{{ trans('Photos') }}</dt>
|
|
<dd>
|
|
{% if attribute(tags, 'mapillary') %}
|
|
<a href="https://www.mapillary.com/app/?focus=photo&pKey={{ attribute(tags, 'mapillary') }}" rel="noreferrer" target="_blank">Mapillary</a>
|
|
{% endif %}
|
|
</dd>
|
|
|
|
</dl>
|
|
|
|
{% endif %}
|
|
markerSign: '{{ item[''sign''] }}'
|
|
|
|
priority: |-
|
|
{% if item is defined %}
|
|
{{ item['priority'] }}
|
|
{% else %}
|
|
10
|
|
{% endif %}
|
|
|
|
const:
|
|
canoe=put_in:
|
|
sign: 🛶
|
|
priority: 0
|
|
leisure=slipway:
|
|
sign: 🚣🏻
|
|
priority: 1
|
|
canoe=portage:
|
|
sign: 🚶🏻
|
|
priority: 2
|
|
shop=boat:
|
|
sign: 🛒
|
|
priority: 3
|