name:
ca: Instal·lacions de Rem
en: Paddling Amenities
fr: Équipements de pagayage
it: Equipaggiamento per la navigazione a remo
pl: Udogodnienia związane z wiosłowaniem
pt-br: Equipamentos
tr: Kürek Tesisleri
type: overpass
query:
'14': |-
(
node["canoe"~"^(put_in|egress|put_in;egress)$"];
node["waterway"="access_point"];
node["leisure"="slipway"];
way["canoe"="portage"];
way[highway][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' or attribute(tags, 'portage') %}
{% set key = 'portage' %}
{% set value = 'portage' %}
{% elseif tags.waterway and tags.waterway== 'access_point' %}
{% set key = 'waterway' %}
{% set value = tags.waterway %}
{% elseif tags.canoe and tags.canoe not in ['yes','designated','permissive','permit','discouraged','private','no']%}
{% 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 key not in ['shop'] %}
{% if attribute(tags, 'surface') %}
-
{{ keyTrans('Surface') }}:
{{ attribute(tags, 'surface') ? tagTrans('surface', attribute(tags, 'surface')) : '' }}
{% endif %}
{% if attribute(tags, 'operator') %}
-
{{ keyTrans('Operator') }}:
{{ attribute(tags, 'operator') ? tagTrans('operator', attribute(tags, 'operator')) : '' }}
{% endif %}
{% if attribute(tags, 'access') %}
-
{{ keyTrans('Access') }}:
{{ attribute(tags, 'access') ? tagTrans('access', attribute(tags, 'access')) : '' }}
{% endif %}
{% if attribute(tags, 'canoe') and tags.canoe in ['yes','designated','permissive','permit','discouraged','private','no'] %}
-
{{ keyTrans('Canoe Access') }}:
{{ attribute(tags, 'canoe') ? tagTrans('access', attribute(tags, 'canoe')) : '' }}
{% endif %}
{% if attribute(tags, 'portage') and tags.portage in ['yes','designated','permissive','permit','discouraged','private','no'] %}
-
{{ keyTrans('Portage Access') }}:
{{ attribute(tags, 'portage') ? tagTrans('access', attribute(tags, 'portage')) : '' }}
{% endif %}
{% if attribute(tags, 'fee') %}
-
{{ keyTrans('Fee') }}:
{{ attribute(tags, 'fee') ? tagTrans('fee', attribute(tags, 'fee')) : '' }}
{% endif %}
{% if attribute(tags, 'mapillary') %}
-
{{ trans('Photos') }}:
Mapillary
{% endif %}
{% endif %}
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:
portage=portage:
sign:
priority: 2
waterway=access_point:
sign:
priority: 0
canoe=put_in:
sign:
priority: 0
canoe=egress:
sign:
priority: 0
canoe=put_in;egress:
sign:
priority: 0
leisure=slipway:
sign:
priority: 1
shop=shop:
sign:
priority: 3
shop=rental:
sign:
priority: 3