Merge branch 'develop' into sauna

This commit is contained in:
Pieter Vander Vennet 2025-06-03 22:22:01 +00:00
commit eabf72d121
26296 changed files with 126493 additions and 3527308 deletions

26
.forgejo/setup/action.yml Normal file
View file

@ -0,0 +1,26 @@
name: 'Setup'
description: 'Checkout code, set up Nodejs, run `npm ci`'
runs:
using: 'composite'
steps:
- uses: actions/checkout@v4
- name: Setup up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: package-lock.json
- name: pwd
run: pwd && ls
shell: bash
- name: install deps
run: npm ci
shell: bash
- name: sync translations
run: mkdir src/assets/generated && npm run generate:translations
shell: bash

View file

@ -0,0 +1,24 @@
name: 'Upload_hetzner'
description: 'Uploads a directory to hetzner. Will zip first, for performance'
inputs:
src:
description: 'The source directory'
required: true
dst:
description: "The destination directory. The source directory will be placed _inside_"
required: true
runs:
using: 'composite'
steps:
- name: Upload
shell: bash
run: |
F=$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 16)
cd ${{ inputs.src }}
zip $F.zip -r ./*
scp $F.zip hetzner:${{ inputs.dst }}/$F.zip
ssh hetzner "cd ${{ inputs.dst }} && unzip $F.zip && rm $F.zip"

View file

@ -4,21 +4,11 @@ on:
- cron: "0 2 * * *" - cron: "0 2 * * *"
jobs: jobs:
daily_data_maintenance: create_community_index:
runs-on: [ ubuntu-latest, hetzner-access ] runs-on: [ hetzner-access ]
steps: steps:
- uses: https://source.mapcomplete.org/actions/checkout@v4 - uses: https://source.mapcomplete.org/actions/checkout@v4
- uses: ./.forgejo/setup
- name: Set up Node.js
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: package-lock.json
- name: install deps
run: npm ci
shell: bash
- name: create community index files - name: create community index files
shell: bash shell: bash
@ -31,6 +21,11 @@ jobs:
scp community-index.zip hetzner:data/ scp community-index.zip hetzner:data/
ssh hetzner "cd data && rm -rf community-index/ && unzip community-index.zip && rm community-index.zip" ssh hetzner "cd data && rm -rf community-index/ && unzip community-index.zip && rm community-index.zip"
update_statistics:
runs-on: [ ubuntu-latest, hetzner-access ]
steps:
- uses: https://source.mapcomplete.org/actions/checkout@v4
- uses: ./.forgejo/setup
- name: Update statistics - name: Update statistics
shell: bash shell: bash

View file

@ -7,20 +7,10 @@ on:
jobs: jobs:
deploy_on_hosted: deploy_on_hosted:
runs-on: [ubuntu-latest, hetzner-access] runs-on: [ hetzner-access ]
steps: steps:
- uses: https://source.mapcomplete.org/actions/checkout@v4 - uses: https://source.mapcomplete.org/actions/checkout@v4
- uses: ./.forgejo/setup
- name: Set up Node.js
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: package-lock.json
- name: install deps
run: npm ci
shell: bash
- name: create generated dir - name: create generated dir
run: mkdir -p ./assets/generated run: mkdir -p ./assets/generated
@ -30,21 +20,14 @@ jobs:
run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run download:editor-layer-index run: npm run generate:licenses; npm run generate:images; npm run generate:charging-stations; npm run generate:service-worker; npm run download:editor-layer-index
shell: bash shell: bash
- name: sync translations
run: npm run generate:translations
shell: bash
- name: Prepare build - name: Prepare build
run: npm run generate:service-worker && ./scripts/prepare-build.sh run: npm run generate:service-worker && ./scripts/prepare-build.sh
shell: bash shell: bash
- name: Run tests - name: Run tests
run: | run: |
# This is the same as `npm run test`, but `vitest` doesn't want to run within npm :shrug:
export NODE_OPTIONS="--max-old-space-size=8192" export NODE_OPTIONS="--max-old-space-size=8192"
npm run clean:tests npm run test
npm run generate:doctests 2>&1 | grep -v "No doctests found in"
vitest --run test && npm run clean:tests
shell: bash shell: bash
- name: Build files - name: Build files

View file

@ -5,20 +5,10 @@ on:
jobs: jobs:
deploy_single_theme: deploy_single_theme:
runs-on: [ ubuntu-latest, hetzner-access ] runs-on: [ hetzner-access ]
steps: steps:
- uses: https://source.mapcomplete.org/actions/checkout@v4 - uses: https://source.mapcomplete.org/actions/checkout@v4
- uses: ./.forgejo/setup
- name: Set up Node.js
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: package-lock.json
- name: install deps
run: npm ci
shell: bash
- name: create generated dir - name: create generated dir
run: mkdir ./assets/generated run: mkdir ./assets/generated

View file

@ -0,0 +1,25 @@
on:
workflow_dispatch:
schedule:
- cron: "0 2 1 * *"
jobs:
update_nsi_logos:
runs-on: [ hetzner-access ]
steps:
- uses: https://source.mapcomplete.org/actions/checkout@v4
- uses: ./.forgejo/setup
- name: init
shell: bash
run: mkdir -p src/assets/generated/ && mkdir -p public/assets/data/nsi/stats/ && npm run init
- name: Download the latest NSI
shell: bash
run: npm run download:nsi
- uses: ./.forgejo/upload_hetzner
with:
src: "./public/assets/data/nsi"
dst: "/root/data/nsi"

View file

@ -0,0 +1,68 @@
on:
push:
tags:
- 'v*'
jobs:
build_android:
runs-on: hetzner-access
steps:
- uses: https://source.mapcomplete.org/actions/checkout@v4
- uses: https://source.mapcomplete.org/actions/setup-android@v3.2.2
- name: Set up Node.js
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: package-lock.json
- name: install deps
run: npm ci
shell: bash
- run: npm run init
- name: clone submodule
shell: bash
run: |
echo -e "[submodule \"android\"]\n\tpath = android\n\turl = https://source.mapcomplete.org/MapComplete/android-wrapper.git" > .gitmodules
cat .gitmodules
git submodule init
git submodule update
- name: generate layers
run: npm run generate:layeroverview
- name: test
run: npm run test
- name: prepare android build
run: npm run android:prepare
- name: Decode keystore
run: echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > ~/.gradle/release-key.jks
- name: Grant execute permission to gradlew
run: cd android && chmod +x ./gradlew
- name: Build signed APK
run: |
cd android
export ANDROID_SDK_HOME=/home/runner/.android/sdk/
export PATH=$ANDROID_SDK_HOME/tools:$ANDROID_SDK_HOME/platform-tools:$ANDROID_SDK_HOME/:$ANDROID_SDK_HOME/cmdline-tools/latest/tools/bin:$PATH
export storeFile=my-release-key.jks
export storePassword=${{ secrets.KEYSTORE_PASSWORD }}
export keyAlias=${{ secrets.KEY_ALIAS }}
export keyPassword=${{ secrets.KEY_PASSWORD }}
./gradlew build
./gradlew assembleRelease
- name: Upload APK to hetzner
shell: bash
run: |
TAG=$( echo ${{ env.GITHUB_REF_NAME }} )
scp android/app/build/outputs/apk/release/app-release.apk hetzner:~/public/apk/mapcomplete-$TAG.apk
ssh hetzner 'rm -f public/apk/mapcomplete-latest.apk && cp "public/apk/$(ls -v public/apk/ | tail -n 1)" public/apk/mapcomplete-latest.apk'

View file

@ -6,20 +6,14 @@ on:
jobs: jobs:
daily_data_maintenance: daily_data_maintenance:
runs-on: [ lain ] runs-on: [ osm-cache ]
steps: steps:
- uses: https://source.mapcomplete.org/actions/checkout@v4 - uses: https://source.mapcomplete.org/actions/checkout@v4
- uses: ./.forgejo/setup
- name: Set up Node.js
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: package-lock.json
- name: Init all dependencies and layers - name: Init all dependencies and layers
shell: bash shell: bash
run: npm ci && npm run init run: npm run init
- name: Create export script - name: Create export script
shell: bash shell: bash

2
.gitmodules vendored
View file

@ -1,3 +1,3 @@
[submodule "android"] [submodule "android"]
path = android path = android
url = git@github.com:MapComplete/android.git url = forgejo@source.mapcomplete.org:MapComplete/android-wrapper.git

View file

@ -4,6 +4,10 @@
"type": "feat", "type": "feat",
"section": "Features" "section": "Features"
}, },
{
"type": "feature",
"section": "Features"
},
{ {
"type": "fix", "type": "fix",
"section": "Bug Fixes" "section": "Bug Fixes"
@ -51,4 +55,4 @@
], ],
"commitUrlFormat": "https://source.mapcomplete.org/MapComplete/MapComplete/commits/{{hash}}", "commitUrlFormat": "https://source.mapcomplete.org/MapComplete/MapComplete/commits/{{hash}}",
"compareUrlFormat": "https://source.mapcomplete.org/MapComplete/MapComplete/compare/{{previousTag}}...{{currentTag}}" "compareUrlFormat": "https://source.mapcomplete.org/MapComplete/MapComplete/compare/{{previousTag}}...{{currentTag}}"
} }

View file

@ -2,6 +2,187 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.51.9](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.51.7...v0.51.9) (2025-06-03)
### Bug Fixes
* add comment on duplicate nearby images, make sure they are always deduplicated ([493b563](https://source.mapcomplete.org/MapComplete/MapComplete/commits/493b563766f740a4b95bd15f11422af9aa85b236))
* add comment on duplicate nearby images, make sure they are always deduplicated ([a3aba99](https://source.mapcomplete.org/MapComplete/MapComplete/commits/a3aba991c51b6aacdcf3058644bd00189f3bed25))
* fix loading notes based on hash ([cde7bf6](https://source.mapcomplete.org/MapComplete/MapComplete/commits/cde7bf6d9aa7c521b9b4a22fd52509d8e725cae5))
* fix problem of pending preference parts ([10e0262](https://source.mapcomplete.org/MapComplete/MapComplete/commits/10e0262a0dd65415183d01d895ab976691cb7ae5))
* fix shared cookie on homepage ([5a4636c](https://source.mapcomplete.org/MapComplete/MapComplete/commits/5a4636cc4bd9993ce72b9c690dfd4421e9cae708))
* inspector: fix AggregateImages.svelte ([5319412](https://source.mapcomplete.org/MapComplete/MapComplete/commits/5319412dacea4e9885a7c911e955efdc60840eee))
* inspector: fix AggregateImages.svelte ([e2e3e4b](https://source.mapcomplete.org/MapComplete/MapComplete/commits/e2e3e4b51d17c863d5c75e2c9bc62e3479e8e888))
* **inspector:** graphs show up now ([3614afb](https://source.mapcomplete.org/MapComplete/MapComplete/commits/3614afb75e8a6227cb76c3cd489c014b9f94c024))
* **nearby_pictures:** add panoramax host ([85645f3](https://source.mapcomplete.org/MapComplete/MapComplete/commits/85645f3706fff2574b8f83e501c6021898bd27a9))
* probably partial fix of [#2407](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2407) ([d4c0cd9](https://source.mapcomplete.org/MapComplete/MapComplete/commits/d4c0cd9eb176d8ed1ee609a1a820743d467d9ad5))
* probably partial fix of [#2407](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2407) ([68d9606](https://source.mapcomplete.org/MapComplete/MapComplete/commits/68d96063acb0e5c1299b12dc38ada4440b493958))
* regenerate NSI-logos, should fix regression reported in [#2300](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2300) ([4744471](https://source.mapcomplete.org/MapComplete/MapComplete/commits/4744471495309f7e2e6ec748528ab0fd6dc977f8))
### Theme improvements
* **aircraft:** add historical aircraft layer and theme, https://en.osm.town/@pietervdvn/114491536018069317 ([29db266](https://source.mapcomplete.org/MapComplete/MapComplete/commits/29db2664c3ff52cb607f6779c109b748b3746287))
* **aircraft:** add historical aircraft layer and theme, https://en.osm.town/@pietervdvn/114491536018069317 ([0e91656](https://source.mapcomplete.org/MapComplete/MapComplete/commits/0e91656dd68a8c1a687200e623ddb6b94811f350))
* **bench:** support alias for gray ([7597bf0](https://source.mapcomplete.org/MapComplete/MapComplete/commits/7597bf0e9191180cdb505b64dbf20d9b94a19930))
* **circular_economy:** correctly load second_hand=yes|only ([d7445d7](https://source.mapcomplete.org/MapComplete/MapComplete/commits/d7445d795b92830daa884d3096241c6ed8d4050d))
* **elevator:** Move speech output question higher, add condition on induction loop question, see [#2411](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2411) ([6df457f](https://source.mapcomplete.org/MapComplete/MapComplete/commits/6df457fb387e42280c525306e1edcf282bf90c9b))
* **elevator:** Move speech output question higher, add condition on induction loop question, see [#2411](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2411) ([41e501c](https://source.mapcomplete.org/MapComplete/MapComplete/commits/41e501c18e6888a4b99678baf294cea325a71e7c))
* **food:** add 'spanish' as option ([c0e02a3](https://source.mapcomplete.org/MapComplete/MapComplete/commits/c0e02a3540d5008d5168da964d7cd2537b53f733))
* **food:** add 'spanish' as option ([cdd5003](https://source.mapcomplete.org/MapComplete/MapComplete/commits/cdd5003aed8a81024b19322af941ccf7ec9fb7dd))
* **historic_aircraft:** make build work ([8c80e98](https://source.mapcomplete.org/MapComplete/MapComplete/commits/8c80e98fca899ecbfe04d96fcb248303110c66f1))
* **historic_aircraft:** make build work ([f673b54](https://source.mapcomplete.org/MapComplete/MapComplete/commits/f673b540e53c144ca19d69cf8d7794c89dc3b14d))
* **historic_rolling_stock:** create rolling stock theme ([9135f1d](https://source.mapcomplete.org/MapComplete/MapComplete/commits/9135f1df6b4abfc973c50efc0fdbe6b2cd2651be))
* **historic_rolling_stock:** create rolling stock theme ([a591a44](https://source.mapcomplete.org/MapComplete/MapComplete/commits/a591a44c1a334417f91e00af68d004c57e5e92d0))
* **pubs:** add reusable cups question (https://en.osm.town/[@sunset](https://source.mapcomplete.org/sunset)_sakura/114496889401421866) ([0c95b1b](https://source.mapcomplete.org/MapComplete/MapComplete/commits/0c95b1ba1c9663da1e72373defad50bfc574e3b8))
* **rolling_stock:** add preset type selection + fix typo ([d711b6a](https://source.mapcomplete.org/MapComplete/MapComplete/commits/d711b6a8ef8b851751734dd6300a0aa7d3c7923c))
* **rolling_stock:** more questions ([a2c9276](https://source.mapcomplete.org/MapComplete/MapComplete/commits/a2c92765dd13c5522f5681d2ff2f615e797b5b13))
* **rolling_stock:** more questions ([3d90e14](https://source.mapcomplete.org/MapComplete/MapComplete/commits/3d90e143d6e9b5c334c58cab1598274ce386b7ce))
* **shops:** add hairdresser specific questions ([51aa43e](https://source.mapcomplete.org/MapComplete/MapComplete/commits/51aa43efaa3fd5156e068ae6830454ef518f77fd))
* **shops:** add hairdresser specific questions ([cd8b614](https://source.mapcomplete.org/MapComplete/MapComplete/commits/cd8b614bd975bb8f0738da469bcb0cce58a9cb7a))
* **stations:** show elevators on a lower zoom level ([ab88afc](https://source.mapcomplete.org/MapComplete/MapComplete/commits/ab88afc3979c14ebfccb40cacd418148f078f3ac))
* **toilets:** add an allowed range to some freeform inputs, allow to specify 'units' in the freeform, add the possibility to convert units ([fb8ead2](https://source.mapcomplete.org/MapComplete/MapComplete/commits/fb8ead2a2c03ae0fd2aa1c6935d13be728c258d7))
* **toilets:** add an allowed range to some freeform inputs, allow to specify 'units' in the freeform, add the possibility to convert units ([1e0ac3f](https://source.mapcomplete.org/MapComplete/MapComplete/commits/1e0ac3febf06272a5978a87cceeb281929356936))
* **windpumps:** add windpump layer ([f092f2f](https://source.mapcomplete.org/MapComplete/MapComplete/commits/f092f2fdd93fd65173470f4764c22c66a77d189f))
* **windpumps:** add windpump layer ([f03877b](https://source.mapcomplete.org/MapComplete/MapComplete/commits/f03877b570e569c8ef9ca716edb39e5f9e6852b2))
### [0.51.8](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.51.7...v0.51.8) (2025-05-24)
### Bug Fixes
* add comment on duplicate nearby images, make sure they are always deduplicated ([a3aba99](https://source.mapcomplete.org/MapComplete/MapComplete/commits/a3aba991c51b6aacdcf3058644bd00189f3bed25))
* fix loading notes based on hash ([cde7bf6](https://source.mapcomplete.org/MapComplete/MapComplete/commits/cde7bf6d9aa7c521b9b4a22fd52509d8e725cae5))
* inspector: fix AggregateImages.svelte ([e2e3e4b](https://source.mapcomplete.org/MapComplete/MapComplete/commits/e2e3e4b51d17c863d5c75e2c9bc62e3479e8e888))
* probably partial fix of [#2407](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2407) ([68d9606](https://source.mapcomplete.org/MapComplete/MapComplete/commits/68d96063acb0e5c1299b12dc38ada4440b493958))
### Theme improvements
* **aircraft:** add historical aircraft layer and theme, https://en.osm.town/@pietervdvn/114491536018069317 ([0e91656](https://source.mapcomplete.org/MapComplete/MapComplete/commits/0e91656dd68a8c1a687200e623ddb6b94811f350))
* **elevator:** Move speech output question higher, add condition on induction loop question, see [#2411](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2411) ([41e501c](https://source.mapcomplete.org/MapComplete/MapComplete/commits/41e501c18e6888a4b99678baf294cea325a71e7c))
* **food:** add 'spanish' as option ([cdd5003](https://source.mapcomplete.org/MapComplete/MapComplete/commits/cdd5003aed8a81024b19322af941ccf7ec9fb7dd))
* **historic_aircraft:** make build work ([f673b54](https://source.mapcomplete.org/MapComplete/MapComplete/commits/f673b540e53c144ca19d69cf8d7794c89dc3b14d))
* **historic_rolling_stock:** create rolling stock theme ([a591a44](https://source.mapcomplete.org/MapComplete/MapComplete/commits/a591a44c1a334417f91e00af68d004c57e5e92d0))
* **rolling_stock:** more questions ([3d90e14](https://source.mapcomplete.org/MapComplete/MapComplete/commits/3d90e143d6e9b5c334c58cab1598274ce386b7ce))
* **shops:** add hairdresser specific questions ([cd8b614](https://source.mapcomplete.org/MapComplete/MapComplete/commits/cd8b614bd975bb8f0738da469bcb0cce58a9cb7a))
* **toilets:** add an allowed range to some freeform inputs, allow to specify 'units' in the freeform, add the possibility to convert units ([1e0ac3f](https://source.mapcomplete.org/MapComplete/MapComplete/commits/1e0ac3febf06272a5978a87cceeb281929356936))
* **windpumps:** add windpump layer ([f03877b](https://source.mapcomplete.org/MapComplete/MapComplete/commits/f03877b570e569c8ef9ca716edb39e5f9e6852b2))
### [0.51.7](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.51.6...v0.51.7) (2025-05-12)
### Bug Fixes
* fix error reporting ([913add4](https://source.mapcomplete.org/MapComplete/MapComplete/commits/913add4295216f45098cf7f8a98bcc263f7a7d93))
* license info in 'nearby images' now works for mapillary, add bbox search for panoramax ([7f5544c](https://source.mapcomplete.org/MapComplete/MapComplete/commits/7f5544c1e52aac146fa7313f7b9b7335649f55d2))
### [0.51.6](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.51.5...v0.51.6) (2025-05-08)
### Bug Fixes
* add better error message if "requiredLayers" didn't set an ID ([01d9243](https://source.mapcomplete.org/MapComplete/MapComplete/commits/01d924374e07d81729c5e6378796458d5d85b42f))
* fix tests ([767bd18](https://source.mapcomplete.org/MapComplete/MapComplete/commits/767bd18234e281c5cfd70259bee8920027b3b138))
* fix tests ([63b96e9](https://source.mapcomplete.org/MapComplete/MapComplete/commits/63b96e97bbcf349daf1ab5cc1386431ac9ec0181))
* improve detection of needed layers ([f949142](https://source.mapcomplete.org/MapComplete/MapComplete/commits/f94914297f48569b3197de65fbe01ad6ca4f8e8b))
* uploading a delayed image should now report the correct theme ([3c7441d](https://source.mapcomplete.org/MapComplete/MapComplete/commits/3c7441d93b58a639c26b846724583aa21c4d0e46))
### Theme improvements
* **artwork:** ask for 'subject:wikidata', fix [#1955](https://source.mapcomplete.org/MapComplete/MapComplete/issues/1955) ([07af8c1](https://source.mapcomplete.org/MapComplete/MapComplete/commits/07af8c1aea0b95d90ce4e905594de4dcb7e45f89))
* **GRB:** fix detection of overlapping buildings ([6bdda9f](https://source.mapcomplete.org/MapComplete/MapComplete/commits/6bdda9fb124a6f987942cd6336a54101bc05731c))
### [0.51.5](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.51.4...v0.51.5) (2025-05-04)
### Bug Fixes
* actually show data ([5f22b90](https://source.mapcomplete.org/MapComplete/MapComplete/commits/5f22b90bd8e717094f724efde142ffa674390527))
### [0.51.4](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.52.3-b...v0.51.4) (2025-05-04)
### Bug Fixes
* fix 'flyto' when clicking a previously visited element ([22b377a](https://source.mapcomplete.org/MapComplete/MapComplete/commits/22b377a37f68b8bc50f2757c10ccf64cd32714a7))
* fix build, use correct path ([7324f71](https://source.mapcomplete.org/MapComplete/MapComplete/commits/7324f71ee306d07b18bd3d1cc41a3d55b2b832bd))
### Theme improvements
* fix faulty builtin question for wikipedia: actually show the article if one exists ([097e07c](https://source.mapcomplete.org/MapComplete/MapComplete/commits/097e07c74726fa830172c01fe775aa46eaf99db3))
### [0.51.3](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.51.2...v0.51.3) (2025-05-03)
### Bug Fixes
* move validation error to validateLayer, make only a warning ([75e8f40](https://source.mapcomplete.org/MapComplete/MapComplete/commits/75e8f406450368815d079010ed70ab6b9ffa486b))
* when prefixing a tagRendering, correctly handle ([14691ca](https://source.mapcomplete.org/MapComplete/MapComplete/commits/14691cac45b700bd99c6b7379439ecb3251b92e1))
### Theme improvements
* **guideposts:** update guidepost-type questions, make sure they are shown in cyclenodes.json and walkingnodes.json (if relevant), show high-zoom layer to avoid duplicates, see [#2385](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2385) ([79d43ae](https://source.mapcomplete.org/MapComplete/MapComplete/commits/79d43aef40a42faa7051c04bfe389e0ad75d214a))
* **vending_machine:** add menstrual_products ([a91ea62](https://source.mapcomplete.org/MapComplete/MapComplete/commits/a91ea626a7b95c22bca24e6c165ea0f36e789182))
* **wheelchair:** add questions on the presence of grab rails in toilets and showers ([bab506d](https://source.mapcomplete.org/MapComplete/MapComplete/commits/bab506d8f6c1618606900da5af0fa5c72709b90e))
### [0.51.2](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.51.1...v0.51.2) (2025-04-29)
### Features
* add link to the original provider, see [#2387](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2387) ([3e5b144](https://source.mapcomplete.org/MapComplete/MapComplete/commits/3e5b1444cca871fcb8f9c785e8473cb000703927))
* layer validation system now builds a dependency graph and only updates what is needed, makes "refresh:layeroverview" redundant ([fda0bc6](https://source.mapcomplete.org/MapComplete/MapComplete/commits/fda0bc6b2edeb01280cbc559420dfe8687b5be02))
* moving a point due to relocatoin now shows a searchbar (again) ([15cbadc](https://source.mapcomplete.org/MapComplete/MapComplete/commits/15cbadc4e01f9594fcdff64636ddcc270ce535da))
### Bug Fixes
* allow inline images in index.html ([0441772](https://source.mapcomplete.org/MapComplete/MapComplete/commits/0441772d3e4a61ea5ef2a0e52a13806920e6a140))
* attempt to fix layers which don't hide ([01034b1](https://source.mapcomplete.org/MapComplete/MapComplete/commits/01034b186e22ade4ed4eb9d2a8656c18c8e2f2d5))
* canonicalize wikimedia links, see [#2367](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2367), fix attribution ([518a426](https://source.mapcomplete.org/MapComplete/MapComplete/commits/518a426805363eef0cb2e25fc3965cfb2936ed8e))
* don't crash if an unselected element is selected (by not selecting it) ([981b412](https://source.mapcomplete.org/MapComplete/MapComplete/commits/981b412180bd89cdafe4064f366ffb48cb5e74ef))
* don't crash if no home location is set and the hotkey is triggered ([991925b](https://source.mapcomplete.org/MapComplete/MapComplete/commits/991925ba35af6cdcdb7055ddd261cb12d58123bd))
* don't hint on images if they are blacklisted ([4f419b9](https://source.mapcomplete.org/MapComplete/MapComplete/commits/4f419b9321ca91b0876adedf274ae2bec218060c))
* fix build ([1a22e12](https://source.mapcomplete.org/MapComplete/MapComplete/commits/1a22e12fa33c168e7a53fd4e05a1381b0391d8e9))
* opening hours now correctly shows "closes at <point far in the future>" ([d5b0976](https://source.mapcomplete.org/MapComplete/MapComplete/commits/d5b0976fb0b1df68772146d3e972bd245672951a))
* tests ([55c8ec9](https://source.mapcomplete.org/MapComplete/MapComplete/commits/55c8ec95f36834049a349e7aa2d5e35179c37e9a))
### Theme improvements
* add toilet information in food and shops ([3bc8eae](https://source.mapcomplete.org/MapComplete/MapComplete/commits/3bc8eae6b121e40941fd462c8fb3552f477bdec9))
* add toilet layers automatically if toilet information is included ([af2636b](https://source.mapcomplete.org/MapComplete/MapComplete/commits/af2636bfaa6f58cc6d82f46b8cc9025e861023ee))
* allow to easily import tagrenderings and add a prefix key to all tags ([01680f2](https://source.mapcomplete.org/MapComplete/MapComplete/commits/01680f236caf1a9b1bd6b0d4c802ad4a07aa6ef8))
* **artwork:** add poem as artwork type, fix [#2392](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2392) ([cbf398e](https://source.mapcomplete.org/MapComplete/MapComplete/commits/cbf398ef6dea47a4e9ab5c8bab8c22627a3717c3))
* **bike_cleaning:** add payment options, opening hours ([8584a4b](https://source.mapcomplete.org/MapComplete/MapComplete/commits/8584a4ba68fc2e0e0b35e9c752a833e208200ecb))
* **bike_parking:** add 'anchor' as bicycle_parking-type, fix [#2381](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2381) ([4bd61c3](https://source.mapcomplete.org/MapComplete/MapComplete/commits/4bd61c30a3f4cbf63d28a79497cb1e1c580ee694))
* **cafe_pub, toilets:** add toilet information to pubs; forward wheelchair accessibility information to 'toilet_at_amenity' ([455b2c6](https://source.mapcomplete.org/MapComplete/MapComplete/commits/455b2c641c41634784c57d53ee657246b6b3af4d))
* **maxspeed:** support forward/backward, fix [#1127](https://source.mapcomplete.org/MapComplete/MapComplete/issues/1127) ([5515114](https://source.mapcomplete.org/MapComplete/MapComplete/commits/5515114be95bd442d682c01818e0fcd48507c455))
* **mobility_hub:** Add condition to marker question ([369c2e6](https://source.mapcomplete.org/MapComplete/MapComplete/commits/369c2e6ee882476003807f9bef97f0b413ce0656))
* **mobility_hub:** noname and network options ([f072b82](https://source.mapcomplete.org/MapComplete/MapComplete/commits/f072b82fc3937fac6ec90b3a69f0f551b4ef6313))
* **nature:** add viewpoint and observation tower, fix [#2397](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2397), fix [#2400](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2400) ([4899065](https://source.mapcomplete.org/MapComplete/MapComplete/commits/4899065fc42060a51e366a195169c40c9117c02b))
* reintroduce check for defaultBackgroundID: make sure it _does_ exist as global layer ([6a1c5fe](https://source.mapcomplete.org/MapComplete/MapComplete/commits/6a1c5fec976562e624822fa720aa3e8ea5e1708e))
* simplify toilets theme by using the new prefix functionality ([92eca24](https://source.mapcomplete.org/MapComplete/MapComplete/commits/92eca242eca556e39c114f772b21c31e740739fa))
* **waste:** Include excrement bag dispensers ([#2020](https://source.mapcomplete.org/MapComplete/MapComplete/issues/2020)) ([45e20da](https://source.mapcomplete.org/MapComplete/MapComplete/commits/45e20dadee71e5c23a1bfadfd8f69f986c84e898))
### [0.51.1](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.51.0...v0.51.1) (2025-04-23)
### Bug Fixes
* actually upload images to notes ([a870724](https://source.mapcomplete.org/MapComplete/MapComplete/commits/a8707243cf186846ead4a02fb9e62d24f91e14e1))
### Theme improvements
* **mobility_hub:** Add examples and show sign type ([b5a365d](https://source.mapcomplete.org/MapComplete/MapComplete/commits/b5a365d3c31ac95c6042161288918d1d725323ad))
* **mobility_hub:** Add question about physical marker ([f59cf14](https://source.mapcomplete.org/MapComplete/MapComplete/commits/f59cf1430af7a0722a553b7bceaac589db3dab6d))
## [0.51.0](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.50.8...v0.51.0) (2025-04-15) ## [0.51.0](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.50.8...v0.51.0) (2025-04-15)
### [0.50.8](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.50.7...v0.50.8) (2025-04-15) ### [0.50.8](https://source.mapcomplete.org/MapComplete/MapComplete/compare/v0.50.7...v0.50.8) (2025-04-15)

View file

@ -70,6 +70,8 @@
- grave - grave
- guidepost - guidepost
- hackerspace - hackerspace
- historic_aircraft
- historic_rolling_stock
- hydrant - hydrant
- ice_cream - ice_cream
- indoors - indoors
@ -80,6 +82,7 @@
- lighthouse - lighthouse
- love_hotel - love_hotel
- map - map
- mobility_hub
- mountain_rescue - mountain_rescue
- nature_reserve - nature_reserve
- observation_tower - observation_tower
@ -122,7 +125,6 @@
- ticket_machine - ticket_machine
- ticket_validator - ticket_validator
- toilet - toilet
- toilet_at_amenity
- tool_library - tool_library
- tourism_accomodation - tourism_accomodation
- trail - trail
@ -132,6 +134,7 @@
- village_green - village_green
- waste_basket - waste_basket
- waste_disposal - waste_disposal
- windpump
- windturbine - windturbine
### luminous_or_lit ### luminous_or_lit
@ -213,6 +216,7 @@
- food_courts - food_courts
- governments - governments
- hackerspace - hackerspace
- mobility_hub
- nature_reserve - nature_reserve
- observation_tower - observation_tower
- outdoor_seating - outdoor_seating
@ -295,14 +299,18 @@
- artwork - artwork
- cinema - cinema
- historic_rolling_stock
- lighthouse - lighthouse
- nature_reserve - nature_reserve
- observation_tower - observation_tower
- school - school
- windpump
### memorial.memorial-questions ### memorial.memorial-questions
- artwork - artwork
- historic_aircraft
- historic_rolling_stock
### bench.bench-questions ### bench.bench-questions
@ -354,6 +362,7 @@
### opening_hours_24_7 ### opening_hours_24_7
- atm - atm
- bike_cleaning
- bike_repair_station - bike_repair_station
- charging_station - charging_station
- defibrillator - defibrillator
@ -392,7 +401,6 @@
- climbing_route - climbing_route
- shops - shops
- toilet - toilet
- toilet_at_amenity
### payment-options ### payment-options
@ -413,6 +421,35 @@
- bicycle_rental - bicycle_rental
- charging_station - charging_station
### payment-options-split
- bike_cleaning
- elongated_coin
- parking_ticket_machine
- shower
- souvenir_coin
- souvenir_note
- ticket_machine
- toilet
- vending_machine
### denominations-coins
- bike_cleaning
- elongated_coin
- parking_ticket_machine
- souvenir_coin
- souvenir_note
- ticket_machine
- vending_machine
### denominations-notes
- bike_cleaning
- parking_ticket_machine
- ticket_machine
- vending_machine
### opening_hours_24_7_default ### opening_hours_24_7_default
- bike_parking - bike_parking
@ -439,7 +476,6 @@
- ticket_machine - ticket_machine
- ticket_validator - ticket_validator
- toilet - toilet
- toilet_at_amenity
- vending_machine - vending_machine
- wayside_shrine - wayside_shrine
@ -457,6 +493,13 @@
- physiotherapist - physiotherapist
- school - school
### smoking
- cafe_pub
- food
- food_courts
- outdoor_seating
### wheelchair-access ### wheelchair-access
- cafe_pub - cafe_pub
@ -473,13 +516,6 @@
- tourism_accomodation - tourism_accomodation
- transit_stops - transit_stops
### smoking
- cafe_pub
- food
- food_courts
- outdoor_seating
### service:electricity ### service:electricity
- cafe_pub - cafe_pub
@ -497,24 +533,16 @@
- shops - shops
- tourism_accomodation - tourism_accomodation
### internet ### internet-all
- cafe_pub - cafe_pub
- climbing_gym - hackerspace
- food - outdoor_seating
- shops - tourism_accomodation
### internet-fee ### toilet_at_amenity_lib.all
- cafe_pub - cafe_pub
- climbing_gym
- food
- shops
### internet-ssid
- cafe_pub
- climbing_gym
- food - food
- shops - shops
@ -608,6 +636,24 @@
- climbing_gym - climbing_gym
### internet
- climbing_gym
- food
- shops
### internet-fee
- climbing_gym
- food
- shops
### internet-ssid
- climbing_gym
- food
- shops
### all_tags ### all_tags
- cycle_highways - cycle_highways
@ -638,33 +684,19 @@
- elevator - elevator
- reception_desk - reception_desk
### payment-options-split
- elongated_coin
- parking_ticket_machine
- shower
- souvenir_coin
- souvenir_note
- ticket_machine
- toilet
- vending_machine
### denominations-coins
- elongated_coin
- parking_ticket_machine
- souvenir_coin
- souvenir_note
- ticket_machine
- vending_machine
### check_date ### check_date
- elongated_coin - elongated_coin
- excrement_bag_dispenser
- playground - playground
- souvenir_coin - souvenir_coin
- souvenir_note - souvenir_note
### reservation
- food
- shops
### sugar_free ### sugar_free
- food - food
@ -700,12 +732,6 @@
- gps_track - gps_track
### internet-all
- hackerspace
- outdoor_seating
- tourism_accomodation
### diets ### diets
- ice_cream - ice_cream
@ -718,12 +744,6 @@
- indoors - indoors
### denominations-notes
- parking_ticket_machine
- ticket_machine
- vending_machine
### wheelchair ### wheelchair
- pharmacy - pharmacy
@ -753,6 +773,11 @@
- shops - shops
### grab_rail.has_grab_rail_lr
- shower
- toilet
### elongated_coin.designs ### elongated_coin.designs
- souvenir_coin - souvenir_coin
@ -765,14 +790,46 @@
- tertiary_education - tertiary_education
### toilet.prefixed ### grab_rail.has_grab_rail_behind
- toilet
### grab_rail.generic_questions
- toilet
### adult_changing_table.title
- toilet
### adult_changing_table.relevant_questions
- toilet
### toilet.amenity-no-prefix
- toilet_at_amenity - toilet_at_amenity
### toilet.amenity-prefixed
- toilet_at_amenity
### has_toilets
- toilet_at_amenity_lib
### toilet_at_amenity.relevant_questions
- toilet_at_amenity_lib
### brand ### brand
- tourism_accomodation - tourism_accomodation
### ref
- windpump
This document is autogenerated from [assets/layers/*.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/*.json) This document is autogenerated from [assets/layers/*.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/*.json)

View file

@ -76,7 +76,9 @@ This is a special layer - data is not sourced from OpenStreetMap
- [seating](#seating) - [seating](#seating)
- [maxstay](#maxstay) - [maxstay](#maxstay)
- [name](#name) - [name](#name)
3. [Filters](#filters) - [has_toilets](#has_toilets)
- [reservation](#reservation)
- [ref](#ref)
## Supported attributes ## Supported attributes
@ -119,112 +121,127 @@ This is a special layer - data is not sourced from OpenStreetMap
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/indoor#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/indoor/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/indoor#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/indoor/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/maxstay#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/maxstay/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [pfloat](../SpecialInputElements.md#pfloat) | [unlimited](https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/maxstay#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/maxstay/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [pfloat](../SpecialInputElements.md#pfloat) | [unlimited](https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dseparate) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/reservation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/reservation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/ref#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/ref/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | |
## Featureview elements and TagRenderings ## Featureview elements and TagRenderings
| id | question | labels | freeform key | | id | question | labels | freeform key |
-----|-----|-----|----- | -----|-----|-----|----- |
| [questions](#questions) | _{questions()}_ | | _Multiple choice only_ | | [questions](#questions) <br/> _(Original in [questions](./BuiltinQuestions.md#questions))_ | _{questions()}_ | | _Multiple choice only_ |
| [images](#images) | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ | | [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [images_no_blur](#images_no_blur) | _{image_carousel()}{image_upload(,,,true)}_ | | _Multiple choice only_ | | [images_no_blur](#images_no_blur) <br/> _(Original in [questions](./BuiltinQuestions.md#images_no_blur))_ | _{image_carousel()}{image_upload(,,,true)}_ | | _Multiple choice only_ |
| [mapillary](#mapillary) | _{mapillary_link()}_ | | _Multiple choice only_ | | [mapillary](#mapillary) <br/> _(Original in [questions](./BuiltinQuestions.md#mapillary))_ | _{mapillary_link()}_ | | _Multiple choice only_ |
| [export_as_gpx](#export_as_gpx) | _{export_as_gpx()}_ | | _Multiple choice only_ | | [export_as_gpx](#export_as_gpx) <br/> _(Original in [questions](./BuiltinQuestions.md#export_as_gpx))_ | _{export_as_gpx()}_ | | _Multiple choice only_ |
| [export_as_geojson](#export_as_geojson) | _{export_as_geojson()}_ | | _Multiple choice only_ | | [export_as_geojson](#export_as_geojson) <br/> _(Original in [questions](./BuiltinQuestions.md#export_as_geojson))_ | _{export_as_geojson()}_ | | _Multiple choice only_ |
| [wikipedia](#wikipedia) | What is the corresponding Wikidata entity?<br/>_{wikipedia():max-height:25rem}_<br/>2 options | | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) | | [wikipedia](#wikipedia) <br/> _(Original in [questions](./BuiltinQuestions.md#wikipedia))_ | What is the corresponding Wikidata entity?<br/>_{wikipedia():max-height:25rem}_<br/>2 options | | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [reviews](#reviews) | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ | | [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
| [phone](#phone) | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) | | [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [mastodon](#mastodon) | What is the Mastodon-handle of ?<br/>_{fediverse_link(contact:mastodon)}_ | | *[contact:mastodon](https://wiki.osm.org/wiki/Key:contact:mastodon)* ([fediverse](../SpecialInputElements.md#fediverse)) | | [mastodon](#mastodon) <br/> _(Original in [questions](./BuiltinQuestions.md#mastodon))_ | What is the Mastodon-handle of ?<br/>_{fediverse_link(contact:mastodon)}_ | | *[contact:mastodon](https://wiki.osm.org/wiki/Key:contact:mastodon)* ([fediverse](../SpecialInputElements.md#fediverse)) |
| [facebook](#facebook) | What is the facebook page of of ?<br/>_{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>_ | | *[contact:facebook](https://wiki.osm.org/wiki/Key:contact:facebook)* ([url](../SpecialInputElements.md#url)) | | [facebook](#facebook) <br/> _(Original in [questions](./BuiltinQuestions.md#facebook))_ | What is the facebook page of of ?<br/>_{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>_ | | *[contact:facebook](https://wiki.osm.org/wiki/Key:contact:facebook)* ([url](../SpecialInputElements.md#url)) |
| [osmlink](#osmlink) | _<a href='https://openstreetmap.org/{id}' target='_blank' rel='noopener'F><img src='./assets/svg/osm-logo-us.svg'/></a>_<br/>1 options | | _Multiple choice only_ | | [osmlink](#osmlink) <br/> _(Original in [questions](./BuiltinQuestions.md#osmlink))_ | _<a href='https://openstreetmap.org/{id}' target='_blank' rel='noopener'F><img src='./assets/svg/osm-logo-us.svg'/></a>_<br/>1 options | | _Multiple choice only_ |
| [email](#email) | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) | | [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) | | [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [wheelchair-access](#wheelchair-access) | Is this place accessible with a wheelchair?<br/>4 options | | _Multiple choice only_ | | [wheelchair-access](#wheelchair-access) <br/> _(Original in [questions](./BuiltinQuestions.md#wheelchair-access))_ | Is this place accessible with a wheelchair?<br/>4 options | | _Multiple choice only_ |
| [dog-access](#dog-access) | Are dogs allowed in this business?<br/>5 options | | _Multiple choice only_ | | [dog-access](#dog-access) <br/> _(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?<br/>5 options | | _Multiple choice only_ |
| [description](#description) | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.<br/>_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [description](#description) <br/> _(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.<br/>_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) |
| [opening_hours](#opening_hours) | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) | | [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>1 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) | | [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [opening_hours_24_7_default](#opening_hours_24_7_default) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) | | [opening_hours_24_7_default](#opening_hours_24_7_default) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7_default))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [opening_hours_by_appointment](#opening_hours_by_appointment) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>3 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) | | [opening_hours_by_appointment](#opening_hours_by_appointment) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_by_appointment))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>3 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [service:electricity](#service:electricity) | Does this amenity have electrical outlets, available to customers when they are inside?<br/>4 options | | _Multiple choice only_ | | [service:electricity](#service:electricity) <br/> _(Original in [questions](./BuiltinQuestions.md#service:electricity))_ | Does this amenity have electrical outlets, available to customers when they are inside?<br/>4 options | | _Multiple choice only_ |
| [payment-options](#payment-options) | Which methods of payment are accepted here?<br/>3 options | | _Multiple choice only_ | | [payment-options](#payment-options) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options))_ | Which methods of payment are accepted here?<br/>3 options | | _Multiple choice only_ |
| [payment-options-split](#payment-options-split) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options))_ | Which methods of payment are accepted here?<br/>7 options | | _Multiple choice only_ | | [payment-options-split](#payment-options-split) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options-split))_ | Which methods of payment are accepted here?<br/>7 options | | _Multiple choice only_ |
| [payment-options-advanced](#payment-options-advanced) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options))_ | Which methods of payment are accepted here?<br/>5 options | | _Multiple choice only_ | | [payment-options-advanced](#payment-options-advanced) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options-advanced))_ | Which methods of payment are accepted here?<br/>5 options | | _Multiple choice only_ |
| [denominations-coins](#denominations-coins) | What coins can you use to pay here?<br/>15 options | | _Multiple choice only_ | | [denominations-coins](#denominations-coins) <br/> _(Original in [questions](./BuiltinQuestions.md#denominations-coins))_ | What coins can you use to pay here?<br/>15 options | | _Multiple choice only_ |
| [denominations-notes](#denominations-notes) | what notes can you use to pay here?<br/>13 options | | _Multiple choice only_ | | [denominations-notes](#denominations-notes) <br/> _(Original in [questions](./BuiltinQuestions.md#denominations-notes))_ | what notes can you use to pay here?<br/>13 options | | _Multiple choice only_ |
| [all_tags](#all_tags) | _{all_tags()}_ | | _Multiple choice only_ | | [all_tags](#all_tags) <br/> _(Original in [questions](./BuiltinQuestions.md#all_tags))_ | _{all_tags()}_ | | _Multiple choice only_ |
| [multilevels](#multilevels) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | What levels does this elevator go to?<br/>_This elevator goes to floors {level}_<br/>5 options | | *[level](https://wiki.osm.org/wiki/Key:level)* ([string](../SpecialInputElements.md#string)) | | [multilevels](#multilevels) <br/> _(Original in [questions](./BuiltinQuestions.md#multilevels))_ | What levels does this elevator go to?<br/>_This elevator goes to floors {level}_<br/>5 options | | *[level](https://wiki.osm.org/wiki/Key:level)* ([string](../SpecialInputElements.md#string)) |
| [repeated](#repeated) | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ | | [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) | | [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [smoking](#smoking) | Is smoking allowed at ?<br/>3 options | | _Multiple choice only_ | | [smoking](#smoking) <br/> _(Original in [questions](./BuiltinQuestions.md#smoking))_ | Is smoking allowed at ?<br/>3 options | | _Multiple choice only_ |
| [induction-loop](#induction-loop) | Does this place have an audio induction loop for people with reduced hearing?<br/>2 options | | _Multiple choice only_ | | [induction-loop](#induction-loop) <br/> _(Original in [questions](./BuiltinQuestions.md#induction-loop))_ | Does this place have an audio induction loop for people with reduced hearing?<br/>2 options | | _Multiple choice only_ |
| [internet](#internet) | Does this place offer internet access?<br/>6 options | internet-all | _Multiple choice only_ | | [internet](#internet) <br/> _(Original in [questions](./BuiltinQuestions.md#internet))_ | Does this place offer internet access?<br/>6 options | internet-all | _Multiple choice only_ |
| [internet-fee](#internet-fee) | Is there a fee for internet access?<br/>3 options | internet-all | _Multiple choice only_ | | [internet-fee](#internet-fee) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-fee))_ | Is there a fee for internet access?<br/>3 options | internet-all | _Multiple choice only_ |
| [internet-ssid](#internet-ssid) | What is the network name for the wireless internet access?<br/>_The network name is <b>{internet_access:ssid}</b>_<br/>1 options | internet-all | *[internet_access:ssid](https://wiki.osm.org/wiki/Key:internet_access:ssid)* ([string](../SpecialInputElements.md#string)) | | [internet-ssid](#internet-ssid) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-ssid))_ | What is the network name for the wireless internet access?<br/>_The network name is <b>{internet_access:ssid}</b>_<br/>1 options | internet-all | *[internet_access:ssid](https://wiki.osm.org/wiki/Key:internet_access:ssid)* ([string](../SpecialInputElements.md#string)) |
| [luminous_or_lit](#luminous_or_lit) | Is this object lit or does it emit light?<br/>4 options | | _Multiple choice only_ | | [luminous_or_lit](#luminous_or_lit) <br/> _(Original in [questions](./BuiltinQuestions.md#luminous_or_lit))_ | Is this object lit or does it emit light?<br/>4 options | | _Multiple choice only_ |
| [survey_date](#survey_date) | When was this object last surveyed?<br/>_This object was last surveyed on <b>{survey:date}</b>_<br/>1 options | | *[survey:date](https://wiki.osm.org/wiki/Key:survey:date)* ([date](../SpecialInputElements.md#date)) | | [survey_date](#survey_date) <br/> _(Original in [questions](./BuiltinQuestions.md#survey_date))_ | When was this object last surveyed?<br/>_This object was last surveyed on <b>{survey:date}</b>_<br/>1 options | | *[survey:date](https://wiki.osm.org/wiki/Key:survey:date)* ([date](../SpecialInputElements.md#date)) |
| [check_date](#check_date) | When was this object last checked?<br/>_This object was last checked on <b>{check_date}</b>_<br/>1 options | | *[check_date](https://wiki.osm.org/wiki/Key:check_date)* ([date](../SpecialInputElements.md#date)) | | [check_date](#check_date) <br/> _(Original in [questions](./BuiltinQuestions.md#check_date))_ | When was this object last checked?<br/>_This object was last checked on <b>{check_date}</b>_<br/>1 options | | *[check_date](https://wiki.osm.org/wiki/Key:check_date)* ([date](../SpecialInputElements.md#date)) |
| [sugar_free](#sugar_free) | Does this shop have a sugar free offering?<br/>4 options | diets | _Multiple choice only_ | | [sugar_free](#sugar_free) <br/> _(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?<br/>4 options | diets | _Multiple choice only_ |
| [lactose_free](#lactose_free) | Does have a lactose-free offering?<br/>4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free) <br/> _(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?<br/>4 options | diets | _Multiple choice only_ |
| [gluten_free](#gluten_free) | Does this shop have a gluten free offering?<br/>4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free) <br/> _(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?<br/>4 options | diets | _Multiple choice only_ |
| [vegan](#vegan) | Does this place offer a vegan option?<br/>4 options | diets | _Multiple choice only_ | | [vegan](#vegan) <br/> _(Original in [questions](./BuiltinQuestions.md#vegan))_ | Does this place offer a vegan option?<br/>4 options | diets | _Multiple choice only_ |
| [lod](#lod) | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ | | [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
| [split_button](#split_button) | _{split_button()}_ | | _Multiple choice only_ | | [split_button](#split_button) <br/> _(Original in [questions](./BuiltinQuestions.md#split_button))_ | _{split_button()}_ | | _Multiple choice only_ |
| [seasonal](#seasonal) | Is available all around the year?<br/>3 options | | _Multiple choice only_ | | [seasonal](#seasonal) <br/> _(Original in [questions](./BuiltinQuestions.md#seasonal))_ | Is available all around the year?<br/>3 options | | _Multiple choice only_ |
| [shower](#shower) | Does this facility offer showers?<br/>4 options | | _Multiple choice only_ | | [shower](#shower) <br/> _(Original in [questions](./BuiltinQuestions.md#shower))_ | Does this facility offer showers?<br/>4 options | | _Multiple choice only_ |
| [preset_description](#preset_description) | _{preset_description()}_ | | _Multiple choice only_ | | [preset_description](#preset_description) <br/> _(Original in [questions](./BuiltinQuestions.md#preset_description))_ | _{preset_description()}_ | | _Multiple choice only_ |
| [brand](#brand) | Is part of a bigger brand?<br/>_Part of {brand}_<br/>1 options | | *[brand](https://wiki.osm.org/wiki/Key:brand)* ([string](../SpecialInputElements.md#string)) | | [brand](#brand) <br/> _(Original in [questions](./BuiltinQuestions.md#brand))_ | Is part of a bigger brand?<br/>_Part of {brand}_<br/>1 options | | *[brand](https://wiki.osm.org/wiki/Key:brand)* ([string](../SpecialInputElements.md#string)) |
| [indoor](#indoor) | Is this object located indoors?<br/>2 options | | _Multiple choice only_ | | [indoor](#indoor) <br/> _(Original in [questions](./BuiltinQuestions.md#indoor))_ | Is this object located indoors?<br/>2 options | | _Multiple choice only_ |
| [seating](#seating) | What kind of seating does have?<br/>2 options | | _Multiple choice only_ | | [seating](#seating) <br/> _(Original in [questions](./BuiltinQuestions.md#seating))_ | What kind of seating does have?<br/>2 options | | _Multiple choice only_ |
| [maxstay](#maxstay) | What is the maximum amount of time one is allowed to stay here?<br/>_One can stay at most <b>{canonical(maxstay)}</b>_<br/>1 options | | *[maxstay](https://wiki.osm.org/wiki/Key:maxstay)* ([pfloat](../SpecialInputElements.md#pfloat)) | | [maxstay](#maxstay) <br/> _(Original in [questions](./BuiltinQuestions.md#maxstay))_ | What is the maximum amount of time one is allowed to stay here?<br/>_One can stay at most <b>{canonical(maxstay)}</b>_<br/>1 options | | *[maxstay](https://wiki.osm.org/wiki/Key:maxstay)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [name](#name) | What is the name of this place?<br/>_<b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) | | [name](#name) <br/> _(Original in [questions](./BuiltinQuestions.md#name))_ | What is the name of this place?<br/>_<b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
| [has_toilets](#has_toilets) <br/> _(Original in [questions](./BuiltinQuestions.md#has_toilets))_ | Has toilets?<br/>3 options | | _Multiple choice only_ |
| [reservation](#reservation) <br/> _(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?<br/>4 options | | _Multiple choice only_ |
| [ref](#ref) <br/> _(Original in [questions](./BuiltinQuestions.md#ref))_ | What is the reference number?<br/>_The reference number is <b>{ref}</b>_ | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
### questions ### questions
Show the questions block at this location Show the questions block at this location
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions()}* *{questions()}*
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### images_no_blur ### images_no_blur
Same as `images`, but uploaded request to disable blurring to the panoramax server Same as `images`, but uploaded request to disable blurring to the panoramax server
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload(,,,true)}* *{image_carousel()}{image_upload(,,,true)}*
### mapillary ### mapillary
Shows a button to open Mapillary on this location Shows a button to open Mapillary on this location
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{mapillary_link()}* *{mapillary_link()}*
### export_as_gpx ### export_as_gpx
Shows a button to export this feature as GPX. Especially useful for route relations Shows a button to export this feature as GPX. Especially useful for route relations
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{export_as_gpx()}* *{export_as_gpx()}*
### export_as_geojson ### export_as_geojson
Shows a button to export this feature as geojson. Especially useful for debugging or using this in other programs Shows a button to export this feature as geojson. Especially useful for debugging or using this in other programs
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{export_as_geojson()}* *{export_as_geojson()}*
### wikipedia ### wikipedia
Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor
The question is `What is the corresponding Wikidata entity?` The question is `What is the corresponding Wikidata entity?`
*{wikipedia():max-height:25rem}* is shown if `wikidata` is set
- *No Wikipedia page has been linked yet* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ *{wikipedia():max-height:25rem}* is shown if `wikidata` is set.
- *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -234,16 +251,19 @@ This tagrendering has labels
### mastodon ### mastodon
Shows and asks for the mastodon handle Shows and asks for the mastodon handle
The question is `What is the Mastodon-handle of {title()}?` The question is `What is the Mastodon-handle of {title()}?`
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set.
### facebook ### facebook
Shows and asks for the facebook handle Shows and asks for the facebook handle
The question is `What is the facebook page of of {title()}?` The question is `What is the facebook page of of {title()}?`
*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>* is shown if `contact:facebook` is set
*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>* is shown if `contact:facebook` is set.
### osmlink ### osmlink
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<a href='https://openstreetmap.org/{id}' target='_blank' rel='noopener'F><img src='./assets/svg/osm-logo-us.svg'/></a>* *<a href='https://openstreetmap.org/{id}' target='_blank' rel='noopener'F><img src='./assets/svg/osm-logo-us.svg'/></a>*
- *<span class='alert'>Uploading...</alert>* is shown if with id~^(=-)$ - *<span class='alert'>Uploading...</alert>* is shown if with id~^(=-)$
@ -251,7 +271,8 @@ _This tagrendering has no question and is thus read-only_
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -262,7 +283,8 @@ This tagrendering has labels
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -291,19 +313,22 @@ The question is `Are dogs allowed in this business?`
### description ### description
The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.`
*{description}* is shown if `description` is set
*{description}* is shown if `description` is set.
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### opening_hours_24_7 ### opening_hours_24_7
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -311,7 +336,8 @@ The question is `What are the opening hours of {title()}?`
### opening_hours_24_7_default ### opening_hours_24_7_default
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -319,7 +345,8 @@ The question is `What are the opening hours of {title()}?`
### opening_hours_by_appointment ### opening_hours_by_appointment
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Only by appointment* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment"' target='_blank'>"by appointment"</a> - *Only by appointment* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment"' target='_blank'>"by appointment"</a>
- *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_
@ -409,12 +436,14 @@ This tagrendering is only visible in the popup if the following condition is met
### all_tags ### all_tags
Shows a table with all the tags of the feature Shows a table with all the tags of the feature
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{all_tags()}* *{all_tags()}*
### multilevels ### multilevels
The question is `What levels does this elevator go to?` The question is `What levels does this elevator go to?`
*This elevator goes to floors {level}* is shown if `level` is set
*This elevator goes to floors {level}* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -425,6 +454,7 @@ The question is `What levels does this elevator go to?`
### repeated ### repeated
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {repeat_on}.* *Multiple, identical objects can be found on floors {repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+
@ -434,7 +464,8 @@ This tagrendering has labels
### single_level ### single_level
The question is `On what level is this feature located?` The question is `On what level is this feature located?`
*Located on the {level}th floor* is shown if `level` is set
*Located on the {level}th floor* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -489,7 +520,8 @@ This tagrendering has labels
### internet-ssid ### internet-ssid
The question is `What is the network name for the wireless internet access?` The question is `What is the network name for the wireless internet access?`
*The network name is <b>{internet_access:ssid}</b>* is shown if `internet_access:ssid` is set
*The network name is <b>{internet_access:ssid}</b>* is shown if `internet_access:ssid` is set.
- *Telekom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid' target='_blank'>internet_access:ssid</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom' target='_blank'>Telekom</a> - *Telekom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid' target='_blank'>internet_access:ssid</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom' target='_blank'>Telekom</a>
@ -509,14 +541,16 @@ The question is `Is this object lit or does it emit light?`
### survey_date ### survey_date
The question is `When was this object last surveyed?` The question is `When was this object last surveyed?`
*This object was last surveyed on <b>{survey:date}</b>* is shown if `survey:date` is set
*This object was last surveyed on <b>{survey:date}</b>* is shown if `survey:date` is set.
- *This object was last surveyed today* is shown if with survey:date= - *This object was last surveyed today* is shown if with survey:date=
### check_date ### check_date
The question is `When was this object last checked?` The question is `When was this object last checked?`
*This object was last checked on <b>{check_date}</b>* is shown if `check_date` is set
*This object was last checked on <b>{check_date}</b>* is shown if `check_date` is set.
- *This object was last checked today* is shown if with check_date= - *This object was last checked today* is shown if with check_date=
@ -571,6 +605,7 @@ This tagrendering has labels
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels
@ -579,6 +614,7 @@ This tagrendering has labels
### split_button ### split_button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{split_button()}* *{split_button()}*
### seasonal ### seasonal
@ -601,12 +637,14 @@ The question is `Does this facility offer showers?`
### preset_description ### preset_description
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{preset_description()}* *{preset_description()}*
### brand ### brand
The question is `Is {title()} part of a bigger brand?` The question is `Is {title()} part of a bigger brand?`
*Part of {brand}* is shown if `brand` is set
*Part of {brand}* is shown if `brand` is set.
- *Not part of a bigger brand* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nobrand' target='_blank'>nobrand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nobrand%3Dyes' target='_blank'>yes</a> - *Not part of a bigger brand* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nobrand' target='_blank'>nobrand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nobrand%3Dyes' target='_blank'>yes</a>
@ -627,50 +665,39 @@ The question is `What kind of seating does {title()} have?`
### maxstay ### maxstay
The question is `What is the maximum amount of time one is allowed to stay here?` The question is `What is the maximum amount of time one is allowed to stay here?`
*One can stay at most <b>{canonical(maxstay)}</b>* is shown if `maxstay` is set
*One can stay at most <b>{canonical(maxstay)}</b>* is shown if `maxstay` is set.
- *There is no limit to the amount of time one can stay here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a> - *There is no limit to the amount of time one can stay here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a>
### name ### name
The question is `What is the name of this place?` The question is `What is the name of this place?`
*<b>{name}</b>* is shown if `name` is set
## Filters *<b>{name}</b>* is shown if `name` is set.
| id | question | osmTags | ### has_toilets
-----|-----|----- |
| dogs.0 | *No preference towards dogs* (default) | |
| dogs.1 | Dogs allowed | dog=unleashed | dog=yes |
| dogs.2 | No dogs allowed | dog=no |
| id | question | osmTags | The question is `Has {title()} toilets?`
-----|-----|----- |
| open_now.0 | Now open | _isOpen=yes |
| id | question | osmTags | - *Has toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
-----|-----|----- | - *Has no toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
| accepts_cash.0 | Accepts cash | payment:cash=yes | - *The toilets are marked separately on the map* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dseparate' target='_blank'>separate</a>
| id | question | osmTags | ### reservation
-----|-----|----- |
| accepts_cards.0 | Accepts payment cards | payment:cards=yes |
| id | question | osmTags | The question is `Is a reservation required for this place?`
-----|-----|----- |
| has_internet.0 | Offers internet | internet_access=wlan | internet_access=yes | internet_access=wired |
| id | question | osmTags | - *A reservation is required at this place* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired' target='_blank'>required</a>
-----|-----|----- | - *A reservation is not required, but still recommended to make sure you get a table* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended' target='_blank'>recommended</a>
| sugar_free.0 | Has a sugar-free offering | diet:sugar_free=yes | diet:sugar_free=only | diet:sugar_free=limited | - *Reservation is possible at this place* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes' target='_blank'>yes</a>
- *Reservation is not possible at this place* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:reservation' target='_blank'>reservation</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno' target='_blank'>no</a>
| id | question | osmTags | ### ref
-----|-----|----- |
| lactose_free.0 | Has a lactose free offering | diet:lactose_free=yes | diet:lactose_free=only | diet:lactose_free=limited |
| id | question | osmTags | The question is `What is the reference number?`
-----|-----|----- |
| gluten_free.0 | Has a gluten free offering | diet:gluten_free=yes | diet:gluten_free=only | diet:gluten_free=limited | *The reference number is <b>{ref}</b>* is shown if `ref` is set.

View file

@ -27,7 +27,6 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| TW_NLSC_WMS_LANDSECT | Taiwan Land-Section Data | other | | © National Land Surveying and Mapping Center, Taiwan OGDL 1.0 | | TW_NLSC_WMS_LANDSECT | Taiwan Land-Section Data | other | | © National Land Surveying and Mapping Center, Taiwan OGDL 1.0 |
| TW_NLSC_WMS_Village | Taiwan Village Boundaries | other | | © National Land Surveying and Mapping Center, Taiwan OGDL 1.0 | | TW_NLSC_WMS_Village | Taiwan Village Boundaries | other | | © National Land Surveying and Mapping Center, Taiwan OGDL 1.0 |
| AL_DPGJC_ASIG_SistemiAdresave | Address System Albania (ASIG) | map | | | | AL_DPGJC_ASIG_SistemiAdresave | Address System Albania (ASIG) | map | | |
| openlabs-geoportal-tirana | Municipality of Tirana (Open Labs GeoPortal) | map | | Data provided by the Muncipality of Tirana hosted by Open Labs |
| bev-inspire-orthofoto | BEV INSPIRE Orthofoto | photo | | Bundesamt für Eich- und Vermessungswesen | | bev-inspire-orthofoto | BEV INSPIRE Orthofoto | photo | | Bundesamt für Eich- und Vermessungswesen |
| basemap.at | basemap.at | map | | basemap.at | | basemap.at | basemap.at | map | | basemap.at |
| basemap.at-orthofoto | basemap.at Orthofoto | photo | ⭐ | basemap.at | | basemap.at-orthofoto | basemap.at Orthofoto | photo | ⭐ | basemap.at |
@ -248,8 +247,8 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| mml-tausta | MML Background Map | map | | © Maanmittauslaitos | | mml-tausta | MML Background Map | map | | © Maanmittauslaitos |
| mml-topo | MML Topographic Map | map | | © Maanmittauslaitos | | mml-topo | MML Topographic Map | map | | © Maanmittauslaitos |
| turku-orto-2018-true | City of Turku ortophoto - 2018 True ortho | photo | | © Turun kaupunki | | turku-orto-2018-true | City of Turku ortophoto - 2018 True ortho | photo | | © Turun kaupunki |
| turku-orto-2021 | City of Turku ortophoto - 2021 | photo | ⭐ | © Turun kaupunki |
| turku-orto | City of Turku ortophoto - 2018 | photo | | © Turun kaupunki | | turku-orto | City of Turku ortophoto - 2018 | photo | | © Turun kaupunki |
| turku-orto-2021 | City of Turku ortophoto - 2021 | photo | ⭐ | © Turun kaupunki |
| fr.dpt.06.2009 | Alpes-Maritimes 2009 | historicphoto | | GO 06-Ortho HR 2009 | | fr.dpt.06.2009 | Alpes-Maritimes 2009 | historicphoto | | GO 06-Ortho HR 2009 |
| fr.dpt.04.2010 | Alpes-de-Haute-Provence 2010 | historicphoto | | ORTHO 2010 © PACA-04-05-84 | | fr.dpt.04.2010 | Alpes-de-Haute-Provence 2010 | historicphoto | | ORTHO 2010 © PACA-04-05-84 |
| CRAIG-Auvergne-2013 | Auvergne 2013 25cm CRAIG | historicphoto | | Orthophotographie CRAIG/Sintegra/IGN 2013 | | CRAIG-Auvergne-2013 | Auvergne 2013 25cm CRAIG | historicphoto | | Orthophotographie CRAIG/Sintegra/IGN 2013 |
@ -264,6 +263,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| Bordeaux_2012 | Bordeaux - 2012 | historicphoto | | Communauté urbaine de Bordeaux - 2012 | | Bordeaux_2012 | Bordeaux - 2012 | historicphoto | | Communauté urbaine de Bordeaux - 2012 |
| fr.dpt.13.2009 | Bouches-du-Rhône 2009 | historicphoto | | Ortho13, 2009 | | fr.dpt.13.2009 | Bouches-du-Rhône 2009 | historicphoto | | Ortho13, 2009 |
| Brest_2004 | Brest - 2004 | historicphoto | | Brest Métropole - 2004 | | Brest_2004 | Brest - 2004 | historicphoto | | Brest Métropole - 2004 |
| Brest_2023_2024 | Brest Métropole Orthophoto 2023/2024 | photo | | Brest Métropole - 2023-2024 |
| enedis | Enedis | photo | | Enedis 2018 | | enedis | Enedis | photo | | Enedis 2018 |
| EMS-Orthophotographie-2022 | Eurométropole de Strasbourg - Orthophotographie 2022 | photo | ⭐ | Ville et eurométropole de Strasbourg - DataGrandEst 2022 | | EMS-Orthophotographie-2022 | Eurométropole de Strasbourg - Orthophotographie 2022 | photo | ⭐ | Ville et eurométropole de Strasbourg - DataGrandEst 2022 |
| Cadastre | Cadastre | map | | cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2022 | | Cadastre | Cadastre | map | | cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2022 |
@ -409,11 +409,12 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| osm-hr-knin-2007 | osm-hr: Knin 2007 Aerial imagery | historicphoto | | | | osm-hr-knin-2007 | osm-hr: Knin 2007 Aerial imagery | historicphoto | | |
| osm-hr-zagreb-2012 | osm-hr: Zagreb 2012 Aerial imagery | historicphoto | | Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada | | osm-hr-zagreb-2012 | osm-hr: Zagreb 2012 Aerial imagery | historicphoto | | Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada |
| osm-hr-zagreb-2018 | osm-hr: Zagreb 2018 Aerial imagery | photo | ⭐ | Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada | | osm-hr-zagreb-2018 | osm-hr: Zagreb 2018 Aerial imagery | photo | ⭐ | Grad Zagreb, Gradski ured za strategijsko planiranje i razvoj Grada |
| Budapest_XI_2015 | Budapest district XI orthophoto 2015 | historicphoto | | Budapest XI. kerület önkormányzata | | Budapest_XI_2015 | Budapest district XI orthophoto 2015 | historicphoto | | Budapest Főváros XI. Kerület Újbuda Önkormányzata |
| Budapest_XI_2017 | Budapest district XI orthophoto 2017 | historicphoto | | Budapest XI. kerület önkormányzata | | Budapest_XI_2017 | Budapest district XI orthophoto 2017 | historicphoto | | Budapest Főváros XI. Kerület Újbuda Önkormányzata |
| Budapest_XI_2019 | Budapest district XI orthophoto 2019 | historicphoto | | Budapest XI. kerület önkormányzata | | Budapest_XI_2019 | Budapest district XI orthophoto 2019 | historicphoto | | Budapest Főváros XI. Kerület Újbuda Önkormányzata |
| Budapest_XI_2021 | Budapest district XI orthophoto 2021 | historicphoto | | Budapest XI. kerület önkormányzata | | Budapest_XI_2021 | Budapest district XI orthophoto 2021 | historicphoto | | Budapest Főváros XI. Kerület Újbuda Önkormányzata |
| Budapest_XI_2023 | Budapest district XI orthophoto 2023 | photo | ⭐ | Budapest XI. kerület önkormányzata | | Budapest_XI_2023 | Budapest district XI orthophoto 2023 | photo | ⭐ | Budapest Főváros XI. Kerület Újbuda Önkormányzata |
| Budapest_XI_2025 | Budapest district XI orthophoto 2025 | photo | ⭐ | Budapest Főváros XI. Kerület Újbuda Önkormányzata |
| FOMI_2015_leafoff_20cm | FÖMI orthophoto 2015 leaf-off 20cm (webp) | photo | | Lechner Tudásközpont | | FOMI_2015_leafoff_20cm | FÖMI orthophoto 2015 leaf-off 20cm (webp) | photo | | Lechner Tudásközpont |
| OpenStreetMap-turistautak | OpenStreetMap (turistautak) | osmbasedmap | | © OpenStreetMap contributors | | OpenStreetMap-turistautak | OpenStreetMap (turistautak) | osmbasedmap | | © OpenStreetMap contributors |
| Torokbalint-orthophoto-2013 | Törökbálint orthophoto 2013 | historicphoto | | Törökbálint | | Torokbalint-orthophoto-2013 | Törökbálint orthophoto 2013 | historicphoto | | Törökbálint |
@ -425,7 +426,6 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| Bologna-Orthophoto-2017 | Bologna ortofoto 2017 | historicphoto | | © Comune di Bologna cc-by 4.0 ODbL compliant | | Bologna-Orthophoto-2017 | Bologna ortofoto 2017 | historicphoto | | © Comune di Bologna cc-by 4.0 ODbL compliant |
| Bologna-Orthophoto-2022 | Bologna ortofoto 2022 | photo | ⭐ | © Comune di Bologna cc-by 4.0 ODbL compliant | | Bologna-Orthophoto-2022 | Bologna ortofoto 2022 | photo | ⭐ | © Comune di Bologna cc-by 4.0 ODbL compliant |
| Lombardia-Italy-CTR | Lombardia - Italy (C.T.R. 10000 - 1980-94) | map | | Regione Lombardia - Infrastruttura per l'informazione territoriale | | Lombardia-Italy-CTR | Lombardia - Italy (C.T.R. 10000 - 1980-94) | map | | Regione Lombardia - Infrastruttura per l'informazione territoriale |
| Lombardia-Italy-CTR-DBT | Lombardia - Italy (CTR DBT) | map | | CTR DBT 10000 Regione Lombardia |
| South-Tyrol-Basemap | South Tyrol Basemap | map | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0 | | South-Tyrol-Basemap | South Tyrol Basemap | map | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0 |
| South-Tyrol-DSM_2006_2_5m | South Tyrol DSM Hillshade 2006 (2.5 m) | elevation | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0 | | South-Tyrol-DSM_2006_2_5m | South Tyrol DSM Hillshade 2006 (2.5 m) | elevation | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0 |
| South-Tyrol-DSM_2013 | South Tyrol DSM Hillshade 2013 (0.5 m) | elevation | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0 | | South-Tyrol-DSM_2013 | South Tyrol DSM Hillshade 2013 (0.5 m) | elevation | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0 |
@ -524,9 +524,13 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| UkraineVinnytsiaTG2021 | Ukraine - Vinnytsia TG 2021 | photo | | © Вінницька міська рада | | UkraineVinnytsiaTG2021 | Ukraine - Vinnytsia TG 2021 | photo | | © Вінницька міська рада |
| Canvec_French | Canvec - French | map | | | | Canvec_French | Canvec - French | map | | |
| Canvec | Canvec - English | map | | | | Canvec | Canvec - English | map | | |
| Toronto-Imagery-Most-Current-Year | Toronto Latest Orthoimagery | photo | | Contains information licensed under the Open Government Licence Toronto |
| Geobase_Roads_French | Geobase Roads - French | other | | | | Geobase_Roads_French | Geobase Roads - French | other | | |
| Geobase_Roads | Geobase Roads - English | other | | | | Geobase_Roads | Geobase Roads - English | other | | |
| NRCan-HRDEM-DSM | High Resolution Digital Elevation Model Mosaic (DSM) | elevation | | Contains information licensed under the Open Government Licence Canada |
| NRCan-HRDEM-DTM | High Resolution Digital Elevation Model Mosaic (DTM) | elevation | | Contains information licensed under the Open Government Licence Canada |
| Toronto-Imagery-Most-Current-Year | Toronto Latest Orthoimagery | photo | | Contains information licensed under the Open Government Licence Toronto |
| Ontario_Mosaic_2018-2022_CIR | Ontario Orthophotography Mosaic 2018-2022 (CIR) | photo | | Contains information licensed under the Open Government Licence Ontario |
| Ontario_Mosaic_2018-2022_RGB | Ontario Orthophotography Mosaic 2018-2022 (RGB) | photo | | Contains information licensed under the Open Government Licence Ontario |
| canaan_drone_red_cross_201712 | Canaan - American Red Cross, Dec-2017 | photo | | American Red Cross | | canaan_drone_red_cross_201712 | Canaan - American Red Cross, Dec-2017 | photo | | American Red Cross |
| inegi-wms | INEGI Digital Map of Mexico (WMS) | other | | Instituto Nacional de Estadísticas y Geografía | | inegi-wms | INEGI Digital Map of Mexico (WMS) | other | | Instituto Nacional de Estadísticas y Geografía |
| NOAA_East_2023 | NOAA NGS East Coast Imagery (2023) | historicphoto | | NOAA National Geodetic Survey | | NOAA_East_2023 | NOAA NGS East Coast Imagery (2023) | historicphoto | | NOAA National Geodetic Survey |
@ -705,7 +709,8 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| Kansas_NG911_2018 | Kansas NG911 Orthoimagery (2018) | historicphoto | | Kansas 911 Coordinating Council | | Kansas_NG911_2018 | Kansas NG911 Orthoimagery (2018) | historicphoto | | Kansas 911 Coordinating Council |
| Kansas_NG911_2021 | Kansas NG911 Orthoimagery (2021) | photo | ⭐ | Kansas 911 Coordinating Council | | Kansas_NG911_2021 | Kansas NG911 Orthoimagery (2021) | photo | ⭐ | Kansas 911 Coordinating Council |
| KYAPED_Phase_1 | KyFromAbove Aerial Imagery (2012-2014) | historicphoto | | KyFromAbove | | KYAPED_Phase_1 | KyFromAbove Aerial Imagery (2012-2014) | historicphoto | | KyFromAbove |
| KYAPED_Phase_2 | KyFromAbove Aerial Imagery (2018-2022) | photo | | KyFromAbove | | KYAPED_Phase_2 | KyFromAbove Aerial Imagery (2018-2022) | historicphoto | | KyFromAbove |
| KYAPED_Phase_3 | KyFromAbove Aerial Imagery (2022-2024) | photo | ⭐ | KyFromAbove |
| MassGIS-LIDAR-Shaded-Relief | MassGIS LIDAR Shaded Relief | elevation | | MassGIS | | MassGIS-LIDAR-Shaded-Relief | MassGIS LIDAR Shaded Relief | elevation | | MassGIS |
| MassGIS-LIDAR-Slope | MassGIS LIDAR Slope | elevation | | MassGIS | | MassGIS-LIDAR-Slope | MassGIS LIDAR Slope | elevation | | MassGIS |
| MassGIS_2021_Aerial | MassGIS 2021 Aerial Imagery | photo | | MassGIS | | MassGIS_2021_Aerial | MassGIS 2021 Aerial Imagery | photo | | MassGIS |
@ -784,8 +789,6 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| Montgomery_OH_2022 | Montgomery County Orthoimagery (2022) | photo | | Montgomery County, State of Ohio | | Montgomery_OH_2022 | Montgomery County Orthoimagery (2022) | photo | | Montgomery County, State of Ohio |
| Morgan_OH_2023 | Morgan County Orthoimagery (2023) | photo | | Morgan County, State of Ohio | | Morgan_OH_2023 | Morgan County Orthoimagery (2023) | photo | | Morgan County, State of Ohio |
| OSIP | Ohio Statewide Imagery Program | photo | | Ohio Statewide Imagery Program | | OSIP | Ohio Statewide Imagery Program | photo | | Ohio Statewide Imagery Program |
| OSIP_1ft | Ohio Statewide Imagery Program 1-Foot | photo | | Ohio Statewide Imagery Program |
| OSIP_6in | Ohio Statewide Imagery Program 6-Inch | photo | | Ohio Statewide Imagery Program |
| Putnam_OH_2023 | Putnam County Orthoimagery (2023) | photo | | Putnam County, State of Ohio | | Putnam_OH_2023 | Putnam County Orthoimagery (2023) | photo | | Putnam County, State of Ohio |
| Scioto_OH_2023 | Scioto County Orthoimagery (2023) | photo | | Scioto County, State of Ohio | | Scioto_OH_2023 | Scioto County Orthoimagery (2023) | photo | | Scioto County, State of Ohio |
| Seneca_OH_2023 | Seneca County Orthoimagery (2023) | photo | | Seneca County, State of Ohio | | Seneca_OH_2023 | Seneca County Orthoimagery (2023) | photo | | Seneca County, State of Ohio |
@ -811,9 +814,9 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| RIGIS_Aerial_Photo_23s | Rhode Island Aerial Photo (Spring 2023) | historicphoto | | RIGIS | | RIGIS_Aerial_Photo_23s | Rhode Island Aerial Photo (Spring 2023) | historicphoto | | RIGIS |
| RIGIS_Aerial_Photo_24s | Rhode Island Aerial Photo (Spring 2024) | photo | | RIGIS | | RIGIS_Aerial_Photo_24s | Rhode Island Aerial Photo (Spring 2024) | photo | | RIGIS |
| TNMap_Orthoimagery_Latest | TNMap Orthoimagery Latest | photo | | Tennessee Imagery Program | | TNMap_Orthoimagery_Latest | TNMap Orthoimagery Latest | photo | | Tennessee Imagery Program |
| brazos_county_2019_wms | TX: Brazos County Imagery 2019 | photo | ⭐ | Strategic Mapping Program (StratMap). Brazos County Imagery, 2019-01-29 | | brazos_county_2019_wms | StratMap Brazos County Imagery (2019) | photo | ⭐ | Strategic Mapping Program (StratMap). Brazos County Imagery, 2019-01-29 |
| capcog_2022 | CAPCOG Imagery (2022) | photo | | Strategic Mapping Program (StratMap). CAPCOG Imagery, 2022-01-22 | | capcog_2022 | CAPCOG Imagery (2022) | photo | | Strategic Mapping Program (StratMap). CAPCOG Imagery, 2022-01-22 |
| caparea_2019_wms | TX: CapArea Imagery 2019 | historicphoto | | Strategic Mapping Program (StratMap). CapArea Imagery, 2019-01-29 | | caparea_2019_wms | StratMap CapArea Imagery (2019) | historicphoto | | Strategic Mapping Program (StratMap). CapArea Imagery, 2019-01-29 |
| amarillo_2016_wms | TX: City of Amarillo Imagery 2015 | photo | | Strategic Mapping Program (StratMap). City of Amarillo Imagery, 2015-03-13 | | amarillo_2016_wms | TX: City of Amarillo Imagery 2015 | photo | | Strategic Mapping Program (StratMap). City of Amarillo Imagery, 2015-03-13 |
| el_paso_2015_wms | TX: City of El Paso Imagery 2015 | photo | | Strategic Mapping Program (StratMap). City of El Paso Imagery, 2015-10-25 | | el_paso_2015_wms | TX: City of El Paso Imagery 2015 | photo | | Strategic Mapping Program (StratMap). City of El Paso Imagery, 2015-10-25 |
| georgetown_2016_wms | TX: City of Georgetown Imagery 2015 | photo | | Texas Natural Resources Information System (TNRIS). City of Georgetown Imagery, 2015-03-06 | | georgetown_2016_wms | TX: City of Georgetown Imagery 2015 | photo | | Texas Natural Resources Information System (TNRIS). City of Georgetown Imagery, 2015-03-06 |
@ -940,6 +943,7 @@ This table gives a summary of ids, names and other metainformation. [See the onl
| LINZ_Bay_of_Plenty_2014 | LINZ Bay of Plenty 2014-2015 | historicphoto | | Sourced from LINZ CC-BY 4.0 | | LINZ_Bay_of_Plenty_2014 | LINZ Bay of Plenty 2014-2015 | historicphoto | | Sourced from LINZ CC-BY 4.0 |
| LINZ_Christchurch_2015 | LINZ Christchurch 2015-2016 | historicphoto | | Sourced from LINZ CC-BY 4.0 | | LINZ_Christchurch_2015 | LINZ Christchurch 2015-2016 | historicphoto | | Sourced from LINZ CC-BY 4.0 |
| LINZ_Hamilton_2016 | LINZ Hamilton 2016-2017 | historicphoto | | Sourced from LINZ CC-BY 4.0 | | LINZ_Hamilton_2016 | LINZ Hamilton 2016-2017 | historicphoto | | Sourced from LINZ CC-BY 4.0 |
| LINZ_NZ_Hillshade | LINZ NZ Hillshade | elevation | | Sourced from LINZ CC-BY 4.0 |
| LINZ_NZ_Topo50_Gridless_Maps | LINZ NZ Topo50 Gridless Maps | map | | CC BY 4.0 Land Information New Zealand | | LINZ_NZ_Topo50_Gridless_Maps | LINZ NZ Topo50 Gridless Maps | map | | CC BY 4.0 Land Information New Zealand |
| LINZ_Wellington_2017 | LINZ Wellington 2017 | historicphoto | | Sourced from LINZ CC-BY 4.0 | | LINZ_Wellington_2017 | LINZ Wellington 2017 | historicphoto | | Sourced from LINZ CC-BY 4.0 |
| USDA_Palau_2022 | USDA Palau Imagery (2022) | photo | | U.S. Department of Agriculture | | USDA_Palau_2022 | USDA Palau Imagery (2022) | photo | | U.S. Department of Agriculture |

View file

@ -10,6 +10,7 @@ MapComplete supports the following keys:
| `H` | Jump to your home location. Only works if you did set your home location in the user preferences | | `H` | Jump to your home location. Only works if you did set your home location in the user preferences |
| `L` | Pan the map to the current location or zoom the map to the current location. Requests geopermission | | `L` | Pan the map to the current location or zoom the map to the current location. Requests geopermission |
| `M` | Set the background to a map from external sources. Toggles between the two best, available layers | | `M` | Set the background to a map from external sources. Toggles between the two best, available layers |
| `N` | Open the dialog to add a new point at the center of the map |
| `O` | Set the background layer to on OpenStreetMap-based map (or disable the background raster layer) | | `O` | Set the background layer to on OpenStreetMap-based map (or disable the background raster layer) |
| `P` | Set the background to aerial or satellite imagery. Toggles between the two best, available layers | | `P` | Set the background to aerial or satellite imagery. Toggles between the two best, available layers |
| `S` | Opens the POI-layers and filter panel | | `S` | Opens the POI-layers and filter panel |

View file

@ -52,7 +52,7 @@ Elements must match **any** of the following expressions:
| id | question | labels | freeform key | | id | question | labels | freeform key |
-----|-----|-----|----- | -----|-----|-----|----- |
| [address_joined](#address_joined) | _{group(header,street;housenumber;unit)}_ | address | _Multiple choice only_ | | [address_joined](#address_joined) | _{group(header,street;housenumber;unit,)}_ | address | _Multiple choice only_ |
| [header](#header) | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ | | [header](#header) | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ |
| [housenumber](#housenumber) | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) | | [housenumber](#housenumber) | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) |
| [street](#street) | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) | | [street](#street) | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) |
@ -65,7 +65,8 @@ Elements must match **any** of the following expressions:
### address_joined ### address_joined
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{group(header,street;housenumber;unit)}*
*{group(header,street;housenumber;unit,)}*
This tagrendering has labels This tagrendering has labels
`address` `address`
@ -73,6 +74,7 @@ This tagrendering has labels
### header ### header
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{addr:street} <b>{addr:housenumber}</b> {addr:unit}* *{addr:street} <b>{addr:housenumber}</b> {addr:unit}*
- *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber=
@ -84,7 +86,8 @@ This tagrendering has labels
### housenumber ### housenumber
The question is `What is the number of this house?` The question is `What is the number of this house?`
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set.
- *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a> - *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
@ -95,7 +98,8 @@ This tagrendering has labels
### street ### street
The question is `What street is this address located in?` The question is `What street is this address located in?`
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set.
This tagrendering has labels This tagrendering has labels
`address` `address`
@ -104,7 +108,8 @@ This tagrendering has labels
### unit ### unit
The question is `What is the unit number or letter?` The question is `What is the unit number or letter?`
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set.
- *No unit number* is shown if with addr:unit= - *No unit number* is shown if with addr:unit=
@ -115,13 +120,15 @@ This tagrendering has labels
### fixme ### fixme
The question is `What should be fixed here? Please explain` The question is `What should be fixed here? Please explain`
*<b>Fixme description</b>{fixme}* is shown if `fixme` is set
*<b>Fixme description</b>{fixme}* is shown if `fixme` is set.
- *No fixme - write something here to explain complicated cases* is shown if with fixme= - *No fixme - write something here to explain complicated cases* is shown if with fixme=
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -131,11 +138,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -0,0 +1,164 @@
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
# adult_changing_table
An adult changing table is a bench where adult people can be placed on. They are often used by adults with a severe motoric handicap
- This layer is shown at zoomlevel **6** and higher
No themes use this layer
## Table of contents
1. [Presets](#presets)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [height](#height)
- [adult-changing-table-min_height](#adult-changing-table-min_height)
- [adult-changing-table-max_height](#adult-changing-table-max_height)
- [adult-changing-table-mechanism](#adult-changing-table-mechanism)
- [adult-changing-table-support](#adult-changing-table-support)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
## Presets
The following options to create new points are included:
- **an adult changing table** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dadult_changing_table' target='_blank'>adult_changing_table</a>
## Basic tags for this layer
Elements must match **any** of the following expressions:
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dadult_changing_table' target='_blank'>adult_changing_table</a>
- <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a>
- <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:changing_table:adult' target='_blank'>toilets:changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:changing_table:adult%3Dyes' target='_blank'>yes</a>
- <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:changing_table:adult' target='_blank'>toilets:wheelchair:changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:changing_table:adult%3Dyes' target='_blank'>yes</a>
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22adult_changing_table%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22changing_table%3Aadult%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22toilets%3Achanging_table%3Aadult%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22toilets%3Awheelchair%3Achanging_table%3Aadult%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
## Supported attributes
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/height/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [height](https://wiki.openstreetmap.org/wiki/Key:height) | [pfloat](../SpecialInputElements.md#pfloat) | [adjustable](https://wiki.openstreetmap.org/wiki/Tag:height%3Dadjustable) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/min_height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/min_height/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [min_height](https://wiki.openstreetmap.org/wiki/Key:min_height) | [pfloat](../SpecialInputElements.md#pfloat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/max_height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/max_height/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [max_height](https://wiki.openstreetmap.org/wiki/Key:max_height) | [pfloat](../SpecialInputElements.md#pfloat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/height:mechanism#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/height%3Amechanism/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [height:mechanism](https://wiki.openstreetmap.org/wiki/Key:height:mechanism) | Multiple choice | [manual](https://wiki.openstreetmap.org/wiki/Tag:height:mechanism%3Dmanual) [electric](https://wiki.openstreetmap.org/wiki/Tag:height:mechanism%3Delectric) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/support#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/support/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [support](https://wiki.openstreetmap.org/wiki/Key:support) | Multiple choice | [wall_mounted](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mounted) [legs](https://wiki.openstreetmap.org/wiki/Tag:support%3Dlegs) [wheels](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwheels) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [height](#height) | What is the height of the adult changing table?<br/>_The changing table is {canonical(height)} high_<br/>1 options | relevant_questions | *[height](https://wiki.osm.org/wiki/Key:height)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [adult-changing-table-min_height](#adult-changing-table-min_height) | What is the lowest height the adult changing table can be moved to?<br/>_The lowest height of the adult changing table is {canonical(min_height)}_ | relevant_questions | *[min_height](https://wiki.osm.org/wiki/Key:min_height)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [adult-changing-table-max_height](#adult-changing-table-max_height) | What is the highest height the adult changing table can be moved to?<br/>_The highest height of the adult changing table is {canonical(max_height)}_ | relevant_questions | *[max_height](https://wiki.osm.org/wiki/Key:max_height)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [adult-changing-table-mechanism](#adult-changing-table-mechanism) | How is the height of the changing table adjusted?<br/>2 options | relevant_questions | _Multiple choice only_ |
| [adult-changing-table-support](#adult-changing-table-support) | How is the adult changing table supported?<br/>3 options | relevant_questions, hidden, prefixed, adult-changing-table | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### height
The question is `What is the height of the adult changing table?`
*The changing table is {canonical(height)} high* is shown if `height` is set.
The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7.
- *The changing table is <b>adjustable in height</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:height' target='_blank'>height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:height%3Dadjustable' target='_blank'>adjustable</a>
This tagrendering has labels
`relevant_questions`
### adult-changing-table-min_height
The question is `What is the lowest height the adult changing table can be moved to?`
*The lowest height of the adult changing table is {canonical(min_height)}* is shown if `min_height` is set.
The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:height' target='_blank'>height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:height%3Dadjustable' target='_blank'>adjustable</a>
This tagrendering has labels
`relevant_questions`
### adult-changing-table-max_height
The question is `What is the highest height the adult changing table can be moved to?`
*The highest height of the adult changing table is {canonical(max_height)}* is shown if `max_height` is set.
The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:height' target='_blank'>height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:height%3Dadjustable' target='_blank'>adjustable</a>
This tagrendering has labels
`relevant_questions`
### adult-changing-table-mechanism
The question is `How is the height of the changing table adjusted?`
- *The height of the adult changing table is adjusted <b>manually</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:height:mechanism' target='_blank'>height:mechanism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:height:mechanism%3Dmanual' target='_blank'>manual</a>
- *The height of the adult changing table is adjusted <b>electrically</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:height:mechanism' target='_blank'>height:mechanism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:height:mechanism%3Delectric' target='_blank'>electric</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:height' target='_blank'>height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:height%3Dadjustable' target='_blank'>adjustable</a>
This tagrendering has labels
`relevant_questions`
### adult-changing-table-support
The question is `How is the adult changing table supported?`
- *The changing table is mounted to the wall* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mounted' target='_blank'>wall_mounted</a>
- *The changing table stands on table legs* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dlegs' target='_blank'>legs</a>
- *The changing table stands on table legs <b>with wheels</b> and can be moved* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dwheels' target='_blank'>wheels</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button
_This tagrendering has no question and is thus read-only_
*{move_button()}*
### delete-button
_This tagrendering has no question and is thus read-only_
*{delete_button()}*
### lod
_This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}*
This tagrendering has labels
`added_by_default`
This document is autogenerated from [assets/layers/adult_changing_table/adult_changing_table.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/adult_changing_table/adult_changing_table.json)

View file

@ -104,12 +104,14 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### type ### type
The question is `Which type of advertising feature is this?` The question is `Which type of advertising feature is this?`
*This is a {advertising}* is shown if `advertising` is set
*This is a {advertising}* is shown if `advertising` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/billboard.svg'> *This is a billboard* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dbillboard' target='_blank'>billboard</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/billboard.svg'> *This is a billboard* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dbillboard' target='_blank'>billboard</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/board.svg'> *This is a board* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dboard' target='_blank'>board</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/board.svg'> *This is a board* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dboard' target='_blank'>board</a>
@ -148,7 +150,8 @@ The question is `Is this object lit or does it emit light?`
### operator ### operator
The question is `Who operates this feature?` The question is `Who operates this feature?`
*Operated by {operator}* is shown if `operator` is set
*Operated by {operator}* is shown if `operator` is set.
### message_type ### message_type
@ -177,7 +180,8 @@ This tagrendering is only visible in the popup if the following condition is met
### ref ### ref
The question is `Wich is the reference number?` The question is `Wich is the reference number?`
*Reference number is {ref}* is shown if `ref` is set
*Reference number is {ref}* is shown if `ref` is set.
### historic ### historic
@ -189,6 +193,7 @@ The question is `Is this sign for a business that no longer exists or no longer
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -198,16 +203,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -75,12 +75,14 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### type ### type
The question is `Which type of advertising feature is this?` The question is `Which type of advertising feature is this?`
*This is a {advertising}* is shown if `advertising` is set
*This is a {advertising}* is shown if `advertising` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/billboard.svg'> *This is a billboard* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dbillboard' target='_blank'>billboard</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/billboard.svg'> *This is a billboard* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dbillboard' target='_blank'>billboard</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/board.svg'> *This is a board* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dboard' target='_blank'>board</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/board.svg'> *This is a board* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dboard' target='_blank'>board</a>
@ -119,7 +121,8 @@ The question is `Is this object lit or does it emit light?`
### operator ### operator
The question is `Who operates this feature?` The question is `Who operates this feature?`
*Operated by {operator}* is shown if `operator` is set
*Operated by {operator}* is shown if `operator` is set.
### message_type ### message_type
@ -148,7 +151,8 @@ This tagrendering is only visible in the popup if the following condition is met
### ref ### ref
The question is `Wich is the reference number?` The question is `Wich is the reference number?`
*Reference number is {ref}* is shown if `ref` is set
*Reference number is {ref}* is shown if `ref` is set.
### historic ### historic
@ -160,6 +164,7 @@ The question is `Is this sign for a business that no longer exists or no longer
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -169,16 +174,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -69,6 +69,7 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### type ### type
@ -90,17 +91,20 @@ The question is `What type of aerialway is this?`
### duration ### duration
The question is `How long takes a single journey with this elevator?` The question is `How long takes a single journey with this elevator?`
*A single journey takes {duration} minutes* is shown if `duration` is set
*A single journey takes {duration} minutes* is shown if `duration` is set.
### occupancy ### occupancy
The question is `How many people fit a single carriage?` The question is `How many people fit a single carriage?`
*{aerialway:occupancy} people fit a single carriage* is shown if `aerialway:occupancy` is set
*{aerialway:occupancy} people fit a single carriage* is shown if `aerialway:occupancy` is set.
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -114,11 +118,13 @@ The question is `In what direction can this aerialway be taken?`
### length ### length
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*This aerialway is {_length:km} kilometer long* *This aerialway is {_length:km} kilometer long*
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -128,6 +134,7 @@ This tagrendering has labels
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -48,11 +48,13 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -62,11 +64,13 @@ This tagrendering has labels
### split_button ### split_button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{split_button()}* *{split_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -60,7 +60,7 @@ Elements must match **all** of the following expressions:
| attribute | type | values which are supported by this layer | | attribute | type | values which are supported by this layer |
-----|-----|----- | -----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/level/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/level/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/vending#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/vending/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [vending](https://wiki.openstreetmap.org/wiki/Key:vending) | [string](../SpecialInputElements.md#string) | [drinks](https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddrinks) [sweets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dsweets) [food](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfood) [cigarettes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcigarettes) [condoms](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcondoms) [coffee](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcoffee) [water](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dwater) [newspapers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dnewspapers) [bicycle_tube](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_tube) [milk](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmilk) [bread](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbread) [eggs](https://wiki.openstreetmap.org/wiki/Tag:vending%3Deggs) [ice_cream](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dice_cream) [cheese](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcheese) [honey](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dhoney) [potatoes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpotatoes) [meat](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmeat) [fruit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfruit) [strawberries](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dstrawberries) [flowers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dflowers) [parking_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dparking_tickets) [elongated_coin](https://wiki.openstreetmap.org/wiki/Tag:vending%3Delongated_coin) [public_transport_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpublic_transport_tickets) [bicycle_light](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_light) [gloves](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dgloves) [bicycle_repair_kit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_repair_kit) [bicycle_pump](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_pump) [bicycle_lock](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_lock) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/vending#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/vending/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [vending](https://wiki.openstreetmap.org/wiki/Key:vending) | [string](../SpecialInputElements.md#string) | [drinks](https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddrinks) [sweets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dsweets) [food](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfood) [cigarettes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcigarettes) [condoms](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcondoms) [coffee](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcoffee) [water](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dwater) [newspapers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dnewspapers) [bicycle_tube](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_tube) [milk](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmilk) [bread](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbread) [eggs](https://wiki.openstreetmap.org/wiki/Tag:vending%3Deggs) [ice_cream](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dice_cream) [cheese](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcheese) [honey](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dhoney) [potatoes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpotatoes) [meat](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmeat) [fruit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfruit) [strawberries](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dstrawberries) [flowers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dflowers) [parking_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dparking_tickets) [elongated_coin](https://wiki.openstreetmap.org/wiki/Tag:vending%3Delongated_coin) [public_transport_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpublic_transport_tickets) [bicycle_light](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_light) [gloves](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dgloves) [bicycle_repair_kit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_repair_kit) [bicycle_pump](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_pump) [bicycle_lock](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_lock) [menstrual_products](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmenstrual_products) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/brand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/brand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Continental](https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental) [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/brand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/brand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Continental](https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental) [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/payment%3Acoins%3Adenominations/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/payment%3Acoins%3Adenominations/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) |
@ -81,7 +81,7 @@ Elements must match **all** of the following expressions:
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ | | [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ | | [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) | | [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [vending](#vending) | What does this vending machine sell?<br/>_This vending machine sells {vending}_<br/>28 options | | *[vending](https://wiki.osm.org/wiki/Key:vending)* ([string](../SpecialInputElements.md#string)) | | [vending](#vending) | What does this vending machine sell?<br/>_This vending machine sells {vending}_<br/>29 options | | *[vending](https://wiki.osm.org/wiki/Key:vending)* ([string](../SpecialInputElements.md#string)) |
| [bicycle_tube_vending_machine-brand](#bicycle_tube_vending_machine-brand) | Which brand of tubes are sold here?<br/>_{brand} tubes are sold here_<br/>2 options | | *[brand](https://wiki.osm.org/wiki/Key:brand)* ([string](../SpecialInputElements.md#string)) | | [bicycle_tube_vending_machine-brand](#bicycle_tube_vending_machine-brand) | Which brand of tubes are sold here?<br/>_{brand} tubes are sold here_<br/>2 options | | *[brand](https://wiki.osm.org/wiki/Key:brand)* ([string](../SpecialInputElements.md#string)) |
| [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) | | [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [payment-options-split](#payment-options-split) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options-split))_ | Which methods of payment are accepted here?<br/>7 options | | _Multiple choice only_ | | [payment-options-split](#payment-options-split) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options-split))_ | Which methods of payment are accepted here?<br/>7 options | | _Multiple choice only_ |
@ -103,11 +103,13 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### repeated ### repeated
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {repeat_on}.* *Multiple, identical objects can be found on floors {repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+
@ -117,7 +119,8 @@ This tagrendering has labels
### single_level ### single_level
The question is `On what level is this feature located?` The question is `On what level is this feature located?`
*Located on the {level}th floor* is shown if `level` is set
*Located on the {level}th floor* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -131,7 +134,8 @@ This tagrendering has labels
### vending ### vending
The question is `What does this vending machine sell?` The question is `What does this vending machine sell?`
*This vending machine sells {vending}* is shown if `vending` is set
*This vending machine sells {vending}* is shown if `vending` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/id_presets/temaki-bottles.svg'> *Drinks are sold* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddrinks' target='_blank'>drinks</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/id_presets/temaki-bottles.svg'> *Drinks are sold* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddrinks' target='_blank'>drinks</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/id_presets/maki-confectionery.svg'> *Sweets are sold* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dsweets' target='_blank'>sweets</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/id_presets/maki-confectionery.svg'> *Sweets are sold* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dsweets' target='_blank'>sweets</a>
@ -161,11 +165,13 @@ The question is `What does this vending machine sell?`
- *Bicycle repair kits are sold* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_repair_kit' target='_blank'>bicycle_repair_kit</a> - *Bicycle repair kits are sold* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_repair_kit' target='_blank'>bicycle_repair_kit</a>
- *Bicycle pumps are sold* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_pump' target='_blank'>bicycle_pump</a> - *Bicycle pumps are sold* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_pump' target='_blank'>bicycle_pump</a>
- *Bicycle locks are sold* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_lock' target='_blank'>bicycle_lock</a> - *Bicycle locks are sold* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_lock' target='_blank'>bicycle_lock</a>
- *Menstrual products are sold here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmenstrual_products' target='_blank'>menstrual_products</a>
### bicycle_tube_vending_machine-brand ### bicycle_tube_vending_machine-brand
The question is `Which brand of tubes are sold here?` The question is `Which brand of tubes are sold here?`
*{brand} tubes are sold here* is shown if `brand` is set
*{brand} tubes are sold here* is shown if `brand` is set.
- *Continental tubes are sold here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental' target='_blank'>Continental</a> - *Continental tubes are sold here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental' target='_blank'>Continental</a>
- *Schwalbe tubes are sold here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe' target='_blank'>Schwalbe</a> - *Schwalbe tubes are sold here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:brand' target='_blank'>brand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe' target='_blank'>Schwalbe</a>
@ -175,7 +181,8 @@ This tagrendering is only visible in the popup if the following condition is met
### opening_hours_24_7 ### opening_hours_24_7
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -237,7 +244,8 @@ This tagrendering is only visible in the popup if the following condition is met
### operator ### operator
The question is `Who operates this vending machine?` The question is `Who operates this vending machine?`
*This vending machine is operated by {operator}* is shown if `operator` is set
*This vending machine is operated by {operator}* is shown if `operator` is set.
### indoor ### indoor
@ -250,7 +258,8 @@ The question is `Is this vending machine indoors?`
### phone ### phone
The question is `What is the phone number of the operator of this vending machine?` The question is `What is the phone number of the operator of this vending machine?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -260,7 +269,8 @@ This tagrendering has labels
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -270,21 +280,24 @@ This tagrendering has labels
### charge_bicycle_tube ### charge_bicycle_tube
The question is `How much does a a bicycle tube cost?` The question is `How much does a a bicycle tube cost?`
*a bicycle tube costs {charge}* is shown if `charge` is set
*a bicycle tube costs {charge}* is shown if `charge` is set.
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$ This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$
### charge_bicycle_light ### charge_bicycle_light
The question is `How much does a bicycle light cost?` The question is `How much does a bicycle light cost?`
*bicycle light costs {charge}* is shown if `charge` is set
*bicycle light costs {charge}* is shown if `charge` is set.
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$ This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$
### charge_condom ### charge_condom
The question is `How much does a a condom cost?` The question is `How much does a a condom cost?`
*a condom costs {charge}* is shown if `charge` is set
*a condom costs {charge}* is shown if `charge` is set.
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$ This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$
@ -300,6 +313,7 @@ The question is `Is this vending machine still operational?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -309,16 +323,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -70,27 +70,32 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### ambulance-name ### ambulance-name
The question is `What is the name of this ambulance station?` The question is `What is the name of this ambulance station?`
*This station is called {name}.* is shown if `name` is set
*This station is called {name}.* is shown if `name` is set.
### ambulance-street ### ambulance-street
The question is `What is the street name where the station located?` The question is `What is the street name where the station located?`
*This station is along a highway called {addr:street}.* is shown if `addr:street` is set
*This station is along a highway called {addr:street}.* is shown if `addr:street` is set.
### ambulance-place ### ambulance-place
The question is `Where is the station located? (e.g. name of neighborhood, villlage, or town)` The question is `Where is the station located? (e.g. name of neighborhood, villlage, or town)`
*This station is found within {addr:place}.* is shown if `addr:place` is set
*This station is found within {addr:place}.* is shown if `addr:place` is set.
### ambulance-agency ### ambulance-agency
The question is `What agency operates this station?` The question is `What agency operates this station?`
*This station is operated by {operator}.* is shown if `operator` is set
*This station is operated by {operator}.* is shown if `operator` is set.
### ambulance-operator-type ### ambulance-operator-type
The question is `How is the station operator classified?` The question is `How is the station operator classified?`
*The operator is a(n) {operator:type} entity.* is shown if `operator:type` is set
*The operator is a(n) {operator:type} entity.* is shown if `operator:type` is set.
- *The station is operated by the government.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a> - *The station is operated by the government.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
- *The station is operated by a community-based, or informal organization.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a> - *The station is operated by a community-based, or informal organization.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>
@ -100,11 +105,13 @@ The question is `How is the station operator classified?`
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -114,11 +121,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -82,22 +82,26 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### 2 ### 2
The question is `What is the name of this animal shelter?` The question is `What is the name of this animal shelter?`
*This animal shelter is named <b>{name}</b>* is shown if `name` is set
*This animal shelter is named <b>{name}</b>* is shown if `name` is set.
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -107,7 +111,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -117,7 +122,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -136,7 +142,8 @@ The question is `What is the purpose of the animal shelter?`
### opening_hours_by_appointment ### opening_hours_by_appointment
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Only by appointment* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment"' target='_blank'>"by appointment"</a> - *Only by appointment* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment"' target='_blank'>"by appointment"</a>
- *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_
@ -145,7 +152,8 @@ The question is `What are the opening hours of {title()}?`
### boarded_animals ### boarded_animals
The question is `Which animals are accepted here?` The question is `Which animals are accepted here?`
*{animal_shelter} is kept here* is shown if `animal_shelter` is set
*{animal_shelter} is kept here* is shown if `animal_shelter` is set.
- *Dogs are kept here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animal_shelter' target='_blank'>animal_shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Ddog' target='_blank'>dog</a> - *Dogs are kept here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animal_shelter' target='_blank'>animal_shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Ddog' target='_blank'>dog</a>
- *Cats are kept here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animal_shelter' target='_blank'>animal_shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dcat' target='_blank'>cat</a> - *Cats are kept here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animal_shelter' target='_blank'>animal_shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dcat' target='_blank'>cat</a>
@ -156,6 +164,7 @@ The question is `Which animals are accepted here?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -165,16 +174,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -79,7 +79,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| attribute | type | values which are supported by this layer | | attribute | type | values which are supported by this layer |
-----|-----|----- | -----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artwork_type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artwork_type/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artwork_type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artwork_type/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) [poem](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpoem) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist_name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist_name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist_name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist_name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
@ -113,7 +113,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| id | question | labels | freeform key | | id | question | labels | freeform key |
-----|-----|-----|----- | -----|-----|-----|----- |
| [images_no_blur](#images_no_blur) <br/> _(Original in [questions](./BuiltinQuestions.md#images_no_blur))_ | _{image_carousel()}{image_upload(,,,true)}_ | | _Multiple choice only_ | | [images_no_blur](#images_no_blur) <br/> _(Original in [questions](./BuiltinQuestions.md#images_no_blur))_ | _{image_carousel()}{image_upload(,,,true)}_ | | _Multiple choice only_ |
| [artwork-artwork_type](#artwork-artwork_type) | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>13 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) | | [artwork-artwork_type](#artwork-artwork_type) | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>14 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) |
| [artwork-artist-wikidata](#artwork-artist-wikidata) | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) | | [artwork-artist-wikidata](#artwork-artist-wikidata) | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [artwork-artist_name](#artwork-artist_name) | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) | | [artwork-artist_name](#artwork-artist_name) | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) |
| [artwork-website](#artwork-website) | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) | | [artwork-website](#artwork-website) | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
@ -149,12 +149,14 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images_no_blur ### images_no_blur
Same as `images`, but uploaded request to disable blurring to the panoramax server Same as `images`, but uploaded request to disable blurring to the panoramax server
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload(,,,true)}* *{image_carousel()}{image_upload(,,,true)}*
### artwork-artwork_type ### artwork-artwork_type
The question is `What is the type of this artwork?` The question is `What is the type of this artwork?`
*This is a {artwork_type}* is shown if `artwork_type` is set
*This is a {artwork_type}* is shown if `artwork_type` is set.
- *Architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a> - *Architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a>
- *Mural* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a> - *Mural* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a>
@ -169,6 +171,7 @@ The question is `What is the type of this artwork?`
- *Azulejo (Spanish decorative tilework)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a> - *Azulejo (Spanish decorative tilework)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a>
- *Tilework* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a> - *Tilework* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a>
- *Woodcarving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving' target='_blank'>woodcarving</a> - *Woodcarving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving' target='_blank'>woodcarving</a>
- *Poem* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpoem' target='_blank'>poem</a>
This tagrendering has labels This tagrendering has labels
`artwork-question` `artwork-question`
@ -176,7 +179,8 @@ This tagrendering has labels
### artwork-artist-wikidata ### artwork-artist-wikidata
The question is `Who made this artwork?` The question is `Who made this artwork?`
*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set
*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set.
This tagrendering has labels This tagrendering has labels
`artwork-question` `artwork-question`
@ -184,7 +188,8 @@ This tagrendering has labels
### artwork-artist_name ### artwork-artist_name
The question is `Which artist created this?` The question is `Which artist created this?`
*Created by {artist_name}* is shown if `artist_name` is set
*Created by {artist_name}* is shown if `artist_name` is set.
This tagrendering has labels This tagrendering has labels
`artwork-question` `artwork-question`
@ -192,7 +197,8 @@ This tagrendering has labels
### artwork-website ### artwork-website
The question is `Is there a website with more information about this artwork?` The question is `Is there a website with more information about this artwork?`
*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set
*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set.
This tagrendering has labels This tagrendering has labels
`artwork-question` `artwork-question`
@ -200,17 +206,18 @@ This tagrendering has labels
### wikipedia ### wikipedia
Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor
The question is `What is the corresponding Wikidata entity?` The question is `What is the corresponding Wikidata entity?`
*{wikipedia():max-height:25rem}* is shown if `wikidata` is set
- *No Wikipedia page has been linked yet* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ *{wikipedia():max-height:25rem}* is shown if `wikidata` is set.
- *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_
### artwork_subject ### artwork_subject
The question is `What does this artwork depict?` The question is `What does this artwork depict?`
*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set
This tagrendering is only visible in the popup if the following condition is met: subject:wikidata~.+ *This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set.
This tagrendering has labels This tagrendering has labels
`artwork-question` `artwork-question`
@ -224,7 +231,8 @@ The question is `Does this artwork serve as a memorial?`
### memorial-type ### memorial-type
The question is `What type of memorial is this?` The question is `What type of memorial is this?`
*This is a {memorial}* is shown if `memorial` is set
*This is a {memorial}* is shown if `memorial` is set.
- *This is a statue* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstatue' target='_blank'>statue</a> - *This is a statue* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstatue' target='_blank'>statue</a>
- *This is a plaque* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dplaque' target='_blank'>plaque</a> - *This is a plaque* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dplaque' target='_blank'>plaque</a>
@ -249,7 +257,8 @@ This tagrendering has labels
### inscription ### inscription
The question is `What is the inscription on this memorial?` The question is `What is the inscription on this memorial?`
*The inscription on this memorial reads: <p><i>{inscription}<i></p>* is shown if `inscription` is set
*The inscription on this memorial reads: <p><i>{inscription}<i></p>* is shown if `inscription` is set.
- *This memorial does not have an inscription* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:inscription' target='_blank'>not:inscription</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:inscription%3Dyes' target='_blank'>yes</a> - *This memorial does not have an inscription* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:inscription' target='_blank'>not:inscription</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:inscription%3Dyes' target='_blank'>yes</a>
@ -260,7 +269,8 @@ This tagrendering has labels
### memorial-wikidata ### memorial-wikidata
The question is `What is the Wikipedia page about this memorial?` The question is `What is the Wikipedia page about this memorial?`
*<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}* is shown if `wikidata` is set
*<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}* is shown if `wikidata` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels This tagrendering has labels
@ -270,7 +280,8 @@ This tagrendering has labels
### subject-wikidata ### subject-wikidata
The question is `What is the Wikipedia page about the person or event that is remembered here?` The question is `What is the Wikipedia page about the person or event that is remembered here?`
*<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set
*<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels This tagrendering has labels
@ -311,7 +322,8 @@ This tagrendering has labels
### bench-seats ### bench-seats
The question is `How many seats does this bench have?` The question is `How many seats does this bench have?`
*This bench has {seats} seats* is shown if `seats` is set
*This bench has {seats} seats* is shown if `seats` is set.
- *This bench does not have separated seats* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:seats:separated' target='_blank'>seats:separated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:seats:separated%3Dno' target='_blank'>no</a> - *This bench does not have separated seats* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:seats:separated' target='_blank'>seats:separated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:seats:separated%3Dno' target='_blank'>no</a>
@ -322,7 +334,8 @@ This tagrendering has labels
### bench-material ### bench-material
The question is `What is the bench (seating) made from?` The question is `What is the bench (seating) made from?`
*Material: {material}* is shown if `material` is set
*Material: {material}* is shown if `material` is set.
- *The seating is made from wood* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a> - *The seating is made from wood* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>
- *The seating is made from metal* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a> - *The seating is made from metal* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a>
@ -338,7 +351,8 @@ This tagrendering has labels
### bench-direction ### bench-direction
The question is `In which direction are you looking when sitting on the bench?` The question is `In which direction are you looking when sitting on the bench?`
*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set
*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a> & two_sided!=yes This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a> & two_sided!=yes
This tagrendering has labels This tagrendering has labels
@ -347,7 +361,8 @@ This tagrendering has labels
### bench-colour ### bench-colour
The question is `Which colour does this bench have?` The question is `Which colour does this bench have?`
*Colour: {colour}* is shown if `colour` is set
*Colour: {colour}* is shown if `colour` is set.
- *Colour: brown* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a> - *Colour: brown* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a>
- *Colour: green* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a> - *Colour: green* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a>
@ -365,7 +380,8 @@ This tagrendering has labels
### bench-survey:date ### bench-survey:date
The question is `When was this bench last surveyed?` The question is `When was this bench last surveyed?`
*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set
*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set.
- *Surveyed today!* is shown if with survey:date= - *Surveyed today!* is shown if with survey:date=
@ -376,7 +392,8 @@ This tagrendering has labels
### bench-inscription ### bench-inscription
The question is `Does this bench have an inscription?` The question is `Does this bench have an inscription?`
*This bench has the following inscription:<br/><p><i>{inscription}</i></p>* is shown if `inscription` is set
*This bench has the following inscription:<br/><p><i>{inscription}</i></p>* is shown if `inscription` is set.
- *This bench does not have an inscription* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:inscription' target='_blank'>not:inscription</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:inscription%3Dyes' target='_blank'>yes</a> - *This bench does not have an inscription* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:inscription' target='_blank'>not:inscription</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:inscription%3Dyes' target='_blank'>yes</a>
- *This bench <span class='subtle'>probably</span> does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_ - *This bench <span class='subtle'>probably</span> does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_
@ -406,7 +423,8 @@ The question is `Does this artwork also double as wayside shrine?`
### shrine_name ### shrine_name
The question is `What's the name of this {title()}?` The question is `What's the name of this {title()}?`
*The name of this {title()} is <b>{name}</b>* is shown if `name` is set
*The name of this {title()} is <b>{name}</b>* is shown if `name` is set.
- *This shrine does not have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a> - *This shrine does not have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
@ -417,7 +435,8 @@ This tagrendering has labels
### religion ### religion
The question is `To which religion is this shrine dedicated?` The question is `To which religion is this shrine dedicated?`
*This shrine is {religion}* is shown if `religion` is set
*This shrine is {religion}* is shown if `religion` is set.
- *This is a Christian shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian' target='_blank'>christian</a> - *This is a Christian shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian' target='_blank'>christian</a>
- *This is a Buddhist shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist' target='_blank'>buddhist</a> - *This is a Buddhist shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist' target='_blank'>buddhist</a>
@ -438,7 +457,8 @@ This tagrendering has labels
### denomination_christian ### denomination_christian
The question is `What's the Christian denomination of this {title()}?` The question is `What's the Christian denomination of this {title()}?`
*The religious denomination is <b>{denomination}</b>* is shown if `denomination` is set
*The religious denomination is <b>{denomination}</b>* is shown if `denomination` is set.
- *The religious subdenomination is Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic' target='_blank'>catholic</a> - *The religious subdenomination is Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic' target='_blank'>catholic</a>
- *The religious subdenomination is Roman Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic' target='_blank'>roman_catholic</a> - *The religious subdenomination is Roman Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic' target='_blank'>roman_catholic</a>
@ -458,7 +478,8 @@ This tagrendering has labels
### denomination_muslim ### denomination_muslim
The question is `What's the Muslim denomination of this shrine?` The question is `What's the Muslim denomination of this shrine?`
*The religious subdenomination is {denomination}* is shown if `denomination` is set
*The religious subdenomination is {denomination}* is shown if `denomination` is set.
- *The religious subdenomination is Shia* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia' target='_blank'>shia</a> - *The religious subdenomination is Shia* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia' target='_blank'>shia</a>
- *The religious subdenomination is Sunni* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni' target='_blank'>sunni</a> - *The religious subdenomination is Sunni* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni' target='_blank'>sunni</a>
@ -471,7 +492,8 @@ This tagrendering has labels
### denomination_jewish ### denomination_jewish
The question is `What's the Jewish denomination of this shrine?` The question is `What's the Jewish denomination of this shrine?`
*The religious subdenomination is {denomination}* is shown if `denomination` is set
*The religious subdenomination is {denomination}* is shown if `denomination` is set.
- *The religious subdenomination is Conservative* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative' target='_blank'>conservative</a> - *The religious subdenomination is Conservative* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative' target='_blank'>conservative</a>
- *The religious subdenomination is Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox' target='_blank'>orthodox</a> - *The religious subdenomination is Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox' target='_blank'>orthodox</a>
@ -485,7 +507,8 @@ This tagrendering has labels
### denomination_other ### denomination_other
The question is `What's the denomination of this shrine?` The question is `What's the denomination of this shrine?`
*The denomination of this shrine is {denomination}* is shown if `denomination` is set
*The denomination of this shrine is {denomination}* is shown if `denomination` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & religion!=christian & religion!=muslim & religion!=jewish & religion~.+ This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & religion!=christian & religion!=muslim & religion!=jewish & religion~.+
This tagrendering has labels This tagrendering has labels
@ -494,6 +517,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -503,16 +527,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels
@ -542,6 +569,7 @@ This tagrendering has labels
| artwork-artwork_type.11 | Azulejo (Spanish decorative tilework) | artwork_type=azulejo | | artwork-artwork_type.11 | Azulejo (Spanish decorative tilework) | artwork_type=azulejo |
| artwork-artwork_type.12 | Tilework | artwork_type=tilework | | artwork-artwork_type.12 | Tilework | artwork_type=tilework |
| artwork-artwork_type.13 | Woodcarving | artwork_type=woodcarving | | artwork-artwork_type.13 | Woodcarving | artwork_type=woodcarving |
| artwork-artwork_type.14 | Poem | artwork_type=poem |
| id | question | osmTags | | id | question | osmTags |
-----|-----|----- | -----|-----|----- |

View file

@ -74,7 +74,7 @@ Elements must match **all** of the following expressions:
| attribute | type | values which are supported by this layer | | attribute | type | values which are supported by this layer |
-----|-----|----- | -----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [advertising](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [advertising](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artwork_type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artwork_type/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artwork_type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artwork_type/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) [poem](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpoem) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist_name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist_name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist_name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist_name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
@ -109,7 +109,7 @@ Elements must match **all** of the following expressions:
-----|-----|-----|----- | -----|-----|-----|----- |
| [historic_or_not](#historic_or_not) | Is this artwork a historic advertisement?<br/>2 options | | _Multiple choice only_ | | [historic_or_not](#historic_or_not) | Is this artwork a historic advertisement?<br/>2 options | | _Multiple choice only_ |
| [images_no_blur](#images_no_blur) <br/> _(Original in [questions](./BuiltinQuestions.md#images_no_blur))_ | _{image_carousel()}{image_upload(,,,true)}_ | | _Multiple choice only_ | | [images_no_blur](#images_no_blur) <br/> _(Original in [questions](./BuiltinQuestions.md#images_no_blur))_ | _{image_carousel()}{image_upload(,,,true)}_ | | _Multiple choice only_ |
| [artwork-artwork_type](#artwork-artwork_type) | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>13 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) | | [artwork-artwork_type](#artwork-artwork_type) | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>14 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) |
| [artwork-artist-wikidata](#artwork-artist-wikidata) | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) | | [artwork-artist-wikidata](#artwork-artist-wikidata) | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [artwork-artist_name](#artwork-artist_name) | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) | | [artwork-artist_name](#artwork-artist_name) | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) |
| [artwork-website](#artwork-website) | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) | | [artwork-website](#artwork-website) | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
@ -152,12 +152,14 @@ The question is `Is this artwork a historic advertisement?`
### images_no_blur ### images_no_blur
Same as `images`, but uploaded request to disable blurring to the panoramax server Same as `images`, but uploaded request to disable blurring to the panoramax server
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload(,,,true)}* *{image_carousel()}{image_upload(,,,true)}*
### artwork-artwork_type ### artwork-artwork_type
The question is `What is the type of this artwork?` The question is `What is the type of this artwork?`
*This is a {artwork_type}* is shown if `artwork_type` is set
*This is a {artwork_type}* is shown if `artwork_type` is set.
- *Architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a> - *Architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a>
- *Mural* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a> - *Mural* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a>
@ -172,6 +174,7 @@ The question is `What is the type of this artwork?`
- *Azulejo (Spanish decorative tilework)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a> - *Azulejo (Spanish decorative tilework)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a>
- *Tilework* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a> - *Tilework* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a>
- *Woodcarving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving' target='_blank'>woodcarving</a> - *Woodcarving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving' target='_blank'>woodcarving</a>
- *Poem* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpoem' target='_blank'>poem</a>
This tagrendering has labels This tagrendering has labels
`artwork-question` `artwork-question`
@ -179,7 +182,8 @@ This tagrendering has labels
### artwork-artist-wikidata ### artwork-artist-wikidata
The question is `Who made this artwork?` The question is `Who made this artwork?`
*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set
*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set.
This tagrendering has labels This tagrendering has labels
`artwork-question` `artwork-question`
@ -187,7 +191,8 @@ This tagrendering has labels
### artwork-artist_name ### artwork-artist_name
The question is `Which artist created this?` The question is `Which artist created this?`
*Created by {artist_name}* is shown if `artist_name` is set
*Created by {artist_name}* is shown if `artist_name` is set.
This tagrendering has labels This tagrendering has labels
`artwork-question` `artwork-question`
@ -195,7 +200,8 @@ This tagrendering has labels
### artwork-website ### artwork-website
The question is `Is there a website with more information about this artwork?` The question is `Is there a website with more information about this artwork?`
*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set
*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set.
This tagrendering has labels This tagrendering has labels
`artwork-question` `artwork-question`
@ -203,17 +209,18 @@ This tagrendering has labels
### wikipedia ### wikipedia
Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor
The question is `What is the corresponding Wikidata entity?` The question is `What is the corresponding Wikidata entity?`
*{wikipedia():max-height:25rem}* is shown if `wikidata` is set
- *No Wikipedia page has been linked yet* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ *{wikipedia():max-height:25rem}* is shown if `wikidata` is set.
- *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_
### artwork_subject ### artwork_subject
The question is `What does this artwork depict?` The question is `What does this artwork depict?`
*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set
This tagrendering is only visible in the popup if the following condition is met: subject:wikidata~.+ *This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set.
This tagrendering has labels This tagrendering has labels
`artwork-question` `artwork-question`
@ -227,7 +234,8 @@ The question is `Does this artwork serve as a memorial?`
### memorial-type ### memorial-type
The question is `What type of memorial is this?` The question is `What type of memorial is this?`
*This is a {memorial}* is shown if `memorial` is set
*This is a {memorial}* is shown if `memorial` is set.
- *This is a statue* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstatue' target='_blank'>statue</a> - *This is a statue* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstatue' target='_blank'>statue</a>
- *This is a plaque* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dplaque' target='_blank'>plaque</a> - *This is a plaque* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dplaque' target='_blank'>plaque</a>
@ -252,7 +260,8 @@ This tagrendering has labels
### inscription ### inscription
The question is `What is the inscription on this memorial?` The question is `What is the inscription on this memorial?`
*The inscription on this memorial reads: <p><i>{inscription}<i></p>* is shown if `inscription` is set
*The inscription on this memorial reads: <p><i>{inscription}<i></p>* is shown if `inscription` is set.
- *This memorial does not have an inscription* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:inscription' target='_blank'>not:inscription</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:inscription%3Dyes' target='_blank'>yes</a> - *This memorial does not have an inscription* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:inscription' target='_blank'>not:inscription</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:inscription%3Dyes' target='_blank'>yes</a>
@ -263,7 +272,8 @@ This tagrendering has labels
### memorial-wikidata ### memorial-wikidata
The question is `What is the Wikipedia page about this memorial?` The question is `What is the Wikipedia page about this memorial?`
*<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}* is shown if `wikidata` is set
*<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}* is shown if `wikidata` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels This tagrendering has labels
@ -273,7 +283,8 @@ This tagrendering has labels
### subject-wikidata ### subject-wikidata
The question is `What is the Wikipedia page about the person or event that is remembered here?` The question is `What is the Wikipedia page about the person or event that is remembered here?`
*<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set
*<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels This tagrendering has labels
@ -314,7 +325,8 @@ This tagrendering has labels
### bench-seats ### bench-seats
The question is `How many seats does this bench have?` The question is `How many seats does this bench have?`
*This bench has {seats} seats* is shown if `seats` is set
*This bench has {seats} seats* is shown if `seats` is set.
- *This bench does not have separated seats* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:seats:separated' target='_blank'>seats:separated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:seats:separated%3Dno' target='_blank'>no</a> - *This bench does not have separated seats* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:seats:separated' target='_blank'>seats:separated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:seats:separated%3Dno' target='_blank'>no</a>
@ -325,7 +337,8 @@ This tagrendering has labels
### bench-material ### bench-material
The question is `What is the bench (seating) made from?` The question is `What is the bench (seating) made from?`
*Material: {material}* is shown if `material` is set
*Material: {material}* is shown if `material` is set.
- *The seating is made from wood* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a> - *The seating is made from wood* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>
- *The seating is made from metal* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a> - *The seating is made from metal* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a>
@ -341,7 +354,8 @@ This tagrendering has labels
### bench-direction ### bench-direction
The question is `In which direction are you looking when sitting on the bench?` The question is `In which direction are you looking when sitting on the bench?`
*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set
*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a> & two_sided!=yes This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a> & two_sided!=yes
This tagrendering has labels This tagrendering has labels
@ -350,7 +364,8 @@ This tagrendering has labels
### bench-colour ### bench-colour
The question is `Which colour does this bench have?` The question is `Which colour does this bench have?`
*Colour: {colour}* is shown if `colour` is set
*Colour: {colour}* is shown if `colour` is set.
- *Colour: brown* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a> - *Colour: brown* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a>
- *Colour: green* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a> - *Colour: green* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a>
@ -368,7 +383,8 @@ This tagrendering has labels
### bench-survey:date ### bench-survey:date
The question is `When was this bench last surveyed?` The question is `When was this bench last surveyed?`
*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set
*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set.
- *Surveyed today!* is shown if with survey:date= - *Surveyed today!* is shown if with survey:date=
@ -379,7 +395,8 @@ This tagrendering has labels
### bench-inscription ### bench-inscription
The question is `Does this bench have an inscription?` The question is `Does this bench have an inscription?`
*This bench has the following inscription:<br/><p><i>{inscription}</i></p>* is shown if `inscription` is set
*This bench has the following inscription:<br/><p><i>{inscription}</i></p>* is shown if `inscription` is set.
- *This bench does not have an inscription* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:inscription' target='_blank'>not:inscription</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:inscription%3Dyes' target='_blank'>yes</a> - *This bench does not have an inscription* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:inscription' target='_blank'>not:inscription</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:inscription%3Dyes' target='_blank'>yes</a>
- *This bench <span class='subtle'>probably</span> does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_ - *This bench <span class='subtle'>probably</span> does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_
@ -409,7 +426,8 @@ The question is `Does this artwork also double as wayside shrine?`
### shrine_name ### shrine_name
The question is `What's the name of this {title()}?` The question is `What's the name of this {title()}?`
*The name of this {title()} is <b>{name}</b>* is shown if `name` is set
*The name of this {title()} is <b>{name}</b>* is shown if `name` is set.
- *This shrine does not have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a> - *This shrine does not have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
@ -420,7 +438,8 @@ This tagrendering has labels
### religion ### religion
The question is `To which religion is this shrine dedicated?` The question is `To which religion is this shrine dedicated?`
*This shrine is {religion}* is shown if `religion` is set
*This shrine is {religion}* is shown if `religion` is set.
- *This is a Christian shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian' target='_blank'>christian</a> - *This is a Christian shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian' target='_blank'>christian</a>
- *This is a Buddhist shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist' target='_blank'>buddhist</a> - *This is a Buddhist shrine* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist' target='_blank'>buddhist</a>
@ -441,7 +460,8 @@ This tagrendering has labels
### denomination_christian ### denomination_christian
The question is `What's the Christian denomination of this {title()}?` The question is `What's the Christian denomination of this {title()}?`
*The religious denomination is <b>{denomination}</b>* is shown if `denomination` is set
*The religious denomination is <b>{denomination}</b>* is shown if `denomination` is set.
- *The religious subdenomination is Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic' target='_blank'>catholic</a> - *The religious subdenomination is Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic' target='_blank'>catholic</a>
- *The religious subdenomination is Roman Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic' target='_blank'>roman_catholic</a> - *The religious subdenomination is Roman Catholic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic' target='_blank'>roman_catholic</a>
@ -461,7 +481,8 @@ This tagrendering has labels
### denomination_muslim ### denomination_muslim
The question is `What's the Muslim denomination of this shrine?` The question is `What's the Muslim denomination of this shrine?`
*The religious subdenomination is {denomination}* is shown if `denomination` is set
*The religious subdenomination is {denomination}* is shown if `denomination` is set.
- *The religious subdenomination is Shia* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia' target='_blank'>shia</a> - *The religious subdenomination is Shia* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia' target='_blank'>shia</a>
- *The religious subdenomination is Sunni* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni' target='_blank'>sunni</a> - *The religious subdenomination is Sunni* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni' target='_blank'>sunni</a>
@ -474,7 +495,8 @@ This tagrendering has labels
### denomination_jewish ### denomination_jewish
The question is `What's the Jewish denomination of this shrine?` The question is `What's the Jewish denomination of this shrine?`
*The religious subdenomination is {denomination}* is shown if `denomination` is set
*The religious subdenomination is {denomination}* is shown if `denomination` is set.
- *The religious subdenomination is Conservative* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative' target='_blank'>conservative</a> - *The religious subdenomination is Conservative* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative' target='_blank'>conservative</a>
- *The religious subdenomination is Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox' target='_blank'>orthodox</a> - *The religious subdenomination is Orthodox* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:denomination' target='_blank'>denomination</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox' target='_blank'>orthodox</a>
@ -488,7 +510,8 @@ This tagrendering has labels
### denomination_other ### denomination_other
The question is `What's the denomination of this shrine?` The question is `What's the denomination of this shrine?`
*The denomination of this shrine is {denomination}* is shown if `denomination` is set
*The denomination of this shrine is {denomination}* is shown if `denomination` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & religion!=christian & religion!=muslim & religion!=jewish & religion~.+ This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & religion!=christian & religion!=muslim & religion!=jewish & religion~.+
This tagrendering has labels This tagrendering has labels
@ -497,6 +520,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -506,16 +530,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels
@ -545,6 +572,7 @@ This tagrendering has labels
| artwork-artwork_type.11 | Azulejo (Spanish decorative tilework) | artwork_type=azulejo | | artwork-artwork_type.11 | Azulejo (Spanish decorative tilework) | artwork_type=azulejo |
| artwork-artwork_type.12 | Tilework | artwork_type=tilework | | artwork-artwork_type.12 | Tilework | artwork_type=tilework |
| artwork-artwork_type.13 | Woodcarving | artwork_type=woodcarving | | artwork-artwork_type.13 | Woodcarving | artwork_type=woodcarving |
| artwork-artwork_type.14 | Poem | artwork_type=poem |
| id | question | osmTags | | id | question | osmTags |
-----|-----|----- | -----|-----|----- |

View file

@ -62,17 +62,20 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### assembly_point_name ### assembly_point_name
The question is `What is the name of this assembly point?` The question is `What is the name of this assembly point?`
*This assembly point is named <b>{name}</b>* is shown if `name` is set
*This assembly point is named <b>{name}</b>* is shown if `name` is set.
### assembly_point_operator ### assembly_point_operator
The question is `What organization operates this assembly point?` The question is `What organization operates this assembly point?`
*This assembly point is operated by <b>{operator}</b>* is shown if `operator` is set
*This assembly point is operated by <b>{operator}</b>* is shown if `operator` is set.
### disaster_type ### disaster_type
@ -86,6 +89,7 @@ The question is `For which disaster type is this assembly point meant?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -95,11 +99,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -84,22 +84,26 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### preset_description ### preset_description
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{preset_description()}* *{preset_description()}*
### name ### name
The question is `What is the name of this repair workshop?` The question is `What is the name of this repair workshop?`
*This workshop is called <b>{name}</b>* is shown if `name` is set
*This workshop is called <b>{name}</b>* is shown if `name` is set.
### opening_hours_by_appointment ### opening_hours_by_appointment
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Only by appointment* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment"' target='_blank'>"by appointment"</a> - *Only by appointment* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment"' target='_blank'>"by appointment"</a>
- *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_
@ -108,7 +112,8 @@ The question is `What are the opening hours of {title()}?`
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -118,7 +123,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -129,7 +135,8 @@ This tagrendering has labels
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -139,12 +146,14 @@ This tagrendering has labels
### mastodon ### mastodon
Shows and asks for the mastodon handle Shows and asks for the mastodon handle
The question is `What is the Mastodon-handle of {title()}?` The question is `What is the Mastodon-handle of {title()}?`
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set.
### facebook ### facebook
Shows and asks for the facebook handle Shows and asks for the facebook handle
The question is `What is the facebook page of of {title()}?` The question is `What is the facebook page of of {title()}?`
*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>* is shown if `contact:facebook` is set
*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>* is shown if `contact:facebook` is set.
### item:repair ### item:repair
@ -160,6 +169,7 @@ The question is `What type of items are repaired here?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -169,16 +179,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -88,11 +88,13 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### name ### name
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*The name of this ATM is {name}* *The name of this ATM is {name}*
This tagrendering is only visible in the popup if the following condition is met: name~.+ This tagrendering is only visible in the popup if the following condition is met: name~.+
@ -100,17 +102,20 @@ This tagrendering is only visible in the popup if the following condition is met
### brand ### brand
The question is `What brand is this ATM?` The question is `What brand is this ATM?`
*The brand of this ATM is {brand}* is shown if `brand` is set
*The brand of this ATM is {brand}* is shown if `brand` is set.
### operator ### operator
The question is `What company operates this ATM?` The question is `What company operates this ATM?`
*The ATM is operated by {operator}* is shown if `operator` is set
*The ATM is operated by {operator}* is shown if `operator` is set.
### opening_hours_24_7 ### opening_hours_24_7
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -160,6 +165,7 @@ The question is `Does this ATM have speech output for visually impaired users?`
### speech_output_language ### speech_output_language
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{language_chooser(speech_output,In which languages does this ATM have speech output?,This ATM has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This ATM has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}* *{language_chooser(speech_output,In which languages does this ATM have speech output?,This ATM has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This ATM has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:speech_output' target='_blank'>speech_output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:speech_output' target='_blank'>speech_output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes' target='_blank'>yes</a>
@ -167,6 +173,7 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -176,16 +183,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -53,6 +53,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### has_atm ### has_atm
@ -66,6 +67,7 @@ The question is `Does this bank have an ATM?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -75,16 +77,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -57,6 +57,7 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### has_atm ### has_atm
@ -70,6 +71,7 @@ The question is `Does this bank have an ATM?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -79,16 +81,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -86,6 +86,7 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### bicycle=yes/no ### bicycle=yes/no
@ -130,34 +131,39 @@ This tagrendering is only visible in the popup if the following condition is met
### MaxWidth ### MaxWidth
The question is `How wide is the gap left over besides the barrier?` The question is `How wide is the gap left over besides the barrier?`
*Maximum width: {maxwidth:physical} m* is shown if `maxwidth:physical` is set
*Maximum width: {maxwidth:physical} m* is shown if `maxwidth:physical` is set.
This tagrendering is only visible in the popup if the following condition is met: _referencing_ways~.+ & cycle_barrier!=double & cycle_barrier!=triple This tagrendering is only visible in the popup if the following condition is met: _referencing_ways~.+ & cycle_barrier!=double & cycle_barrier!=triple
### Space between barrier (cyclebarrier) ### Space between barrier (cyclebarrier)
The question is `How much space is there between the barriers (along the length of the road)?` The question is `How much space is there between the barriers (along the length of the road)?`
*Space between barriers (along the length of the road): {width:separation} m* is shown if `width:separation` is set
*Space between barriers (along the length of the road): {width:separation} m* is shown if `width:separation` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a>
### Width of opening (cyclebarrier) ### Width of opening (cyclebarrier)
The question is `How wide is the smallest opening next to the barriers?` The question is `How wide is the smallest opening next to the barriers?`
*Width of opening: {width:opening} m* is shown if `width:opening` is set
*Width of opening: {width:opening} m* is shown if `width:opening` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a>
### Overlap (cyclebarrier) ### Overlap (cyclebarrier)
The question is `How much overlap do the barriers have?` The question is `How much overlap do the barriers have?`
*Overlap: {overlap} m* is shown if `overlap` is set
*Overlap: {overlap} m* is shown if `overlap` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble' target='_blank'>double</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:cycle_barrier' target='_blank'>cycle_barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple' target='_blank'>triple</a>
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -167,16 +173,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -67,6 +67,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### access ### access
@ -99,6 +100,7 @@ The question is `How is this barbecue fuelled?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -108,16 +110,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -59,18 +59,21 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### capacity ### capacity
The question is `How many beehives are there?` The question is `How many beehives are there?`
*There are {capacity} beehives* is shown if `capacity` is set
*There are {capacity} beehives* is shown if `capacity` is set.
- *There is 1 beehive* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:capacity' target='_blank'>capacity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:capacity%3D1' target='_blank'>1</a> - *There is 1 beehive* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:capacity' target='_blank'>capacity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:capacity%3D1' target='_blank'>1</a>
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -80,16 +83,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -79,7 +79,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/survey:date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/survey%3Adate/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/survey:date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/survey%3Adate/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/inscription#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/inscription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/inscription#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/inscription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artwork_type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artwork_type/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artwork_type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artwork_type/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) [poem](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpoem) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist_name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist_name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist_name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist_name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
@ -102,7 +102,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| [bench-inscription](#bench-inscription) | Does this bench have an inscription?<br/>_This bench has the following inscription:<br/><p><i>{inscription}</i></p>_<br/>2 options | bench-questions | *[inscription](https://wiki.osm.org/wiki/Key:inscription)* ([text](../SpecialInputElements.md#text)) | | [bench-inscription](#bench-inscription) | Does this bench have an inscription?<br/>_This bench has the following inscription:<br/><p><i>{inscription}</i></p>_<br/>2 options | bench-questions | *[inscription](https://wiki.osm.org/wiki/Key:inscription)* ([text](../SpecialInputElements.md#text)) |
| [bench-artwork](#bench-artwork) | Does this bench have an artistic element?<br/>3 options | | _Multiple choice only_ | | [bench-artwork](#bench-artwork) | Does this bench have an artistic element?<br/>3 options | | _Multiple choice only_ |
| [bench-memorial](#bench-memorial) | Does this bench act as memorial for someone or something?<br/>2 options | bench-questions | _Multiple choice only_ | | [bench-memorial](#bench-memorial) | Does this bench act as memorial for someone or something?<br/>2 options | bench-questions | _Multiple choice only_ |
| [artwork-artwork_type](#artwork-artwork_type) <br/> _(Original in [artwork](./artwork.md#artwork-artwork_type))_ | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>13 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) | | [artwork-artwork_type](#artwork-artwork_type) <br/> _(Original in [artwork](./artwork.md#artwork-artwork_type))_ | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>14 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) |
| [artwork-artist-wikidata](#artwork-artist-wikidata) <br/> _(Original in [artwork](./artwork.md#artwork-artist-wikidata))_ | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) | | [artwork-artist-wikidata](#artwork-artist-wikidata) <br/> _(Original in [artwork](./artwork.md#artwork-artist-wikidata))_ | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [artwork-artist_name](#artwork-artist_name) <br/> _(Original in [artwork](./artwork.md#artwork-artist_name))_ | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) | | [artwork-artist_name](#artwork-artist_name) <br/> _(Original in [artwork](./artwork.md#artwork-artist_name))_ | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) |
| [artwork-website](#artwork-website) <br/> _(Original in [artwork](./artwork.md#artwork-website))_ | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) | | [artwork-website](#artwork-website) <br/> _(Original in [artwork](./artwork.md#artwork-website))_ | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
@ -117,6 +117,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### bench-backrest ### bench-backrest
@ -143,7 +144,8 @@ This tagrendering has labels
### bench-seats ### bench-seats
The question is `How many seats does this bench have?` The question is `How many seats does this bench have?`
*This bench has {seats} seats* is shown if `seats` is set
*This bench has {seats} seats* is shown if `seats` is set.
- *This bench does not have separated seats* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:seats:separated' target='_blank'>seats:separated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:seats:separated%3Dno' target='_blank'>no</a> - *This bench does not have separated seats* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:seats:separated' target='_blank'>seats:separated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:seats:separated%3Dno' target='_blank'>no</a>
@ -153,7 +155,8 @@ This tagrendering has labels
### bench-material ### bench-material
The question is `What is the bench (seating) made from?` The question is `What is the bench (seating) made from?`
*Material: {material}* is shown if `material` is set
*Material: {material}* is shown if `material` is set.
- *The seating is made from wood* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a> - *The seating is made from wood* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood' target='_blank'>wood</a>
- *The seating is made from metal* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a> - *The seating is made from metal* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:material' target='_blank'>material</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal' target='_blank'>metal</a>
@ -168,7 +171,8 @@ This tagrendering has labels
### bench-direction ### bench-direction
The question is `In which direction are you looking when sitting on the bench?` The question is `In which direction are you looking when sitting on the bench?`
*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set
*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set.
This tagrendering has labels This tagrendering has labels
`bench-questions` `bench-questions`
@ -176,7 +180,8 @@ This tagrendering has labels
### bench-colour ### bench-colour
The question is `Which colour does this bench have?` The question is `Which colour does this bench have?`
*Colour: {colour}* is shown if `colour` is set
*Colour: {colour}* is shown if `colour` is set.
- *Colour: brown* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a> - *Colour: brown* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown' target='_blank'>brown</a>
- *Colour: green* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a> - *Colour: green* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:colour' target='_blank'>colour</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen' target='_blank'>green</a>
@ -193,7 +198,8 @@ This tagrendering has labels
### bench-survey:date ### bench-survey:date
The question is `When was this bench last surveyed?` The question is `When was this bench last surveyed?`
*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set
*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set.
- *Surveyed today!* is shown if with survey:date= - *Surveyed today!* is shown if with survey:date=
@ -203,7 +209,8 @@ This tagrendering has labels
### bench-inscription ### bench-inscription
The question is `Does this bench have an inscription?` The question is `Does this bench have an inscription?`
*This bench has the following inscription:<br/><p><i>{inscription}</i></p>* is shown if `inscription` is set
*This bench has the following inscription:<br/><p><i>{inscription}</i></p>* is shown if `inscription` is set.
- *This bench does not have an inscription* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:inscription' target='_blank'>not:inscription</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:inscription%3Dyes' target='_blank'>yes</a> - *This bench does not have an inscription* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:inscription' target='_blank'>not:inscription</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:inscription%3Dyes' target='_blank'>yes</a>
- *This bench <span class='subtle'>probably</span> does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_ - *This bench <span class='subtle'>probably</span> does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_
@ -233,7 +240,8 @@ This tagrendering has labels
### artwork-artwork_type ### artwork-artwork_type
The question is `What is the type of this artwork?` The question is `What is the type of this artwork?`
*This is a {artwork_type}* is shown if `artwork_type` is set
*This is a {artwork_type}* is shown if `artwork_type` is set.
- *Architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a> - *Architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a>
- *Mural* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a> - *Mural* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a>
@ -248,6 +256,7 @@ The question is `What is the type of this artwork?`
- *Azulejo (Spanish decorative tilework)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a> - *Azulejo (Spanish decorative tilework)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a>
- *Tilework* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a> - *Tilework* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a>
- *Woodcarving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving' target='_blank'>woodcarving</a> - *Woodcarving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving' target='_blank'>woodcarving</a>
- *Poem* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpoem' target='_blank'>poem</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
This tagrendering has labels This tagrendering has labels
@ -256,7 +265,8 @@ This tagrendering has labels
### artwork-artist-wikidata ### artwork-artist-wikidata
The question is `Who made this artwork?` The question is `Who made this artwork?`
*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set
*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
This tagrendering has labels This tagrendering has labels
@ -265,7 +275,8 @@ This tagrendering has labels
### artwork-artist_name ### artwork-artist_name
The question is `Which artist created this?` The question is `Which artist created this?`
*Created by {artist_name}* is shown if `artist_name` is set
*Created by {artist_name}* is shown if `artist_name` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
This tagrendering has labels This tagrendering has labels
@ -274,7 +285,8 @@ This tagrendering has labels
### artwork-website ### artwork-website
The question is `Is there a website with more information about this artwork?` The question is `Is there a website with more information about this artwork?`
*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set
*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
This tagrendering has labels This tagrendering has labels
@ -283,7 +295,8 @@ This tagrendering has labels
### artwork_subject ### artwork_subject
The question is `What does this artwork depict?` The question is `What does this artwork depict?`
*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set
*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
This tagrendering has labels This tagrendering has labels
@ -292,7 +305,8 @@ This tagrendering has labels
### memorial-wikidata ### memorial-wikidata
The question is `What is the Wikipedia page about this memorial?` The question is `What is the Wikipedia page about this memorial?`
*<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}* is shown if `wikidata` is set
*<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}* is shown if `wikidata` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels This tagrendering has labels
@ -302,7 +316,8 @@ This tagrendering has labels
### subject-wikidata ### subject-wikidata
The question is `What is the Wikipedia page about the person or event that is remembered here?` The question is `What is the Wikipedia page about the person or event that is remembered here?`
*<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set
*<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial' target='_blank'>memorial</a>
This tagrendering has labels This tagrendering has labels
@ -312,6 +327,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -321,16 +337,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -56,12 +56,14 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### bench_at_pt-name ### bench_at_pt-name
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{name}* is shown if `name` is set
*{name}* is shown if `name` is set.
### bench_at_pt-bench_type ### bench_at_pt-bench_type
@ -74,6 +76,7 @@ The question is `What kind of bench is this?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -83,11 +86,13 @@ This tagrendering has labels
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -81,22 +81,26 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### preset_description ### preset_description
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{preset_description()}* *{preset_description()}*
### name ### name
The question is `What is the name of this repair workshop?` The question is `What is the name of this repair workshop?`
*This workshop is called <b>{name}</b>* is shown if `name` is set
*This workshop is called <b>{name}</b>* is shown if `name` is set.
### opening_hours_by_appointment ### opening_hours_by_appointment
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Only by appointment* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment"' target='_blank'>"by appointment"</a> - *Only by appointment* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment"' target='_blank'>"by appointment"</a>
- *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_
@ -105,7 +109,8 @@ The question is `What are the opening hours of {title()}?`
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -115,7 +120,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -126,7 +132,8 @@ This tagrendering has labels
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -136,12 +143,14 @@ This tagrendering has labels
### mastodon ### mastodon
Shows and asks for the mastodon handle Shows and asks for the mastodon handle
The question is `What is the Mastodon-handle of {title()}?` The question is `What is the Mastodon-handle of {title()}?`
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set.
### facebook ### facebook
Shows and asks for the facebook handle Shows and asks for the facebook handle
The question is `What is the facebook page of of {title()}?` The question is `What is the facebook page of of {title()}?`
*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>* is shown if `contact:facebook` is set
*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}<div class='subtle text-sm'>Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives</div>* is shown if `contact:facebook` is set.
### item:repair ### item:repair
@ -157,6 +166,7 @@ The question is `What type of items are repaired here?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -166,16 +176,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -78,6 +78,7 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### display ### display
@ -91,12 +92,14 @@ The question is `Does this bicycle counter have a display showing the number of
### name ### name
The question is `What is the name of the counted location?` The question is `What is the name of the counted location?`
*Name of the counted location: {name}* is shown if `name` is set
*Name of the counted location: {name}* is shown if `name` is set.
### start_date ### start_date
The question is `When did this counter start counting?` The question is `When did this counter start counting?`
*This counter started counting on {start_date}* is shown if `start_date` is set
*This counter started counting on {start_date}* is shown if `start_date` is set.
### clock ### clock
@ -108,18 +111,21 @@ The question is `Does this bicycle counter have a clock?`
### ref ### ref
The question is `What is the reference number of this counter?` The question is `What is the reference number of this counter?`
*Reference number of the counter: {ref}* is shown if `ref` is set
*Reference number of the counter: {ref}* is shown if `ref` is set.
- *This counter has no reference number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noref' target='_blank'>noref</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noref%3Dyes' target='_blank'>yes</a> - *This counter has no reference number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noref' target='_blank'>noref</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noref%3Dyes' target='_blank'>yes</a>
### website ### website
The question is `Is there a website for this bicycle counter?` The question is `Is there a website for this bicycle counter?`
*Website of the counter: <a href='{website}'>{website}</a>* is shown if `website` is set
*Website of the counter: <a href='{website}'>{website}</a>* is shown if `website` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -129,16 +135,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -85,17 +85,20 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### bicycle_library-name ### bicycle_library-name
The question is `What is the name of this bicycle library?` The question is `What is the name of this bicycle library?`
*This bicycle library is called {name}* is shown if `name` is set
*This bicycle library is called {name}* is shown if `name` is set.
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -105,7 +108,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -115,7 +119,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -126,14 +131,16 @@ This tagrendering has labels
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### bicycle_library-charge ### bicycle_library-charge
The question is `How much does lending a bicycle cost?` The question is `How much does lending a bicycle cost?`
*Lending a bicycle costs {charge}* is shown if `charge` is set
*Lending a bicycle costs {charge}* is shown if `charge` is set.
- *Lending a bicycle is free* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a> & charge= - *Lending a bicycle is free* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a> & charge=
- *Lending a bicycle costs €20/year and €20 warranty* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year' target='_blank'>€20warranty + €20/year</a> - *Lending a bicycle costs €20/year and €20 warranty* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year' target='_blank'>€20warranty + €20/year</a>
@ -149,11 +156,13 @@ The question is `Who can loan bicycles here?`
### description ### description
The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.`
*{description}* is shown if `description` is set
*{description}* is shown if `description` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -163,16 +172,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -111,6 +111,7 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### bicycle_rental_type ### bicycle_rental_type
@ -129,7 +130,8 @@ This tagrendering is only visible in the popup if the following condition is met
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -139,7 +141,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -150,7 +153,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -160,7 +164,8 @@ This tagrendering has labels
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -189,7 +194,8 @@ The question is `Which methods of payment are accepted here?`
### bicycle-types ### bicycle-types
The question is `What kind of bicycles and accessories are rented here?` The question is `What kind of bicycles and accessories are rented here?`
*{rental} is rented here* is shown if `rental` is set
*{rental} is rented here* is shown if `rental` is set.
- *Normal city bikes can be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike' target='_blank'>city_bike</a> - *Normal city bikes can be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike' target='_blank'>city_bike</a>
- *Electrical bikes can be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike' target='_blank'>ebike</a> - *Electrical bikes can be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike' target='_blank'>ebike</a>
@ -207,7 +213,8 @@ This tagrendering has labels
### rental-capacity-city_bike ### rental-capacity-city_bike
The question is `How many city bikes can be rented here?` The question is `How many city bikes can be rented here?`
*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set
*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*city_bike.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*city_bike.*)$
This tagrendering has labels This tagrendering has labels
@ -216,7 +223,8 @@ This tagrendering has labels
### rental-capacity-ebike ### rental-capacity-ebike
The question is `How many electrical bikes can be rented here?` The question is `How many electrical bikes can be rented here?`
*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set
*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*ebike.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*ebike.*)$
This tagrendering has labels This tagrendering has labels
@ -225,7 +233,8 @@ This tagrendering has labels
### rental-capacity-kid_bike ### rental-capacity-kid_bike
The question is `How many bikes for children can be rented here?` The question is `How many bikes for children can be rented here?`
*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set
*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*kid_bike.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*kid_bike.*)$
This tagrendering has labels This tagrendering has labels
@ -234,7 +243,8 @@ This tagrendering has labels
### rental-capacity-bmx ### rental-capacity-bmx
The question is `How many BMX bikes can be rented here?` The question is `How many BMX bikes can be rented here?`
*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set
*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bmx.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bmx.*)$
This tagrendering has labels This tagrendering has labels
@ -243,7 +253,8 @@ This tagrendering has labels
### rental-capacity-mtb ### rental-capacity-mtb
The question is `How many mountainbikes can be rented here?` The question is `How many mountainbikes can be rented here?`
*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set
*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*mtb.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*mtb.*)$
This tagrendering has labels This tagrendering has labels
@ -252,7 +263,8 @@ This tagrendering has labels
### rental-capacity-bicycle_pannier ### rental-capacity-bicycle_pannier
The question is `How many bicycle panniers can be rented here?` The question is `How many bicycle panniers can be rented here?`
*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set
*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bicycle_pannier.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bicycle_pannier.*)$
This tagrendering has labels This tagrendering has labels
@ -261,7 +273,8 @@ This tagrendering has labels
### rental-capacity-tandem_bicycle ### rental-capacity-tandem_bicycle
The question is `How many tandem can be rented here?` The question is `How many tandem can be rented here?`
*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set
*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*tandem_bicycle.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*tandem_bicycle.*)$
This tagrendering has labels This tagrendering has labels
@ -270,6 +283,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -279,16 +293,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -99,6 +99,7 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### bicycle_rental_type ### bicycle_rental_type
@ -117,7 +118,8 @@ This tagrendering is only visible in the popup if the following condition is met
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -127,7 +129,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -138,7 +141,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -148,7 +152,8 @@ This tagrendering has labels
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -177,7 +182,8 @@ The question is `Which methods of payment are accepted here?`
### bicycle-types ### bicycle-types
The question is `What kind of bicycles and accessories are rented here?` The question is `What kind of bicycles and accessories are rented here?`
*{rental} is rented here* is shown if `rental` is set
*{rental} is rented here* is shown if `rental` is set.
- *Normal city bikes can be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike' target='_blank'>city_bike</a> - *Normal city bikes can be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike' target='_blank'>city_bike</a>
- *Electrical bikes can be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike' target='_blank'>ebike</a> - *Electrical bikes can be rented here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:rental' target='_blank'>rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike' target='_blank'>ebike</a>
@ -195,7 +201,8 @@ This tagrendering has labels
### rental-capacity-city_bike ### rental-capacity-city_bike
The question is `How many city bikes can be rented here?` The question is `How many city bikes can be rented here?`
*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set
*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*city_bike.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*city_bike.*)$
This tagrendering has labels This tagrendering has labels
@ -204,7 +211,8 @@ This tagrendering has labels
### rental-capacity-ebike ### rental-capacity-ebike
The question is `How many electrical bikes can be rented here?` The question is `How many electrical bikes can be rented here?`
*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set
*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*ebike.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*ebike.*)$
This tagrendering has labels This tagrendering has labels
@ -213,7 +221,8 @@ This tagrendering has labels
### rental-capacity-kid_bike ### rental-capacity-kid_bike
The question is `How many bikes for children can be rented here?` The question is `How many bikes for children can be rented here?`
*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set
*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*kid_bike.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*kid_bike.*)$
This tagrendering has labels This tagrendering has labels
@ -222,7 +231,8 @@ This tagrendering has labels
### rental-capacity-bmx ### rental-capacity-bmx
The question is `How many BMX bikes can be rented here?` The question is `How many BMX bikes can be rented here?`
*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set
*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bmx.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bmx.*)$
This tagrendering has labels This tagrendering has labels
@ -231,7 +241,8 @@ This tagrendering has labels
### rental-capacity-mtb ### rental-capacity-mtb
The question is `How many mountainbikes can be rented here?` The question is `How many mountainbikes can be rented here?`
*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set
*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*mtb.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*mtb.*)$
This tagrendering has labels This tagrendering has labels
@ -240,7 +251,8 @@ This tagrendering has labels
### rental-capacity-bicycle_pannier ### rental-capacity-bicycle_pannier
The question is `How many bicycle panniers can be rented here?` The question is `How many bicycle panniers can be rented here?`
*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set
*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bicycle_pannier.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bicycle_pannier.*)$
This tagrendering has labels This tagrendering has labels
@ -249,7 +261,8 @@ This tagrendering has labels
### rental-capacity-tandem_bicycle ### rental-capacity-tandem_bicycle
The question is `How many tandem can be rented here?` The question is `How many tandem can be rented here?`
*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set
*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set.
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*tandem_bicycle.*)$ This tagrendering is only visible in the popup if the following condition is met: rental~^(.*tandem_bicycle.*)$
This tagrendering has labels This tagrendering has labels
@ -258,6 +271,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -267,16 +281,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -86,12 +86,14 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### bike_cafe-name ### bike_cafe-name
The question is `What is the name of this bike cafe?` The question is `What is the name of this bike cafe?`
*This bike cafe is called {name}* is shown if `name` is set
*This bike cafe is called {name}* is shown if `name` is set.
### bike_cafe-bike-pump ### bike_cafe-bike-pump
@ -117,7 +119,8 @@ The question is `Does this bike cafe repair bikes?`
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -127,7 +130,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -137,7 +141,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -148,13 +153,15 @@ This tagrendering has labels
### opening_hours ### opening_hours
The question is `When it this bike café opened?` The question is `When it this bike café opened?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -164,16 +171,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -13,15 +13,22 @@ A layer showing facilities where one can clean their bike
3. [Basic tags for this layer](#basic-tags-for-this-layer) 3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes) 4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings) 5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [Opening hours](#opening-hours)
- [images](#images) - [images](#images)
- [opening_hours_24_7](#opening_hours_24_7)
- [Opening hours](#opening-hours)
- [bike_cleaning-service_bicycle_cleaning_charge](#bike_cleaning-service_bicycle_cleaning_charge) - [bike_cleaning-service_bicycle_cleaning_charge](#bike_cleaning-service_bicycle_cleaning_charge)
- [bike_cleaning-charge](#bike_cleaning-charge) - [bike_cleaning-charge](#bike_cleaning-charge)
- [payment-options-split](#payment-options-split)
- [denominations-coins](#denominations-coins)
- [denominations-notes](#denominations-notes)
- [automated](#automated) - [automated](#automated)
- [self_service](#self_service) - [self_service](#self_service)
- [leftover-questions](#leftover-questions) - [leftover-questions](#leftover-questions)
- [move-button](#move-button) - [move-button](#move-button)
- [delete-button](#delete-button) - [delete-button](#delete-button)
- [lod](#lod) - [lod](#lod)
6. [Filters](#filters)
## Themes using this layer ## Themes using this layer
@ -50,8 +57,11 @@ Elements must match **any** of the following expressions:
| attribute | type | values which are supported by this layer | | attribute | type | values which are supported by this layer |
-----|-----|----- | -----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Acleaning%3Acharge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Acleaning%3Acharge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/payment:coins:denominations#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/payment%3Acoins%3Adenominations/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [payment:coins:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations) | Multiple choice | [0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [5 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/payment:notes:denominations#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/payment%3Anotes%3Adenominations/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [payment:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations) | Multiple choice | [5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR) [10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 CHF) [20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 CHF) [50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 CHF) [100 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 CHF) [200 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 CHF) [1000 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D1000 CHF) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/automated#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/automated/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [automated](https://wiki.openstreetmap.org/wiki/Key:automated) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automated%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:automated%3Dyes) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/automated#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/automated/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [automated](https://wiki.openstreetmap.org/wiki/Key:automated) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automated%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:automated%3Dyes) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/self_service#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/self_service/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [self_service](https://wiki.openstreetmap.org/wiki/Key:self_service) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/self_service#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/self_service/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [self_service](https://wiki.openstreetmap.org/wiki/Key:self_service) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dno) |
@ -60,8 +70,12 @@ Elements must match **any** of the following expressions:
| id | question | labels | freeform key | | id | question | labels | freeform key |
-----|-----|-----|----- | -----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ | | [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>2 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [bike_cleaning-service_bicycle_cleaning_charge](#bike_cleaning-service_bicycle_cleaning_charge) | How much does it cost to use the cleaning service?<br/>_Using the cleaning service costs {service:bicycle:cleaning:charge}_<br/>2 options | | *[service:bicycle:cleaning:charge](https://wiki.osm.org/wiki/Key:service:bicycle:cleaning:charge)* ([string](../SpecialInputElements.md#string)) | | [bike_cleaning-service_bicycle_cleaning_charge](#bike_cleaning-service_bicycle_cleaning_charge) | How much does it cost to use the cleaning service?<br/>_Using the cleaning service costs {service:bicycle:cleaning:charge}_<br/>2 options | | *[service:bicycle:cleaning:charge](https://wiki.osm.org/wiki/Key:service:bicycle:cleaning:charge)* ([string](../SpecialInputElements.md#string)) |
| [bike_cleaning-charge](#bike_cleaning-charge) | How much does it cost to use the cleaning service?<br/>_Using the cleaning service costs {charge}_<br/>2 options | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) | | [bike_cleaning-charge](#bike_cleaning-charge) | How much does it cost to use the cleaning service?<br/>_Using the cleaning service costs {charge}_<br/>2 options | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
| [payment-options-split](#payment-options-split) <br/> _(Original in [questions](./BuiltinQuestions.md#payment-options-split))_ | Which methods of payment are accepted here?<br/>7 options | | _Multiple choice only_ |
| [denominations-coins](#denominations-coins) <br/> _(Original in [questions](./BuiltinQuestions.md#denominations-coins))_ | What coins can you use to pay here?<br/>15 options | | _Multiple choice only_ |
| [denominations-notes](#denominations-notes) <br/> _(Original in [questions](./BuiltinQuestions.md#denominations-notes))_ | what notes can you use to pay here?<br/>13 options | | _Multiple choice only_ |
| [automated](#automated) | Is this bicycle cleaning service automated?<br/>2 options | | _Multiple choice only_ | | [automated](#automated) | Is this bicycle cleaning service automated?<br/>2 options | | _Multiple choice only_ |
| [self_service](#self_service) | Is this cleaning service self-service?<br/>2 options | | _Multiple choice only_ | | [self_service](#self_service) | Is this cleaning service self-service?<br/>2 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ | | [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
@ -72,12 +86,23 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### opening_hours_24_7
The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### bike_cleaning-service_bicycle_cleaning_charge ### bike_cleaning-service_bicycle_cleaning_charge
The question is `How much does it cost to use the cleaning service?` The question is `How much does it cost to use the cleaning service?`
*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set
*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set.
- *The cleaning service is free to use* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>no</a> - *The cleaning service is free to use* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dno' target='_blank'>no</a>
- *Free to use* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes' target='_blank'>yes</a> & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ - *Free to use* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:fee' target='_blank'>service:bicycle:cleaning:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning:fee%3Dyes' target='_blank'>yes</a> & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_
@ -87,19 +112,76 @@ This tagrendering is only visible in the popup if the following condition is met
### bike_cleaning-charge ### bike_cleaning-charge
The question is `How much does it cost to use the cleaning service?` The question is `How much does it cost to use the cleaning service?`
*Using the cleaning service costs {charge}* is shown if `charge` is set
*Using the cleaning service costs {charge}* is shown if `charge` is set.
- *This cleaning service is free to use* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a> - *This cleaning service is free to use* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
- *There is a fee to use this cleaning service* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> - *There is a fee to use this cleaning service* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_wash' target='_blank'>bicycle_wash</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_wash' target='_blank'>bicycle_wash</a>
### payment-options-split
The question is `Which methods of payment are accepted here?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/cash.svg'> *Cash is accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_. Unselecting this answer will add payment:cash=
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/payment_card.svg'> *Payment cards are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:cards' target='_blank'>payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cards%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_. Unselecting this answer will add payment:cards=
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/qrcode.svg'> *Payment by QR-code is possible here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:qr_code' target='_blank'>payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:qr_code%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/coins.svg'> *Coins are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/notes.svg'> *Bank notes are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/payment_card.svg'> *Debit cards are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:debit_cards' target='_blank'>payment:debit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:debit_cards%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:debit_cards' target='_blank'>payment:debit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:debit_cards%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/payment_card.svg'> *Credit cards are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:credit_cards' target='_blank'>payment:credit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:credit_cards%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:credit_cards' target='_blank'>payment:credit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:credit_cards%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
### denominations-coins
The question is `What coins can you use to pay here?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/1cent.svg'> *1 cent coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR' target='_blank'>0.01 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/2cent.svg'> *2 cent coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR' target='_blank'>0.02 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/5cent.svg'> *5 cent coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR' target='_blank'>0.05 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/10cent.svg'> *10 cent coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR' target='_blank'>0.10 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/20cent.svg'> *20 cent coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR' target='_blank'>0.20 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/50cent.svg'> *50 cent coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR' target='_blank'>0.50 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/1euro.svg'> *1 euro coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR' target='_blank'>1 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/2euro.svg'> *2 euro coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR' target='_blank'>2 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/5rp-2019-800px.png'> *5 centimes coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF' target='_blank'>0.05 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/10rp-2019-800px.png'> *10 centimes coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF' target='_blank'>0.10 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/20rp-2019-800px.png'> *20 centimes coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF' target='_blank'>0.20 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/50rp-2019-800px.png'> *½ franc coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF' target='_blank'>0.50 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/1fr-2019-800px.png'> *1 franc coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF' target='_blank'>1 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/2fr-2019-800px.png'> *2 francs coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF' target='_blank'>2 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/5fr-2019-800px.png'> *5 francs coins are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins:denominations' target='_blank'>payment:coins:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D5 CHF' target='_blank'>5 CHF</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:payment:coins' target='_blank'>payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:coins%3Dyes' target='_blank'>yes</a>
### denominations-notes
The question is `what notes can you use to pay here?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/5euro.svg'> *5 euro notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR' target='_blank'>5 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/10euro.svg'> *10 euro notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR' target='_blank'>10 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/20euro.svg'> *20 euro notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR' target='_blank'>20 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/50euro.svg'> *50 euro notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR' target='_blank'>50 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/100euro.svg'> *100 euro notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR' target='_blank'>100 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/200euro.svg'> *200 euro notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR' target='_blank'>200 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/500euro.svg'> *500 euro notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR' target='_blank'>500 EUR</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/10chf.svg'> *10 francs notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 CHF' target='_blank'>10 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/20chf.svg'> *20 francs notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 CHF' target='_blank'>20 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/50chf.svg'> *50 francs notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 CHF' target='_blank'>50 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/100chf.svg'> *100 francs notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 CHF' target='_blank'>100 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/200chf.svg'> *200 francs notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 CHF' target='_blank'>200 CHF</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/chf/1000chf.svg'> *1000 francs notes are accepted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes:denominations' target='_blank'>payment:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D1000 CHF' target='_blank'>1000 CHF</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:payment:notes' target='_blank'>payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:notes%3Dyes' target='_blank'>yes</a>
### automated ### automated
The question is `Is this bicycle cleaning service automated?` The question is `Is this bicycle cleaning service automated?`
- *This is a manual bike washing station* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:automated' target='_blank'>automated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automated%3Dno' target='_blank'>no</a> - *This is a manual bike washing station - a person still has to point the water hose towards the bicycle* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:automated' target='_blank'>automated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automated%3Dno' target='_blank'>no</a>
- *This is an automated bike wash* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:automated' target='_blank'>automated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automated%3Dyes' target='_blank'>yes</a> - *This is an automated bike wash. Your bicycle is placed in the device and everything happens automatically.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:automated' target='_blank'>automated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:automated%3Dyes' target='_blank'>yes</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_wash' target='_blank'>bicycle_wash</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_wash' target='_blank'>bicycle_wash</a>
@ -115,6 +197,7 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -124,20 +207,38 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels
`added_by_default` `added_by_default`
## Filters
| id | question | osmTags |
-----|-----|----- |
| open_now.0 | Now open | _isOpen=yes |
| id | question | osmTags |
-----|-----|----- |
| accepts_cash.0 | Accepts cash | payment:cash=yes |
| id | question | osmTags |
-----|-----|----- |
| accepts_cards.0 | Accepts payment cards | payment:cards=yes |
This document is autogenerated from [assets/layers/bike_cleaning/bike_cleaning.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_cleaning/bike_cleaning.json) This document is autogenerated from [assets/layers/bike_cleaning/bike_cleaning.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_cleaning/bike_cleaning.json)

View file

@ -64,7 +64,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| attribute | type | values which are supported by this layer | | attribute | type | values which are supported by this layer |
-----|-----|----- | -----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bicycle_parking#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bicycle_parking/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) | [string](../SpecialInputElements.md#string) | [stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [safe_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dsafe_loops) [wall_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops) [handlebar_holder](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder) [rack](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack) [two_tier](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier) [bollard](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard) [floor](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor) [lockers](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlockers) [lean_and_stick](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlean_and_stick) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bicycle_parking#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bicycle_parking/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) | [string](../SpecialInputElements.md#string) | [stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [safe_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dsafe_loops) [wall_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops) [handlebar_holder](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder) [rack](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack) [two_tier](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier) [bollard](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard) [floor](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor) [lockers](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlockers) [lean_and_stick](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlean_and_stick) [anchors](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Danchors) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/location#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/location/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [location](https://wiki.openstreetmap.org/wiki/Key:location) | Multiple choice | [underground](https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground) [surface](https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/location#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/location/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [location](https://wiki.openstreetmap.org/wiki/Key:location) | Multiple choice | [underground](https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground) [surface](https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) |
@ -84,7 +84,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| id | question | labels | freeform key | | id | question | labels | freeform key |
-----|-----|-----|----- | -----|-----|-----|----- |
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ | | [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
| [Bicycle parking type](#Bicycle parking type) | What is the type of this bicycle parking?<br/>_This is a bicycle parking of the type: {bicycle_parking}_<br/>11 options | | *[bicycle_parking](https://wiki.osm.org/wiki/Key:bicycle_parking)* ([string](../SpecialInputElements.md#string)) | | [Bicycle parking type](#Bicycle parking type) | What is the type of this bicycle parking?<br/>_This is a bicycle parking of the type: {bicycle_parking}_<br/>12 options | | *[bicycle_parking](https://wiki.osm.org/wiki/Key:bicycle_parking)* ([string](../SpecialInputElements.md#string)) |
| [location](#location) | What is the relative location of this bicycle parking?<br/>4 options | | _Multiple choice only_ | | [location](#location) | What is the relative location of this bicycle parking?<br/>4 options | | _Multiple choice only_ |
| [covered_and_building](#covered_and_building) | Is this parking covered?<br/>6 options | | _Multiple choice only_ | | [covered_and_building](#covered_and_building) | Is this parking covered?<br/>6 options | | _Multiple choice only_ |
| [Capacity](#Capacity) | How many bicycles fit in this bicycle parking?<br/>_Place for {capacity} bikes_ | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([nat](../SpecialInputElements.md#nat)) | | [Capacity](#Capacity) | How many bicycles fit in this bicycle parking?<br/>_Place for {capacity} bikes_ | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([nat](../SpecialInputElements.md#nat)) |
@ -107,12 +107,14 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### Bicycle parking type ### Bicycle parking type
The question is `What is the type of this bicycle parking?` The question is `What is the type of this bicycle parking?`
*This is a bicycle parking of the type: {bicycle_parking}* is shown if `bicycle_parking` is set
*This is a bicycle parking of the type: {bicycle_parking}* is shown if `bicycle_parking` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bike_parking/staple.svg'> *Stands* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands' target='_blank'>stands</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bike_parking/staple.svg'> *Stands* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands' target='_blank'>stands</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bike_parking/safe_loops.svg'> *Rack with side loops* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dsafe_loops' target='_blank'>safe_loops</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bike_parking/safe_loops.svg'> *Rack with side loops* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dsafe_loops' target='_blank'>safe_loops</a>
@ -125,6 +127,7 @@ The question is `What is the type of this bicycle parking?`
- *An area on the floor which is marked for bicycle parking* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor' target='_blank'>floor</a> - *An area on the floor which is marked for bicycle parking* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor' target='_blank'>floor</a>
- *A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlockers' target='_blank'>lockers</a> - *A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlockers' target='_blank'>lockers</a>
- *A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlean_and_stick' target='_blank'>lean_and_stick</a> - *A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlean_and_stick' target='_blank'>lean_and_stick</a>
- *An anchor - a metal loop wide enough for a bike lock attached to a wall, the floor or a boulder.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_parking' target='_blank'>bicycle_parking</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Danchors' target='_blank'>anchors</a>
### location ### location
@ -149,12 +152,14 @@ The question is `Is this parking covered?`
### Capacity ### Capacity
The question is `How many bicycles fit in this bicycle parking?` The question is `How many bicycles fit in this bicycle parking?`
*Place for {capacity} bikes* is shown if `capacity` is set
*Place for {capacity} bikes* is shown if `capacity` is set.
### Access ### Access
The question is `Who can use this bicycle parking?` The question is `Who can use this bicycle parking?`
*{access}* is shown if `access` is set
*{access}* is shown if `access` is set.
- *Publicly accessible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a> - *Publicly accessible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
- *Access is primarily for visitors to a business* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a> - *Access is primarily for visitors to a business* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a>
@ -171,14 +176,16 @@ The question is `Are these bicycle parkings free to use?`
### charge ### charge
The question is `How much does it cost to park your bike here?` The question is `How much does it cost to park your bike here?`
*Parking your bike costs {charge}* is shown if `charge` is set
*Parking your bike costs {charge}* is shown if `charge` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
### opening_hours_24_7_default ### opening_hours_24_7_default
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -186,12 +193,14 @@ The question is `What are the opening hours of {title()}?`
### operator ### operator
The question is `Who maintains this bicycle parking?` The question is `Who maintains this bicycle parking?`
*This bicycle parking is maintained by {operator}* is shown if `operator` is set
*This bicycle parking is maintained by {operator}* is shown if `operator` is set.
### operator_phone ### operator_phone
The question is `What is the phone number of the operator of this bicycle parking?` The question is `What is the phone number of the operator of this bicycle parking?`
*<a href='tel:{operator:phone}'>{operator:phone}</a>* is shown if `operator:phone` is set
*<a href='tel:{operator:phone}'>{operator:phone}</a>* is shown if `operator:phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *<a href='tel:{phone}'>{phone}</a>* is shown if with phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *<a href='tel:{phone}'>{phone}</a>* is shown if with phone~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *<a href='tel:{contact:phone}'>{contact:phone}</a>* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *<a href='tel:{contact:phone}'>{contact:phone}</a>* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -199,7 +208,8 @@ The question is `What is the phone number of the operator of this bicycle parkin
### operator_website ### operator_website
The question is `What is the website number of the operator of this bicycle parking?` The question is `What is the website number of the operator of this bicycle parking?`
*<a href='{operator:website}'>{operator:website}</a>* is shown if `operator:website` is set
*<a href='{operator:website}'>{operator:website}</a>* is shown if `operator:website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{website}'>{website}</a>* is shown if with website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{website}'>{website}</a>* is shown if with website~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -207,7 +217,8 @@ The question is `What is the website number of the operator of this bicycle park
### operator_email ### operator_email
The question is `What is the email address of the operator of this bicycle parking?` The question is `What is the email address of the operator of this bicycle parking?`
*<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if `operator:email` is set
*<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if `operator:email` is set.
### Cargo bike spaces? ### Cargo bike spaces?
@ -220,7 +231,8 @@ The question is `Does this bicycle parking have spots for cargo bikes?`
### Cargo bike capacity? ### Cargo bike capacity?
The question is `How many cargo bicycles fit in this bicycle parking?` The question is `How many cargo bicycles fit in this bicycle parking?`
*This parking fits {capacity:cargo_bike} cargo bikes* is shown if `capacity:cargo_bike` is set
*This parking fits {capacity:cargo_bike} cargo bikes* is shown if `capacity:cargo_bike` is set.
- *There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno' target='_blank'>no</a> - *There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cargo_bike' target='_blank'>cargo_bike</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno' target='_blank'>no</a>
@ -229,11 +241,13 @@ This tagrendering is only visible in the popup if the following condition is met
### maxstay ### maxstay
The question is `What is the maximum allowed parking duration?` The question is `What is the maximum allowed parking duration?`
*A bike can be parked here for at most {canonical(maxstay)}* is shown if `maxstay` is set
*A bike can be parked here for at most {canonical(maxstay)}* is shown if `maxstay` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -243,16 +257,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -111,6 +111,7 @@ With this email&COMMA I'd like to inform you that the bicycle pump located at ht
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### bike_repair_station-available-services ### bike_repair_station-available-services
@ -133,7 +134,8 @@ This tagrendering is only visible in the popup if the following condition is met
### opening_hours_24_7 ### opening_hours_24_7
The question is `When is this bicycle repair point open?` The question is `When is this bicycle repair point open?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -151,7 +153,8 @@ The question is `Who is allowed to use this repair station?`
### bike_repair_station-operator ### bike_repair_station-operator
The question is `Who maintains this cycle pump?` The question is `Who maintains this cycle pump?`
*Maintained by {operator}* is shown if `operator` is set
*Maintained by {operator}* is shown if `operator` is set.
This tagrendering has labels This tagrendering has labels
`operator-info` `operator-info`
@ -159,7 +162,8 @@ This tagrendering has labels
### bike_repair_station-email ### bike_repair_station-email
The question is `What is the email address of the maintainer?` The question is `What is the email address of the maintainer?`
*<a href='mailto:{email}'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}'>{email}</a>* is shown if `email` is set.
This tagrendering has labels This tagrendering has labels
`operator-info` `operator-info`
@ -167,7 +171,8 @@ This tagrendering has labels
### bike_repair_station-phone ### bike_repair_station-phone
The question is `What is the phone number of the maintainer?` The question is `What is the phone number of the maintainer?`
*<a href='tel:{phone}'>{phone}</a>* is shown if `phone` is set
*<a href='tel:{phone}'>{phone}</a>* is shown if `phone` is set.
This tagrendering has labels This tagrendering has labels
`operator-info` `operator-info`
@ -193,6 +198,7 @@ This tagrendering is only visible in the popup if the following condition is met
### send_email_about_broken_pump ### send_email_about_broken_pump
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{send_email(&LBRACEemail&RBRACE,Broken bicycle pump,Hello&COMMA *{send_email(&LBRACEemail&RBRACE,Broken bicycle pump,Hello&COMMA
With this email&COMMA I'd like to inform you that the bicycle pump located at https://mapcomplete.org/cyclofix?lat=&LBRACE_lat&RBRACE&lon=&LBRACE_lon&RBRACE&z=18#&LBRACEid&RBRACE is broken. With this email&COMMA I'd like to inform you that the bicycle pump located at https://mapcomplete.org/cyclofix?lat=&LBRACE_lat&RBRACE&lon=&LBRACE_lon&RBRACE&z=18#&LBRACEid&RBRACE is broken.
@ -204,7 +210,8 @@ This tagrendering is only visible in the popup if the following condition is met
### bike_repair_station-valves ### bike_repair_station-valves
The question is `What valves are supported?` The question is `What valves are supported?`
*This pump supports the following valves: {valves}* is shown if `valves` is set
*This pump supports the following valves: {valves}* is shown if `valves` is set.
- *Sclaverand/Presta (narrow-width bike tires)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand' target='_blank'>sclaverand</a> - *Sclaverand/Presta (narrow-width bike tires)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand' target='_blank'>sclaverand</a>
- *Dunlop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop' target='_blank'>dunlop</a> - *Dunlop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:valves' target='_blank'>valves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop' target='_blank'>dunlop</a>
@ -232,6 +239,7 @@ This tagrendering is only visible in the popup if the following condition is met
### repeated ### repeated
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {repeat_on}.* *Multiple, identical objects can be found on floors {repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+
@ -241,7 +249,8 @@ This tagrendering has labels
### single_level ### single_level
The question is `On what level is this feature located?` The question is `On what level is this feature located?`
*Located on the {level}th floor* is shown if `level` is set
*Located on the {level}th floor* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -255,6 +264,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -264,16 +274,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

File diff suppressed because it is too large Load diff

View file

@ -73,17 +73,20 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### description ### description
The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.`
*{description}* is shown if `description` is set
*{description}* is shown if `description` is set.
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -93,7 +96,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -104,7 +108,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -114,13 +119,15 @@ This tagrendering has labels
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -130,6 +137,7 @@ This tagrendering has labels
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -63,23 +63,27 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### binocular-charge ### binocular-charge
The question is `How much does one have to pay to use these binoculars?` The question is `How much does one have to pay to use these binoculars?`
*Using these binoculars costs {charge}* is shown if `charge` is set
*Using these binoculars costs {charge}* is shown if `charge` is set.
- *Free to use* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a> & charge= - *Free to use* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a> & charge=
### binocular-direction ### binocular-direction
The question is `When looking through this binocular, in what direction does one look?` The question is `When looking through this binocular, in what direction does one look?`
*Looks towards {direction}°* is shown if `direction` is set
*Looks towards {direction}°* is shown if `direction` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -89,16 +93,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -67,6 +67,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### bird-hide-shelter-or-wall ### bird-hide-shelter-or-wall
@ -90,7 +91,8 @@ The question is `Is this bird hide accessible to wheelchair users?`
### birdhide-operator ### birdhide-operator
The question is `Who operates this birdhide?` The question is `Who operates this birdhide?`
*Operated by {operator}* is shown if `operator` is set
*Operated by {operator}* is shown if `operator` is set.
- *Operated by Natuurpunt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a> - *Operated by Natuurpunt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt' target='_blank'>Natuurpunt</a>
- *Operated by the Agency for Nature and Forests* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap Natuur en Bos</a> - *Operated by the Agency for Nature and Forests* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos' target='_blank'>Agentschap Natuur en Bos</a>
@ -98,6 +100,7 @@ The question is `Who operates this birdhide?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -107,16 +110,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -75,29 +75,34 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### name ### name
The question is `What is the name of this brothel?` The question is `What is the name of this brothel?`
*This brothel is named <b>{name}</b>* is shown if `name` is set
*This brothel is named <b>{name}</b>* is shown if `name` is set.
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -107,7 +112,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -118,7 +124,8 @@ This tagrendering has labels
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -128,6 +135,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -137,16 +145,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -53,7 +53,7 @@ Elements must match the expression **building~.+**
-----|-----|-----|----- | -----|-----|-----|----- |
| [architecture](#architecture) | What is the architectural style of this building?<br/>_{building:architecture}_<br/>34 options | | *[building:architecture](https://wiki.osm.org/wiki/Key:building:architecture)* ([string](../SpecialInputElements.md#string)) | | [architecture](#architecture) | What is the architectural style of this building?<br/>_{building:architecture}_<br/>34 options | | *[building:architecture](https://wiki.osm.org/wiki/Key:building:architecture)* ([string](../SpecialInputElements.md#string)) |
| [construction_date](#construction_date) | When was this built?<br/>_Built in <b>{construction_date}</b>_ | | *[construction_date](https://wiki.osm.org/wiki/Key:construction_date)* ([date](../SpecialInputElements.md#date)) | | [construction_date](#construction_date) | When was this built?<br/>_Built in <b>{construction_date}</b>_ | | *[construction_date](https://wiki.osm.org/wiki/Key:construction_date)* ([date](../SpecialInputElements.md#date)) |
| [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit)}_ | address | _Multiple choice only_ | | [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit,)}_ | address | _Multiple choice only_ |
| [header](#header) <br/> _(Original in [address](./address.md#header))_ | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ | | [header](#header) <br/> _(Original in [address](./address.md#header))_ | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ |
| [housenumber](#housenumber) <br/> _(Original in [address](./address.md#housenumber))_ | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) | | [housenumber](#housenumber) <br/> _(Original in [address](./address.md#housenumber))_ | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) |
| [street](#street) <br/> _(Original in [address](./address.md#street))_ | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) | | [street](#street) <br/> _(Original in [address](./address.md#street))_ | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) |
@ -65,7 +65,8 @@ Elements must match the expression **building~.+**
### architecture ### architecture
The question is `What is the architectural style of this building?` The question is `What is the architectural style of this building?`
*{building:architecture}* is shown if `building:architecture` is set
*{building:architecture}* is shown if `building:architecture` is set.
- *Islamic architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dislamic' target='_blank'>islamic</a> - *Islamic architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dislamic' target='_blank'>islamic</a>
- *Mamluk architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmamluk' target='_blank'>mamluk</a> - *Mamluk architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmamluk' target='_blank'>mamluk</a>
@ -105,12 +106,14 @@ The question is `What is the architectural style of this building?`
### construction_date ### construction_date
The question is `When was this built?` The question is `When was this built?`
*Built in <b>{construction_date}</b>* is shown if `construction_date` is set
*Built in <b>{construction_date}</b>* is shown if `construction_date` is set.
### address_joined ### address_joined
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{group(header,street;housenumber;unit)}*
*{group(header,street;housenumber;unit,)}*
This tagrendering has labels This tagrendering has labels
`address` `address`
@ -118,6 +121,7 @@ This tagrendering has labels
### header ### header
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{addr:street} <b>{addr:housenumber}</b> {addr:unit}* *{addr:street} <b>{addr:housenumber}</b> {addr:unit}*
- *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber=
@ -129,7 +133,8 @@ This tagrendering has labels
### housenumber ### housenumber
The question is `What is the number of this house?` The question is `What is the number of this house?`
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set.
- *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a> - *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
@ -140,7 +145,8 @@ This tagrendering has labels
### street ### street
The question is `What street is this address located in?` The question is `What street is this address located in?`
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set.
This tagrendering has labels This tagrendering has labels
`address` `address`
@ -149,7 +155,8 @@ This tagrendering has labels
### unit ### unit
The question is `What is the unit number or letter?` The question is `What is the unit number or letter?`
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set.
- *No unit number* is shown if with addr:unit= - *No unit number* is shown if with addr:unit=
@ -160,6 +167,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -169,11 +177,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -57,7 +57,7 @@ Elements must match **all** of the following expressions:
-----|-----|-----|----- | -----|-----|-----|----- |
| [architecture](#architecture) | What is the architectural style of this building?<br/>_{building:architecture}_<br/>34 options | | *[building:architecture](https://wiki.osm.org/wiki/Key:building:architecture)* ([string](../SpecialInputElements.md#string)) | | [architecture](#architecture) | What is the architectural style of this building?<br/>_{building:architecture}_<br/>34 options | | *[building:architecture](https://wiki.osm.org/wiki/Key:building:architecture)* ([string](../SpecialInputElements.md#string)) |
| [construction_date](#construction_date) | When was this built?<br/>_Built in <b>{construction_date}</b>_ | | *[construction_date](https://wiki.osm.org/wiki/Key:construction_date)* ([date](../SpecialInputElements.md#date)) | | [construction_date](#construction_date) | When was this built?<br/>_Built in <b>{construction_date}</b>_ | | *[construction_date](https://wiki.osm.org/wiki/Key:construction_date)* ([date](../SpecialInputElements.md#date)) |
| [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit)}_ | address | _Multiple choice only_ | | [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit,)}_ | address | _Multiple choice only_ |
| [header](#header) <br/> _(Original in [address](./address.md#header))_ | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ | | [header](#header) <br/> _(Original in [address](./address.md#header))_ | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ |
| [housenumber](#housenumber) <br/> _(Original in [address](./address.md#housenumber))_ | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) | | [housenumber](#housenumber) <br/> _(Original in [address](./address.md#housenumber))_ | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) |
| [street](#street) <br/> _(Original in [address](./address.md#street))_ | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) | | [street](#street) <br/> _(Original in [address](./address.md#street))_ | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) |
@ -69,7 +69,8 @@ Elements must match **all** of the following expressions:
### architecture ### architecture
The question is `What is the architectural style of this building?` The question is `What is the architectural style of this building?`
*{building:architecture}* is shown if `building:architecture` is set
*{building:architecture}* is shown if `building:architecture` is set.
- *Islamic architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dislamic' target='_blank'>islamic</a> - *Islamic architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dislamic' target='_blank'>islamic</a>
- *Mamluk architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmamluk' target='_blank'>mamluk</a> - *Mamluk architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building:architecture' target='_blank'>building:architecture</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmamluk' target='_blank'>mamluk</a>
@ -109,12 +110,14 @@ The question is `What is the architectural style of this building?`
### construction_date ### construction_date
The question is `When was this built?` The question is `When was this built?`
*Built in <b>{construction_date}</b>* is shown if `construction_date` is set
*Built in <b>{construction_date}</b>* is shown if `construction_date` is set.
### address_joined ### address_joined
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{group(header,street;housenumber;unit)}*
*{group(header,street;housenumber;unit,)}*
This tagrendering has labels This tagrendering has labels
`address` `address`
@ -122,6 +125,7 @@ This tagrendering has labels
### header ### header
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{addr:street} <b>{addr:housenumber}</b> {addr:unit}* *{addr:street} <b>{addr:housenumber}</b> {addr:unit}*
- *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber=
@ -133,7 +137,8 @@ This tagrendering has labels
### housenumber ### housenumber
The question is `What is the number of this house?` The question is `What is the number of this house?`
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set.
- *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a> - *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
@ -144,7 +149,8 @@ This tagrendering has labels
### street ### street
The question is `What street is this address located in?` The question is `What street is this address located in?`
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set.
This tagrendering has labels This tagrendering has labels
`address` `address`
@ -153,7 +159,8 @@ This tagrendering has labels
### unit ### unit
The question is `What is the unit number or letter?` The question is `What is the unit number or letter?`
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set.
- *No unit number* is shown if with addr:unit= - *No unit number* is shown if with addr:unit=
@ -164,6 +171,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -173,11 +181,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

File diff suppressed because it is too large Load diff

View file

@ -24,7 +24,7 @@ Campsites
- [charge_person_day](#charge_person_day) - [charge_person_day](#charge_person_day)
- [charge_day](#charge_day) - [charge_day](#charge_day)
- [caravansites-toilets](#caravansites-toilets) - [caravansites-toilets](#caravansites-toilets)
- [toilets-wheelchair](#toilets-wheelchair) - [toiletatamenitytoiletswheelchair](#toiletatamenitytoiletswheelchair)
- [questions](#questions) - [questions](#questions)
- [mastodon](#mastodon) - [mastodon](#mastodon)
- [lod](#lod) - [lod](#lod)
@ -64,7 +64,6 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/charge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [currency](../SpecialInputElements.md#currency) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Awheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:wheelchair](https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno) [designated](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/contact:mastodon#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/contact%3Amastodon/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [contact:mastodon](https://wiki.openstreetmap.org/wiki/Key:contact:mastodon) | [fediverse](../SpecialInputElements.md#fediverse) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/contact:mastodon#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/contact%3Amastodon/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [contact:mastodon](https://wiki.openstreetmap.org/wiki/Key:contact:mastodon) | [fediverse](../SpecialInputElements.md#fediverse) | |
## Featureview elements and TagRenderings ## Featureview elements and TagRenderings
@ -82,7 +81,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| [charge_person_day](#charge_person_day) | What is the charge per person per day?<br/>_Charge per person per day: {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) | | [charge_person_day](#charge_person_day) | What is the charge per person per day?<br/>_Charge per person per day: {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
| [charge_day](#charge_day) | What is the charge per day?<br/>_Charge per day: {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) | | [charge_day](#charge_day) | What is the charge per day?<br/>_Charge per day: {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
| [caravansites-toilets](#caravansites-toilets) <br/> _(Original in [caravansites](./caravansites.md#caravansites-toilets))_ | Does this place have toilets?<br/>2 options | | _Multiple choice only_ | | [caravansites-toilets](#caravansites-toilets) <br/> _(Original in [caravansites](./caravansites.md#caravansites-toilets))_ | Does this place have toilets?<br/>2 options | | _Multiple choice only_ |
| [toilets-wheelchair](#toilets-wheelchair) <br/> _(Original in [toilet_at_amenity](./toilet_at_amenity.md#toilets-wheelchair))_ | Is there a dedicated toilet for wheelchair users?<br/>3 options | wheelchair, hidden | _Multiple choice only_ | | [toiletatamenitytoiletswheelchair](#toiletatamenitytoiletswheelchair) | _toilet_at_amenity.toilets-wheelchair_ | | _Multiple choice only_ |
| [questions](#questions) <br/> _(Original in [questions](./BuiltinQuestions.md#questions))_ | _{questions()}_ | | _Multiple choice only_ | | [questions](#questions) <br/> _(Original in [questions](./BuiltinQuestions.md#questions))_ | _{questions()}_ | | _Multiple choice only_ |
| [mastodon](#mastodon) <br/> _(Original in [questions](./BuiltinQuestions.md#mastodon))_ | What is the Mastodon-handle of ?<br/>_{fediverse_link(contact:mastodon)}_ | | *[contact:mastodon](https://wiki.osm.org/wiki/Key:contact:mastodon)* ([fediverse](../SpecialInputElements.md#fediverse)) | | [mastodon](#mastodon) <br/> _(Original in [questions](./BuiltinQuestions.md#mastodon))_ | What is the Mastodon-handle of ?<br/>_{fediverse_link(contact:mastodon)}_ | | *[contact:mastodon](https://wiki.osm.org/wiki/Key:contact:mastodon)* ([fediverse](../SpecialInputElements.md#fediverse)) |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ | | [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
@ -90,6 +89,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### group_only ### group_only
@ -102,12 +102,14 @@ The question is `Is this campsite exclusively for groups?`
### name ### name
The question is `What is the name of this campsite?` The question is `What is the name of this campsite?`
*The name of this campsite is {name}* is shown if `name` is set
*The name of this campsite is {name}* is shown if `name` is set.
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -117,7 +119,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -128,7 +131,8 @@ This tagrendering has labels
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -138,7 +142,8 @@ This tagrendering has labels
### capacity_persons ### capacity_persons
The question is `How many people can stay here?` The question is `How many people can stay here?`
*{capacity:persons} people can stay here* is shown if `capacity:persons` is set
*{capacity:persons} people can stay here* is shown if `capacity:persons` is set.
### fee ### fee
@ -150,12 +155,14 @@ The question is `Is there a fee?`
### charge_person_day ### charge_person_day
The question is `What is the charge per person per day?` The question is `What is the charge per person per day?`
*Charge per person per day: {charge}* is shown if `charge` is set
*Charge per person per day: {charge}* is shown if `charge` is set.
### charge_day ### charge_day
The question is `What is the charge per day?` The question is `What is the charge per day?`
*Charge per day: {charge}* is shown if `charge` is set
*Charge per day: {charge}* is shown if `charge` is set.
### caravansites-toilets ### caravansites-toilets
@ -164,31 +171,28 @@ The question is `Does this place have toilets?`
- *This place has toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> - *This place has toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
- *This place does not have toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a> - *This place does not have toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
### toilets-wheelchair ### toiletatamenitytoiletswheelchair
The question is `Is there a dedicated toilet for wheelchair users?` _This tagrendering has no question and is thus read-only_
- *There is a dedicated toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes' target='_blank'>yes</a> *toilet_at_amenity.toilets-wheelchair*
- *No wheelchair access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno' target='_blank'>no</a>
- *There is only a dedicated toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated' target='_blank'>designated</a>
This tagrendering has labels
`wheelchair`
`hidden`
### questions ### questions
Show the questions block at this location Show the questions block at this location
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions()}* *{questions()}*
### mastodon ### mastodon
Shows and asks for the mastodon handle Shows and asks for the mastodon handle
The question is `What is the Mastodon-handle of {title()}?` The question is `What is the Mastodon-handle of {title()}?`
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set.
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -71,19 +71,22 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### name ### name
The question is `What is the name of this car rental?` The question is `What is the name of this car rental?`
*This car rental is called {name}* is shown if `name` is set
*This car rental is called {name}* is shown if `name` is set.
- *This car rental has no name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a> - *This car rental has no name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -93,7 +96,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -104,7 +108,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -114,13 +119,15 @@ This tagrendering has labels
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -130,11 +137,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -92,12 +92,14 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### caravansites-name ### caravansites-name
The question is `What is this place called?` The question is `What is this place called?`
*This place is called {name}* is shown if `name` is set
*This place is called {name}* is shown if `name` is set.
### caravansites-fee ### caravansites-fee
@ -109,7 +111,8 @@ The question is `Does this place charge a fee?`
### caravansites-charge ### caravansites-charge
The question is `How much does this place charge?` The question is `How much does this place charge?`
*This place charges {charge}* is shown if `charge` is set
*This place charges {charge}* is shown if `charge` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
@ -123,7 +126,8 @@ The question is `Does this place have a sanitary dump station?`
### caravansites-capacity ### caravansites-capacity
The question is `How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)` The question is `How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)`
*{capacity} campers can use this place at the same time* is shown if `capacity` is set
*{capacity} campers can use this place at the same time* is shown if `capacity` is set.
### caravansites-internet ### caravansites-internet
@ -152,7 +156,8 @@ The question is `Does this place have toilets?`
### caravansites-website ### caravansites-website
The question is `Does this place have a website?` The question is `Does this place have a website?`
*Official website: <a href='{website}'>{website}</a>* is shown if `website` is set
*Official website: <a href='{website}'>{website}</a>* is shown if `website` is set.
### caravansites-long-term ### caravansites-long-term
@ -165,26 +170,31 @@ The question is `Does this place offer spots for long term rental?`
### caravansites-description ### caravansites-description
The question is `Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews)` The question is `Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews)`
*More details about this place: {description}* is shown if `description` is set
*More details about this place: {description}* is shown if `description` is set.
### questions ### questions
Show the questions block at this location Show the questions block at this location
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions()}* *{questions()}*
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -318,17 +318,20 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### ref ### ref
The question is `What is the reference number of this charge point?` The question is `What is the reference number of this charge point?`
*The reference of this charge point is {ref}* is shown if `ref` is set
*The reference of this charge point is {ref}* is shown if `ref` is set.
### capacity ### capacity
The question is `How much vehicles can be charged here at the same time?` The question is `How much vehicles can be charged here at the same time?`
*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set
*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set.
### Available_charging_stations (generated) ### Available_charging_stations (generated)
@ -380,7 +383,8 @@ The question is `Which charging connections are available here?`
### plugs-amount-socket:schuko ### plugs-amount-socket:schuko
The question is `How much plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) are available here?` The question is `How much plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) are available here?`
*There are <b class='text-xl'>{socket:schuko}</b> plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set
*There are <b class='text-xl'>{socket:schuko}</b> plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0 This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
This tagrendering has labels This tagrendering has labels
@ -389,7 +393,8 @@ This tagrendering has labels
### plugs-amount-socket:typee ### plugs-amount-socket:typee
The question is `How much plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) are available here?` The question is `How much plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) are available here?`
*There are <b class='text-xl'>{socket:typee}</b> plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set
*There are <b class='text-xl'>{socket:typee}</b> plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0 This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
This tagrendering has labels This tagrendering has labels
@ -398,7 +403,8 @@ This tagrendering has labels
### plugs-amount-socket:chademo ### plugs-amount-socket:chademo
The question is `How much plugs of type <b>Chademo</b> are available here?` The question is `How much plugs of type <b>Chademo</b> are available here?`
*There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here* is shown if `socket:chademo` is set
*There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here* is shown if `socket:chademo` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0 This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
This tagrendering has labels This tagrendering has labels
@ -407,7 +413,8 @@ This tagrendering has labels
### plugs-amount-socket:type1_cable ### plugs-amount-socket:type1_cable
The question is `How much plugs of type <b>Type 1 with cable</b> (J1772) are available here?` The question is `How much plugs of type <b>Type 1 with cable</b> (J1772) are available here?`
*There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here* is shown if `socket:type1_cable` is set
*There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here* is shown if `socket:type1_cable` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
This tagrendering has labels This tagrendering has labels
@ -416,7 +423,8 @@ This tagrendering has labels
### plugs-amount-socket:type1 ### plugs-amount-socket:type1
The question is `How much plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) are available here?` The question is `How much plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) are available here?`
*There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here* is shown if `socket:type1` is set
*There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here* is shown if `socket:type1` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
This tagrendering has labels This tagrendering has labels
@ -425,7 +433,8 @@ This tagrendering has labels
### plugs-amount-socket:type1_combo ### plugs-amount-socket:type1_combo
The question is `How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are available here?` The question is `How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are available here?`
*There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set
*There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
This tagrendering has labels This tagrendering has labels
@ -434,7 +443,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_supercharger ### plugs-amount-socket:tesla_supercharger
The question is `How much plugs of type <b>Tesla Supercharger</b> are available here?` The question is `How much plugs of type <b>Tesla Supercharger</b> are available here?`
*There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here* is shown if `socket:tesla_supercharger` is set
*There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here* is shown if `socket:tesla_supercharger` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
This tagrendering has labels This tagrendering has labels
@ -443,7 +453,8 @@ This tagrendering has labels
### plugs-amount-socket:type2 ### plugs-amount-socket:type2
The question is `How much plugs of type <b>Type 2</b> (mennekes) are available here?` The question is `How much plugs of type <b>Type 2</b> (mennekes) are available here?`
*There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here* is shown if `socket:type2` is set
*There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here* is shown if `socket:type2` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
This tagrendering has labels This tagrendering has labels
@ -452,7 +463,8 @@ This tagrendering has labels
### plugs-amount-socket:type2_combo ### plugs-amount-socket:type2_combo
The question is `How much plugs of type <b>Type 2 CCS</b> (mennekes) are available here?` The question is `How much plugs of type <b>Type 2 CCS</b> (mennekes) are available here?`
*There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here* is shown if `socket:type2_combo` is set
*There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here* is shown if `socket:type2_combo` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
This tagrendering has labels This tagrendering has labels
@ -461,7 +473,8 @@ This tagrendering has labels
### plugs-amount-socket:type2_cable ### plugs-amount-socket:type2_cable
The question is `How much plugs of type <b>Type 2 with cable</b> (mennekes) are available here?` The question is `How much plugs of type <b>Type 2 with cable</b> (mennekes) are available here?`
*There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here* is shown if `socket:type2_cable` is set
*There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here* is shown if `socket:type2_cable` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
This tagrendering has labels This tagrendering has labels
@ -470,7 +483,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_supercharger_ccs ### plugs-amount-socket:tesla_supercharger_ccs
The question is `How much plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) are available here?` The question is `How much plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) are available here?`
*There are <b class='text-xl'>{socket:tesla_supercharger_ccs}</b> plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set
*There are <b class='text-xl'>{socket:tesla_supercharger_ccs}</b> plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
This tagrendering has labels This tagrendering has labels
@ -479,7 +493,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_destination_us ### plugs-amount-socket:tesla_destination_us
The question is `How much plugs of type <b>Tesla Supercharger (destination)</b> are available here?` The question is `How much plugs of type <b>Tesla Supercharger (destination)</b> are available here?`
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here* is shown if `socket:tesla_destination` is set
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here* is shown if `socket:tesla_destination` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
This tagrendering has labels This tagrendering has labels
@ -488,7 +503,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_destination ### plugs-amount-socket:tesla_destination
The question is `How much plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) are available here?` The question is `How much plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) are available here?`
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
This tagrendering has labels This tagrendering has labels
@ -497,7 +513,8 @@ This tagrendering has labels
### plugs-amount-socket:USB-A ### plugs-amount-socket:USB-A
The question is `How much plugs of type <b>USB</b> to charge phones and small electronics are available here?` The question is `How much plugs of type <b>USB</b> to charge phones and small electronics are available here?`
*There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here* is shown if `socket:USB-A` is set
*There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here* is shown if `socket:USB-A` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0 This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
This tagrendering has labels This tagrendering has labels
@ -506,7 +523,8 @@ This tagrendering has labels
### plugs-amount-socket:bosch_3pin ### plugs-amount-socket:bosch_3pin
The question is `How much plugs of type <b>Bosch Active Connect with 3 pins</b> and cable are available here?` The question is `How much plugs of type <b>Bosch Active Connect with 3 pins</b> and cable are available here?`
*There are <b class='text-xl'>{socket:bosch_3pin}</b> plugs of type <b>Bosch Active Connect with 3 pins</b> and cable available here* is shown if `socket:bosch_3pin` is set
*There are <b class='text-xl'>{socket:bosch_3pin}</b> plugs of type <b>Bosch Active Connect with 3 pins</b> and cable available here* is shown if `socket:bosch_3pin` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -515,7 +533,8 @@ This tagrendering has labels
### plugs-amount-socket:bosch_5pin ### plugs-amount-socket:bosch_5pin
The question is `How much plugs of type <b>Bosch Active Connect with 5 pins</b> and cable are available here?` The question is `How much plugs of type <b>Bosch Active Connect with 5 pins</b> and cable are available here?`
*There are <b class='text-xl'>{socket:bosch_5pin}</b> plugs of type <b>Bosch Active Connect with 5 pins</b> and cable available here* is shown if `socket:bosch_5pin` is set
*There are <b class='text-xl'>{socket:bosch_5pin}</b> plugs of type <b>Bosch Active Connect with 5 pins</b> and cable available here* is shown if `socket:bosch_5pin` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -524,7 +543,8 @@ This tagrendering has labels
### plugs-amount-socket:bs1363 ### plugs-amount-socket:bs1363
The question is `How much plugs of type <b>BS1363</b> (Type G) are available here?` The question is `How much plugs of type <b>BS1363</b> (Type G) are available here?`
*There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here* is shown if `socket:bs1363` is set
*There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here* is shown if `socket:bs1363` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
This tagrendering has labels This tagrendering has labels
@ -533,7 +553,8 @@ This tagrendering has labels
### plugs-amount-socket:nema5_15 ### plugs-amount-socket:nema5_15
The question is `How much plugs of type <b>NEMA 5-15</b> (Type B) are available here?` The question is `How much plugs of type <b>NEMA 5-15</b> (Type B) are available here?`
*There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here* is shown if `socket:nema5_15` is set
*There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here* is shown if `socket:nema5_15` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0 This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
This tagrendering has labels This tagrendering has labels
@ -542,7 +563,8 @@ This tagrendering has labels
### plugs-amount-socket:sev1011_t23 ### plugs-amount-socket:sev1011_t23
The question is `How much plugs of type <b>SEV 1011 T23</b> (Type J) are available here?` The question is `How much plugs of type <b>SEV 1011 T23</b> (Type J) are available here?`
*There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here* is shown if `socket:sev1011_t23` is set
*There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here* is shown if `socket:sev1011_t23` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0 This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
This tagrendering has labels This tagrendering has labels
@ -551,7 +573,8 @@ This tagrendering has labels
### plugs-amount-socket:as3112 ### plugs-amount-socket:as3112
The question is `How much plugs of type <b>AS3112</b> (Type I) are available here?` The question is `How much plugs of type <b>AS3112</b> (Type I) are available here?`
*There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here* is shown if `socket:as3112` is set
*There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here* is shown if `socket:as3112` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0 This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
This tagrendering has labels This tagrendering has labels
@ -560,7 +583,8 @@ This tagrendering has labels
### plugs-amount-socket:nema_5_20 ### plugs-amount-socket:nema_5_20
The question is `How much plugs of type <b>NEMA 5-20</b> (Type B) are available here?` The question is `How much plugs of type <b>NEMA 5-20</b> (Type B) are available here?`
*There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here* is shown if `socket:nema_5_20` is set
*There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here* is shown if `socket:nema_5_20` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0 This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
This tagrendering has labels This tagrendering has labels
@ -569,17 +593,20 @@ This tagrendering has labels
### questions ### questions
Show the questions block at this location Show the questions block at this location
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions()}* *{questions()}*
### questions-technical ### questions-technical
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<h3>Technical questions</h3>The questions below are very technical. Feel free to ignore them<br/>{questions(technical)}* *<h3>Technical questions</h3>The questions below are very technical. Feel free to ignore them<br/>{questions(technical)}*
### voltage-socket:schuko ### voltage-socket:schuko
The question is `What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?` The question is `What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set.
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage' target='_blank'>socket:schuko:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230' target='_blank'>230</a> - *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage' target='_blank'>socket:schuko:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230' target='_blank'>230</a>
@ -590,7 +617,8 @@ This tagrendering has labels
### current-socket:schuko ### current-socket:schuko
The question is `What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?` The question is `What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set.
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current' target='_blank'>socket:schuko:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16' target='_blank'>16</a> - *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current' target='_blank'>socket:schuko:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16' target='_blank'>16</a>
@ -601,7 +629,8 @@ This tagrendering has labels
### power-output-socket:schuko ### power-output-socket:schuko
The question is `What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?` The question is `What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set.
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output' target='_blank'>socket:schuko:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW' target='_blank'>3.6 kW</a> - *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output' target='_blank'>socket:schuko:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW' target='_blank'>3.6 kW</a>
@ -612,7 +641,8 @@ This tagrendering has labels
### voltage-socket:typee ### voltage-socket:typee
The question is `What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?` The question is `What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set.
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage' target='_blank'>socket:typee:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230' target='_blank'>230</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage' target='_blank'>socket:typee:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230' target='_blank'>230</a>
@ -623,7 +653,8 @@ This tagrendering has labels
### current-socket:typee ### current-socket:typee
The question is `What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?` The question is `What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set.
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:current' target='_blank'>socket:typee:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16' target='_blank'>16</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:current' target='_blank'>socket:typee:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16' target='_blank'>16</a>
@ -634,7 +665,8 @@ This tagrendering has labels
### power-output-socket:typee ### power-output-socket:typee
The question is `What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?` The question is `What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set.
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW' target='_blank'>3 kW</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW' target='_blank'>3 kW</a>
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW' target='_blank'>22 kW</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW' target='_blank'>22 kW</a>
@ -646,7 +678,8 @@ This tagrendering has labels
### voltage-socket:chademo ### voltage-socket:chademo
The question is `What voltage do the plugs with <b>Chademo</b> offer?` The question is `What voltage do the plugs with <b>Chademo</b> offer?`
*<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set
*<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set.
- *<b>Chademo</b> outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage' target='_blank'>socket:chademo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500' target='_blank'>500</a> - *<b>Chademo</b> outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage' target='_blank'>socket:chademo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500' target='_blank'>500</a>
@ -657,7 +690,8 @@ This tagrendering has labels
### current-socket:chademo ### current-socket:chademo
The question is `What current do the plugs with <b>Chademo</b> offer?` The question is `What current do the plugs with <b>Chademo</b> offer?`
*<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set
*<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set.
- *<b>Chademo</b> outputs at most 120 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current' target='_blank'>socket:chademo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120' target='_blank'>120</a> - *<b>Chademo</b> outputs at most 120 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current' target='_blank'>socket:chademo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120' target='_blank'>120</a>
@ -668,7 +702,8 @@ This tagrendering has labels
### power-output-socket:chademo ### power-output-socket:chademo
The question is `What power output does a single plug of type <b>Chademo</b> offer?` The question is `What power output does a single plug of type <b>Chademo</b> offer?`
*<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set
*<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set.
- *<b>Chademo</b> outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output' target='_blank'>socket:chademo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Chademo</b> outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output' target='_blank'>socket:chademo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW' target='_blank'>50 kW</a>
@ -679,7 +714,8 @@ This tagrendering has labels
### voltage-socket:type1_cable ### voltage-socket:type1_cable
The question is `What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?` The question is `What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?`
*<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set
*<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set.
- *<b>Type 1 with cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200' target='_blank'>200</a> - *<b>Type 1 with cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200' target='_blank'>200</a>
- *<b>Type 1 with cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240' target='_blank'>240</a> - *<b>Type 1 with cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240' target='_blank'>240</a>
@ -691,7 +727,8 @@ This tagrendering has labels
### current-socket:type1_cable ### current-socket:type1_cable
The question is `What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?` The question is `What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?`
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set.
- *<b>Type 1 with cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current' target='_blank'>socket:type1_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32' target='_blank'>32</a> - *<b>Type 1 with cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current' target='_blank'>socket:type1_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32' target='_blank'>32</a>
@ -702,7 +739,8 @@ This tagrendering has labels
### power-output-socket:type1_cable ### power-output-socket:type1_cable
The question is `What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?` The question is `What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?`
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set.
- *<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW' target='_blank'>3.7 kW</a> - *<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW' target='_blank'>3.7 kW</a>
- *<b>Type 1 with cable</b> (J1772) outputs at most 7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW' target='_blank'>7 kW</a> - *<b>Type 1 with cable</b> (J1772) outputs at most 7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW' target='_blank'>7 kW</a>
@ -714,7 +752,8 @@ This tagrendering has labels
### voltage-socket:type1 ### voltage-socket:type1
The question is `What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?` The question is `What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set.
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200' target='_blank'>200</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200' target='_blank'>200</a>
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240' target='_blank'>240</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240' target='_blank'>240</a>
@ -726,7 +765,8 @@ This tagrendering has labels
### current-socket:type1 ### current-socket:type1
The question is `What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?` The question is `What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set.
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:current' target='_blank'>socket:type1:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32' target='_blank'>32</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:current' target='_blank'>socket:type1:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32' target='_blank'>32</a>
@ -737,7 +777,8 @@ This tagrendering has labels
### power-output-socket:type1 ### power-output-socket:type1
The question is `What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?` The question is `What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set.
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW' target='_blank'>3.7 kW</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW' target='_blank'>3.7 kW</a>
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW' target='_blank'>6.6 kW</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW' target='_blank'>6.6 kW</a>
@ -751,7 +792,8 @@ This tagrendering has labels
### voltage-socket:type1_combo ### voltage-socket:type1_combo
The question is `What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?` The question is `What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set.
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400' target='_blank'>400</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400' target='_blank'>400</a>
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000' target='_blank'>1000</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000' target='_blank'>1000</a>
@ -763,7 +805,8 @@ This tagrendering has labels
### current-socket:type1_combo ### current-socket:type1_combo
The question is `What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?` The question is `What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set.
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50' target='_blank'>50</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50' target='_blank'>50</a>
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125' target='_blank'>125</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125' target='_blank'>125</a>
@ -775,7 +818,8 @@ This tagrendering has labels
### power-output-socket:type1_combo ### power-output-socket:type1_combo
The question is `What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?` The question is `What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set.
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW' target='_blank'>50 kW</a>
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW' target='_blank'>62.5 kW</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW' target='_blank'>62.5 kW</a>
@ -789,7 +833,8 @@ This tagrendering has labels
### voltage-socket:tesla_supercharger ### voltage-socket:tesla_supercharger
The question is `What voltage do the plugs with <b>Tesla Supercharger</b> offer?` The question is `What voltage do the plugs with <b>Tesla Supercharger</b> offer?`
*<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set
*<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set.
- *<b>Tesla Supercharger</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage' target='_blank'>socket:tesla_supercharger:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480' target='_blank'>480</a> - *<b>Tesla Supercharger</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage' target='_blank'>socket:tesla_supercharger:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480' target='_blank'>480</a>
@ -800,7 +845,8 @@ This tagrendering has labels
### current-socket:tesla_supercharger ### current-socket:tesla_supercharger
The question is `What current do the plugs with <b>Tesla Supercharger</b> offer?` The question is `What current do the plugs with <b>Tesla Supercharger</b> offer?`
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set.
- *<b>Tesla Supercharger</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125' target='_blank'>125</a> - *<b>Tesla Supercharger</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125' target='_blank'>125</a>
- *<b>Tesla Supercharger</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350' target='_blank'>350</a> - *<b>Tesla Supercharger</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350' target='_blank'>350</a>
@ -812,7 +858,8 @@ This tagrendering has labels
### power-output-socket:tesla_supercharger ### power-output-socket:tesla_supercharger
The question is `What power output does a single plug of type <b>Tesla Supercharger</b> offer?` The question is `What power output does a single plug of type <b>Tesla Supercharger</b> offer?`
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set.
- *<b>Tesla Supercharger</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW' target='_blank'>120 kW</a> - *<b>Tesla Supercharger</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW' target='_blank'>120 kW</a>
- *<b>Tesla Supercharger</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW' target='_blank'>150 kW</a> - *<b>Tesla Supercharger</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW' target='_blank'>150 kW</a>
@ -825,7 +872,8 @@ This tagrendering has labels
### voltage-socket:type2 ### voltage-socket:type2
The question is `What voltage do the plugs with <b>Type 2</b> (mennekes) offer?` The question is `What voltage do the plugs with <b>Type 2</b> (mennekes) offer?`
*<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set
*<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set.
- *<b>Type 2</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230' target='_blank'>230</a> - *<b>Type 2</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230' target='_blank'>230</a>
- *<b>Type 2</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400' target='_blank'>400</a> - *<b>Type 2</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400' target='_blank'>400</a>
@ -837,7 +885,8 @@ This tagrendering has labels
### current-socket:type2 ### current-socket:type2
The question is `What current do the plugs with <b>Type 2</b> (mennekes) offer?` The question is `What current do the plugs with <b>Type 2</b> (mennekes) offer?`
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set.
- *<b>Type 2</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16' target='_blank'>16</a> - *<b>Type 2</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16' target='_blank'>16</a>
- *<b>Type 2</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32' target='_blank'>32</a> - *<b>Type 2</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32' target='_blank'>32</a>
@ -849,7 +898,8 @@ This tagrendering has labels
### power-output-socket:type2 ### power-output-socket:type2
The question is `What power output does a single plug of type <b>Type 2</b> (mennekes) offer?` The question is `What power output does a single plug of type <b>Type 2</b> (mennekes) offer?`
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set.
- *<b>Type 2</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW' target='_blank'>11 kW</a> - *<b>Type 2</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW' target='_blank'>11 kW</a>
- *<b>Type 2</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW' target='_blank'>22 kW</a> - *<b>Type 2</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW' target='_blank'>22 kW</a>
@ -861,7 +911,8 @@ This tagrendering has labels
### voltage-socket:type2_combo ### voltage-socket:type2_combo
The question is `What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?` The question is `What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?`
*<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set
*<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set.
- *<b>Type 2 CCS</b> (mennekes) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500' target='_blank'>500</a> - *<b>Type 2 CCS</b> (mennekes) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500' target='_blank'>500</a>
- *<b>Type 2 CCS</b> (mennekes) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920' target='_blank'>920</a> - *<b>Type 2 CCS</b> (mennekes) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920' target='_blank'>920</a>
@ -873,7 +924,8 @@ This tagrendering has labels
### current-socket:type2_combo ### current-socket:type2_combo
The question is `What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?` The question is `What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?`
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set.
- *<b>Type 2 CCS</b> (mennekes) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125' target='_blank'>125</a> - *<b>Type 2 CCS</b> (mennekes) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125' target='_blank'>125</a>
- *<b>Type 2 CCS</b> (mennekes) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350' target='_blank'>350</a> - *<b>Type 2 CCS</b> (mennekes) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350' target='_blank'>350</a>
@ -885,7 +937,8 @@ This tagrendering has labels
### power-output-socket:type2_combo ### power-output-socket:type2_combo
The question is `What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?` The question is `What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?`
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set.
- *<b>Type 2 CCS</b> (mennekes) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output' target='_blank'>socket:type2_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Type 2 CCS</b> (mennekes) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output' target='_blank'>socket:type2_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW' target='_blank'>50 kW</a>
@ -896,7 +949,8 @@ This tagrendering has labels
### voltage-socket:type2_cable ### voltage-socket:type2_cable
The question is `What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?` The question is `What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?`
*<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set
*<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set.
- *<b>Type 2 with cable</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230' target='_blank'>230</a> - *<b>Type 2 with cable</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230' target='_blank'>230</a>
- *<b>Type 2 with cable</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400' target='_blank'>400</a> - *<b>Type 2 with cable</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400' target='_blank'>400</a>
@ -908,7 +962,8 @@ This tagrendering has labels
### current-socket:type2_cable ### current-socket:type2_cable
The question is `What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?` The question is `What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?`
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set.
- *<b>Type 2 with cable</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16' target='_blank'>16</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16' target='_blank'>16</a>
- *<b>Type 2 with cable</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32' target='_blank'>32</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32' target='_blank'>32</a>
@ -920,7 +975,8 @@ This tagrendering has labels
### power-output-socket:type2_cable ### power-output-socket:type2_cable
The question is `What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?` The question is `What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?`
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set.
- *<b>Type 2 with cable</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW' target='_blank'>11 kW</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW' target='_blank'>11 kW</a>
- *<b>Type 2 with cable</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW' target='_blank'>22 kW</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW' target='_blank'>22 kW</a>
@ -932,7 +988,8 @@ This tagrendering has labels
### voltage-socket:tesla_supercharger_ccs ### voltage-socket:tesla_supercharger_ccs
The question is `What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?` The question is `What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set.
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500' target='_blank'>500</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500' target='_blank'>500</a>
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920' target='_blank'>920</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920' target='_blank'>920</a>
@ -944,7 +1001,8 @@ This tagrendering has labels
### current-socket:tesla_supercharger_ccs ### current-socket:tesla_supercharger_ccs
The question is `What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?` The question is `What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set.
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125' target='_blank'>125</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125' target='_blank'>125</a>
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350' target='_blank'>350</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350' target='_blank'>350</a>
@ -956,7 +1014,8 @@ This tagrendering has labels
### power-output-socket:tesla_supercharger_ccs ### power-output-socket:tesla_supercharger_ccs
The question is `What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?` The question is `What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set.
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output' target='_blank'>socket:tesla_supercharger_ccs:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output' target='_blank'>socket:tesla_supercharger_ccs:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW' target='_blank'>50 kW</a>
@ -967,7 +1026,8 @@ This tagrendering has labels
### voltage-socket:tesla_destination_us ### voltage-socket:tesla_destination_us
The question is `What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?` The question is `What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?`
*<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set
*<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set.
- *<b>Tesla Supercharger (destination)</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480' target='_blank'>480</a> - *<b>Tesla Supercharger (destination)</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480' target='_blank'>480</a>
@ -978,7 +1038,8 @@ This tagrendering has labels
### current-socket:tesla_destination_us ### current-socket:tesla_destination_us
The question is `What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?` The question is `What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?`
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set.
- *<b>Tesla Supercharger (destination)</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125' target='_blank'>125</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125' target='_blank'>125</a>
- *<b>Tesla Supercharger (destination)</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350' target='_blank'>350</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350' target='_blank'>350</a>
@ -990,7 +1051,8 @@ This tagrendering has labels
### power-output-socket:tesla_destination_us ### power-output-socket:tesla_destination_us
The question is `What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?` The question is `What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?`
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set.
- *<b>Tesla Supercharger (destination)</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW' target='_blank'>120 kW</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW' target='_blank'>120 kW</a>
- *<b>Tesla Supercharger (destination)</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW' target='_blank'>150 kW</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW' target='_blank'>150 kW</a>
@ -1003,7 +1065,8 @@ This tagrendering has labels
### voltage-socket:tesla_destination ### voltage-socket:tesla_destination
The question is `What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?` The question is `What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set.
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230' target='_blank'>230</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230' target='_blank'>230</a>
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400' target='_blank'>400</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400' target='_blank'>400</a>
@ -1015,7 +1078,8 @@ This tagrendering has labels
### current-socket:tesla_destination ### current-socket:tesla_destination
The question is `What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?` The question is `What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set.
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16' target='_blank'>16</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16' target='_blank'>16</a>
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32' target='_blank'>32</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32' target='_blank'>32</a>
@ -1027,7 +1091,8 @@ This tagrendering has labels
### power-output-socket:tesla_destination ### power-output-socket:tesla_destination
The question is `What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?` The question is `What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set.
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW' target='_blank'>11 kW</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW' target='_blank'>11 kW</a>
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW' target='_blank'>22 kW</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW' target='_blank'>22 kW</a>
@ -1039,7 +1104,8 @@ This tagrendering has labels
### voltage-socket:USB-A ### voltage-socket:USB-A
The question is `What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?` The question is `What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?`
*<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set
*<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set.
- *<b>USB</b> to charge phones and small electronics outputs 5 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage' target='_blank'>socket:USB-A:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5' target='_blank'>5</a> - *<b>USB</b> to charge phones and small electronics outputs 5 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage' target='_blank'>socket:USB-A:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5' target='_blank'>5</a>
@ -1050,7 +1116,8 @@ This tagrendering has labels
### current-socket:USB-A ### current-socket:USB-A
The question is `What current do the plugs with <b>USB</b> to charge phones and small electronics offer?` The question is `What current do the plugs with <b>USB</b> to charge phones and small electronics offer?`
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set.
- *<b>USB</b> to charge phones and small electronics outputs at most 1 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1' target='_blank'>1</a> - *<b>USB</b> to charge phones and small electronics outputs at most 1 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1' target='_blank'>1</a>
- *<b>USB</b> to charge phones and small electronics outputs at most 2 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2' target='_blank'>2</a> - *<b>USB</b> to charge phones and small electronics outputs at most 2 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2' target='_blank'>2</a>
@ -1062,7 +1129,8 @@ This tagrendering has labels
### power-output-socket:USB-A ### power-output-socket:USB-A
The question is `What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?` The question is `What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?`
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set.
- *<b>USB</b> to charge phones and small electronics outputs at most 5W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W' target='_blank'>5W</a> - *<b>USB</b> to charge phones and small electronics outputs at most 5W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W' target='_blank'>5W</a>
- *<b>USB</b> to charge phones and small electronics outputs at most 10W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W' target='_blank'>10W</a> - *<b>USB</b> to charge phones and small electronics outputs at most 10W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W' target='_blank'>10W</a>
@ -1074,7 +1142,8 @@ This tagrendering has labels
### voltage-socket:bosch_3pin ### voltage-socket:bosch_3pin
The question is `What voltage do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?` The question is `What voltage do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?`
*<b>Bosch Active Connect with 3 pins</b> and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set
*<b>Bosch Active Connect with 3 pins</b> and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1083,7 +1152,8 @@ This tagrendering has labels
### current-socket:bosch_3pin ### current-socket:bosch_3pin
The question is `What current do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?` The question is `What current do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?`
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1092,7 +1162,8 @@ This tagrendering has labels
### power-output-socket:bosch_3pin ### power-output-socket:bosch_3pin
The question is `What power output does a single plug of type <b>Bosch Active Connect with 3 pins</b> and cable offer?` The question is `What power output does a single plug of type <b>Bosch Active Connect with 3 pins</b> and cable offer?`
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1101,7 +1172,8 @@ This tagrendering has labels
### voltage-socket:bosch_5pin ### voltage-socket:bosch_5pin
The question is `What voltage do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?` The question is `What voltage do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?`
*<b>Bosch Active Connect with 5 pins</b> and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set
*<b>Bosch Active Connect with 5 pins</b> and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1110,7 +1182,8 @@ This tagrendering has labels
### current-socket:bosch_5pin ### current-socket:bosch_5pin
The question is `What current do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?` The question is `What current do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?`
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1119,7 +1192,8 @@ This tagrendering has labels
### power-output-socket:bosch_5pin ### power-output-socket:bosch_5pin
The question is `What power output does a single plug of type <b>Bosch Active Connect with 5 pins</b> and cable offer?` The question is `What power output does a single plug of type <b>Bosch Active Connect with 5 pins</b> and cable offer?`
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1128,7 +1202,8 @@ This tagrendering has labels
### voltage-socket:bs1363 ### voltage-socket:bs1363
The question is `What voltage do the plugs with <b>BS1363</b> (Type G) offer?` The question is `What voltage do the plugs with <b>BS1363</b> (Type G) offer?`
*<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set
*<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set.
- *<b>BS1363</b> (Type G) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage' target='_blank'>socket:bs1363:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230' target='_blank'>230</a> - *<b>BS1363</b> (Type G) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage' target='_blank'>socket:bs1363:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230' target='_blank'>230</a>
@ -1139,7 +1214,8 @@ This tagrendering has labels
### current-socket:bs1363 ### current-socket:bs1363
The question is `What current do the plugs with <b>BS1363</b> (Type G) offer?` The question is `What current do the plugs with <b>BS1363</b> (Type G) offer?`
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set.
- *<b>BS1363</b> (Type G) outputs at most 13 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current' target='_blank'>socket:bs1363:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13' target='_blank'>13</a> - *<b>BS1363</b> (Type G) outputs at most 13 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current' target='_blank'>socket:bs1363:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13' target='_blank'>13</a>
@ -1150,7 +1226,8 @@ This tagrendering has labels
### power-output-socket:bs1363 ### power-output-socket:bs1363
The question is `What power output does a single plug of type <b>BS1363</b> (Type G) offer?` The question is `What power output does a single plug of type <b>BS1363</b> (Type G) offer?`
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set.
- *<b>BS1363</b> (Type G) outputs at most 3kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output' target='_blank'>socket:bs1363:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW' target='_blank'>3kW</a> - *<b>BS1363</b> (Type G) outputs at most 3kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output' target='_blank'>socket:bs1363:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW' target='_blank'>3kW</a>
@ -1161,7 +1238,8 @@ This tagrendering has labels
### voltage-socket:nema5_15 ### voltage-socket:nema5_15
The question is `What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?` The question is `What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?`
*<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set
*<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set.
- *<b>NEMA 5-15</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage' target='_blank'>socket:nema5_15:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120' target='_blank'>120</a> - *<b>NEMA 5-15</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage' target='_blank'>socket:nema5_15:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120' target='_blank'>120</a>
@ -1172,7 +1250,8 @@ This tagrendering has labels
### current-socket:nema5_15 ### current-socket:nema5_15
The question is `What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?` The question is `What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?`
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set.
- *<b>NEMA 5-15</b> (Type B) outputs at most 15 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current' target='_blank'>socket:nema5_15:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15' target='_blank'>15</a> - *<b>NEMA 5-15</b> (Type B) outputs at most 15 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current' target='_blank'>socket:nema5_15:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15' target='_blank'>15</a>
@ -1183,7 +1262,8 @@ This tagrendering has labels
### power-output-socket:nema5_15 ### power-output-socket:nema5_15
The question is `What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?` The question is `What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?`
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set.
- *<b>NEMA 5-15</b> (Type B) outputs at most 1.8 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output' target='_blank'>socket:nema5_15:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW' target='_blank'>1.8 kW</a> - *<b>NEMA 5-15</b> (Type B) outputs at most 1.8 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output' target='_blank'>socket:nema5_15:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW' target='_blank'>1.8 kW</a>
@ -1194,7 +1274,8 @@ This tagrendering has labels
### voltage-socket:sev1011_t23 ### voltage-socket:sev1011_t23
The question is `What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?` The question is `What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?`
*<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set
*<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set.
- *<b>SEV 1011 T23</b> (Type J) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage' target='_blank'>socket:sev1011_t23:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230' target='_blank'>230</a> - *<b>SEV 1011 T23</b> (Type J) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage' target='_blank'>socket:sev1011_t23:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230' target='_blank'>230</a>
@ -1205,7 +1286,8 @@ This tagrendering has labels
### current-socket:sev1011_t23 ### current-socket:sev1011_t23
The question is `What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?` The question is `What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?`
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set.
- *<b>SEV 1011 T23</b> (Type J) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current' target='_blank'>socket:sev1011_t23:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16' target='_blank'>16</a> - *<b>SEV 1011 T23</b> (Type J) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current' target='_blank'>socket:sev1011_t23:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16' target='_blank'>16</a>
@ -1216,7 +1298,8 @@ This tagrendering has labels
### power-output-socket:sev1011_t23 ### power-output-socket:sev1011_t23
The question is `What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?` The question is `What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?`
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set.
- *<b>SEV 1011 T23</b> (Type J) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output' target='_blank'>socket:sev1011_t23:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW' target='_blank'>3.7 kW</a> - *<b>SEV 1011 T23</b> (Type J) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output' target='_blank'>socket:sev1011_t23:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW' target='_blank'>3.7 kW</a>
@ -1227,7 +1310,8 @@ This tagrendering has labels
### voltage-socket:as3112 ### voltage-socket:as3112
The question is `What voltage do the plugs with <b>AS3112</b> (Type I) offer?` The question is `What voltage do the plugs with <b>AS3112</b> (Type I) offer?`
*<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set
*<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set.
- *<b>AS3112</b> (Type I) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage' target='_blank'>socket:as3112:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230' target='_blank'>230</a> - *<b>AS3112</b> (Type I) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage' target='_blank'>socket:as3112:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230' target='_blank'>230</a>
@ -1238,7 +1322,8 @@ This tagrendering has labels
### current-socket:as3112 ### current-socket:as3112
The question is `What current do the plugs with <b>AS3112</b> (Type I) offer?` The question is `What current do the plugs with <b>AS3112</b> (Type I) offer?`
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set.
- *<b>AS3112</b> (Type I) outputs at most 10 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current' target='_blank'>socket:as3112:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10' target='_blank'>10</a> - *<b>AS3112</b> (Type I) outputs at most 10 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current' target='_blank'>socket:as3112:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10' target='_blank'>10</a>
@ -1249,7 +1334,8 @@ This tagrendering has labels
### power-output-socket:as3112 ### power-output-socket:as3112
The question is `What power output does a single plug of type <b>AS3112</b> (Type I) offer?` The question is `What power output does a single plug of type <b>AS3112</b> (Type I) offer?`
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set.
- *<b>AS3112</b> (Type I) outputs at most 2.3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output' target='_blank'>socket:as3112:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW' target='_blank'>2.3 kW</a> - *<b>AS3112</b> (Type I) outputs at most 2.3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output' target='_blank'>socket:as3112:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW' target='_blank'>2.3 kW</a>
@ -1260,7 +1346,8 @@ This tagrendering has labels
### voltage-socket:nema_5_20 ### voltage-socket:nema_5_20
The question is `What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?` The question is `What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?`
*<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set
*<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set.
- *<b>NEMA 5-20</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage' target='_blank'>socket:nema_5_20:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120' target='_blank'>120</a> - *<b>NEMA 5-20</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage' target='_blank'>socket:nema_5_20:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120' target='_blank'>120</a>
@ -1271,7 +1358,8 @@ This tagrendering has labels
### current-socket:nema_5_20 ### current-socket:nema_5_20
The question is `What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?` The question is `What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?`
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set.
- *<b>NEMA 5-20</b> (Type B) outputs at most 20 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current' target='_blank'>socket:nema_5_20:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20' target='_blank'>20</a> - *<b>NEMA 5-20</b> (Type B) outputs at most 20 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current' target='_blank'>socket:nema_5_20:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20' target='_blank'>20</a>
@ -1282,7 +1370,8 @@ This tagrendering has labels
### power-output-socket:nema_5_20 ### power-output-socket:nema_5_20
The question is `What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?` The question is `What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?`
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set.
- *<b>NEMA 5-20</b> (Type B) outputs at most 2.4 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output' target='_blank'>socket:nema_5_20:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW' target='_blank'>2.4 kW</a> - *<b>NEMA 5-20</b> (Type B) outputs at most 2.4 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output' target='_blank'>socket:nema_5_20:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW' target='_blank'>2.4 kW</a>
@ -1293,11 +1382,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -385,6 +385,7 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### Type ### Type
@ -400,7 +401,8 @@ The question is `Which vehicles are allowed to charge here?`
### access ### access
The question is `Who is allowed to use this charging station?` The question is `Who is allowed to use this charging station?`
*Access is {access}* is shown if `access` is set
*Access is {access}* is shown if `access` is set.
- *Anyone can use this charging station (payment might be needed)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a> - *Anyone can use this charging station (payment might be needed)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
- *Anyone can use this charging station (payment might be needed)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>. _This option cannot be chosen as answer_ - *Anyone can use this charging station (payment might be needed)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>. _This option cannot be chosen as answer_
@ -412,7 +414,8 @@ The question is `Who is allowed to use this charging station?`
### capacity ### capacity
The question is `How much vehicles can be charged here at the same time?` The question is `How much vehicles can be charged here at the same time?`
*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set
*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set.
### Available_charging_stations (generated) ### Available_charging_stations (generated)
@ -464,7 +467,8 @@ The question is `Which charging connections are available here?`
### plugs-amount-socket:schuko ### plugs-amount-socket:schuko
The question is `How much plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) are available here?` The question is `How much plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) are available here?`
*There are <b class='text-xl'>{socket:schuko}</b> plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set
*There are <b class='text-xl'>{socket:schuko}</b> plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0 This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
This tagrendering has labels This tagrendering has labels
@ -473,7 +477,8 @@ This tagrendering has labels
### voltage-socket:schuko ### voltage-socket:schuko
The question is `What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?` The question is `What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set.
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage' target='_blank'>socket:schuko:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230' target='_blank'>230</a> - *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage' target='_blank'>socket:schuko:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230' target='_blank'>230</a>
@ -484,7 +489,8 @@ This tagrendering has labels
### current-socket:schuko ### current-socket:schuko
The question is `What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?` The question is `What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set.
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current' target='_blank'>socket:schuko:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16' target='_blank'>16</a> - *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current' target='_blank'>socket:schuko:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16' target='_blank'>16</a>
@ -495,7 +501,8 @@ This tagrendering has labels
### power-output-socket:schuko ### power-output-socket:schuko
The question is `What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?` The question is `What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set.
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output' target='_blank'>socket:schuko:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW' target='_blank'>3.6 kW</a> - *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output' target='_blank'>socket:schuko:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW' target='_blank'>3.6 kW</a>
@ -506,7 +513,8 @@ This tagrendering has labels
### plugs-amount-socket:typee ### plugs-amount-socket:typee
The question is `How much plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) are available here?` The question is `How much plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) are available here?`
*There are <b class='text-xl'>{socket:typee}</b> plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set
*There are <b class='text-xl'>{socket:typee}</b> plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0 This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
This tagrendering has labels This tagrendering has labels
@ -515,7 +523,8 @@ This tagrendering has labels
### voltage-socket:typee ### voltage-socket:typee
The question is `What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?` The question is `What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set.
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage' target='_blank'>socket:typee:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230' target='_blank'>230</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage' target='_blank'>socket:typee:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230' target='_blank'>230</a>
@ -526,7 +535,8 @@ This tagrendering has labels
### current-socket:typee ### current-socket:typee
The question is `What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?` The question is `What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set.
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:current' target='_blank'>socket:typee:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16' target='_blank'>16</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:current' target='_blank'>socket:typee:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16' target='_blank'>16</a>
@ -537,7 +547,8 @@ This tagrendering has labels
### power-output-socket:typee ### power-output-socket:typee
The question is `What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?` The question is `What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set.
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW' target='_blank'>3 kW</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW' target='_blank'>3 kW</a>
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW' target='_blank'>22 kW</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW' target='_blank'>22 kW</a>
@ -549,7 +560,8 @@ This tagrendering has labels
### plugs-amount-socket:chademo ### plugs-amount-socket:chademo
The question is `How much plugs of type <b>Chademo</b> are available here?` The question is `How much plugs of type <b>Chademo</b> are available here?`
*There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here* is shown if `socket:chademo` is set
*There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here* is shown if `socket:chademo` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0 This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
This tagrendering has labels This tagrendering has labels
@ -558,7 +570,8 @@ This tagrendering has labels
### voltage-socket:chademo ### voltage-socket:chademo
The question is `What voltage do the plugs with <b>Chademo</b> offer?` The question is `What voltage do the plugs with <b>Chademo</b> offer?`
*<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set
*<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set.
- *<b>Chademo</b> outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage' target='_blank'>socket:chademo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500' target='_blank'>500</a> - *<b>Chademo</b> outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage' target='_blank'>socket:chademo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500' target='_blank'>500</a>
@ -569,7 +582,8 @@ This tagrendering has labels
### current-socket:chademo ### current-socket:chademo
The question is `What current do the plugs with <b>Chademo</b> offer?` The question is `What current do the plugs with <b>Chademo</b> offer?`
*<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set
*<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set.
- *<b>Chademo</b> outputs at most 120 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current' target='_blank'>socket:chademo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120' target='_blank'>120</a> - *<b>Chademo</b> outputs at most 120 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current' target='_blank'>socket:chademo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120' target='_blank'>120</a>
@ -580,7 +594,8 @@ This tagrendering has labels
### power-output-socket:chademo ### power-output-socket:chademo
The question is `What power output does a single plug of type <b>Chademo</b> offer?` The question is `What power output does a single plug of type <b>Chademo</b> offer?`
*<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set
*<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set.
- *<b>Chademo</b> outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output' target='_blank'>socket:chademo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Chademo</b> outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output' target='_blank'>socket:chademo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW' target='_blank'>50 kW</a>
@ -591,7 +606,8 @@ This tagrendering has labels
### plugs-amount-socket:type1_cable ### plugs-amount-socket:type1_cable
The question is `How much plugs of type <b>Type 1 with cable</b> (J1772) are available here?` The question is `How much plugs of type <b>Type 1 with cable</b> (J1772) are available here?`
*There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here* is shown if `socket:type1_cable` is set
*There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here* is shown if `socket:type1_cable` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
This tagrendering has labels This tagrendering has labels
@ -600,7 +616,8 @@ This tagrendering has labels
### voltage-socket:type1_cable ### voltage-socket:type1_cable
The question is `What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?` The question is `What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?`
*<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set
*<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set.
- *<b>Type 1 with cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200' target='_blank'>200</a> - *<b>Type 1 with cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200' target='_blank'>200</a>
- *<b>Type 1 with cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240' target='_blank'>240</a> - *<b>Type 1 with cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240' target='_blank'>240</a>
@ -612,7 +629,8 @@ This tagrendering has labels
### current-socket:type1_cable ### current-socket:type1_cable
The question is `What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?` The question is `What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?`
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set.
- *<b>Type 1 with cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current' target='_blank'>socket:type1_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32' target='_blank'>32</a> - *<b>Type 1 with cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current' target='_blank'>socket:type1_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32' target='_blank'>32</a>
@ -623,7 +641,8 @@ This tagrendering has labels
### power-output-socket:type1_cable ### power-output-socket:type1_cable
The question is `What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?` The question is `What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?`
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set.
- *<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW' target='_blank'>3.7 kW</a> - *<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW' target='_blank'>3.7 kW</a>
- *<b>Type 1 with cable</b> (J1772) outputs at most 7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW' target='_blank'>7 kW</a> - *<b>Type 1 with cable</b> (J1772) outputs at most 7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW' target='_blank'>7 kW</a>
@ -635,7 +654,8 @@ This tagrendering has labels
### plugs-amount-socket:type1 ### plugs-amount-socket:type1
The question is `How much plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) are available here?` The question is `How much plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) are available here?`
*There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here* is shown if `socket:type1` is set
*There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here* is shown if `socket:type1` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
This tagrendering has labels This tagrendering has labels
@ -644,7 +664,8 @@ This tagrendering has labels
### voltage-socket:type1 ### voltage-socket:type1
The question is `What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?` The question is `What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set.
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200' target='_blank'>200</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200' target='_blank'>200</a>
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240' target='_blank'>240</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240' target='_blank'>240</a>
@ -656,7 +677,8 @@ This tagrendering has labels
### current-socket:type1 ### current-socket:type1
The question is `What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?` The question is `What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set.
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:current' target='_blank'>socket:type1:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32' target='_blank'>32</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:current' target='_blank'>socket:type1:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32' target='_blank'>32</a>
@ -667,7 +689,8 @@ This tagrendering has labels
### power-output-socket:type1 ### power-output-socket:type1
The question is `What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?` The question is `What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set.
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW' target='_blank'>3.7 kW</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW' target='_blank'>3.7 kW</a>
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW' target='_blank'>6.6 kW</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW' target='_blank'>6.6 kW</a>
@ -681,7 +704,8 @@ This tagrendering has labels
### plugs-amount-socket:type1_combo ### plugs-amount-socket:type1_combo
The question is `How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are available here?` The question is `How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are available here?`
*There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set
*There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
This tagrendering has labels This tagrendering has labels
@ -690,7 +714,8 @@ This tagrendering has labels
### voltage-socket:type1_combo ### voltage-socket:type1_combo
The question is `What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?` The question is `What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set.
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400' target='_blank'>400</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400' target='_blank'>400</a>
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000' target='_blank'>1000</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000' target='_blank'>1000</a>
@ -702,7 +727,8 @@ This tagrendering has labels
### current-socket:type1_combo ### current-socket:type1_combo
The question is `What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?` The question is `What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set.
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50' target='_blank'>50</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50' target='_blank'>50</a>
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125' target='_blank'>125</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125' target='_blank'>125</a>
@ -714,7 +740,8 @@ This tagrendering has labels
### power-output-socket:type1_combo ### power-output-socket:type1_combo
The question is `What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?` The question is `What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set.
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW' target='_blank'>50 kW</a>
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW' target='_blank'>62.5 kW</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW' target='_blank'>62.5 kW</a>
@ -728,7 +755,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_supercharger ### plugs-amount-socket:tesla_supercharger
The question is `How much plugs of type <b>Tesla Supercharger</b> are available here?` The question is `How much plugs of type <b>Tesla Supercharger</b> are available here?`
*There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here* is shown if `socket:tesla_supercharger` is set
*There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here* is shown if `socket:tesla_supercharger` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
This tagrendering has labels This tagrendering has labels
@ -737,7 +765,8 @@ This tagrendering has labels
### voltage-socket:tesla_supercharger ### voltage-socket:tesla_supercharger
The question is `What voltage do the plugs with <b>Tesla Supercharger</b> offer?` The question is `What voltage do the plugs with <b>Tesla Supercharger</b> offer?`
*<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set
*<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set.
- *<b>Tesla Supercharger</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage' target='_blank'>socket:tesla_supercharger:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480' target='_blank'>480</a> - *<b>Tesla Supercharger</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage' target='_blank'>socket:tesla_supercharger:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480' target='_blank'>480</a>
@ -748,7 +777,8 @@ This tagrendering has labels
### current-socket:tesla_supercharger ### current-socket:tesla_supercharger
The question is `What current do the plugs with <b>Tesla Supercharger</b> offer?` The question is `What current do the plugs with <b>Tesla Supercharger</b> offer?`
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set.
- *<b>Tesla Supercharger</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125' target='_blank'>125</a> - *<b>Tesla Supercharger</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125' target='_blank'>125</a>
- *<b>Tesla Supercharger</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350' target='_blank'>350</a> - *<b>Tesla Supercharger</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350' target='_blank'>350</a>
@ -760,7 +790,8 @@ This tagrendering has labels
### power-output-socket:tesla_supercharger ### power-output-socket:tesla_supercharger
The question is `What power output does a single plug of type <b>Tesla Supercharger</b> offer?` The question is `What power output does a single plug of type <b>Tesla Supercharger</b> offer?`
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set.
- *<b>Tesla Supercharger</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW' target='_blank'>120 kW</a> - *<b>Tesla Supercharger</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW' target='_blank'>120 kW</a>
- *<b>Tesla Supercharger</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW' target='_blank'>150 kW</a> - *<b>Tesla Supercharger</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW' target='_blank'>150 kW</a>
@ -773,7 +804,8 @@ This tagrendering has labels
### plugs-amount-socket:type2 ### plugs-amount-socket:type2
The question is `How much plugs of type <b>Type 2</b> (mennekes) are available here?` The question is `How much plugs of type <b>Type 2</b> (mennekes) are available here?`
*There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here* is shown if `socket:type2` is set
*There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here* is shown if `socket:type2` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
This tagrendering has labels This tagrendering has labels
@ -782,7 +814,8 @@ This tagrendering has labels
### voltage-socket:type2 ### voltage-socket:type2
The question is `What voltage do the plugs with <b>Type 2</b> (mennekes) offer?` The question is `What voltage do the plugs with <b>Type 2</b> (mennekes) offer?`
*<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set
*<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set.
- *<b>Type 2</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230' target='_blank'>230</a> - *<b>Type 2</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230' target='_blank'>230</a>
- *<b>Type 2</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400' target='_blank'>400</a> - *<b>Type 2</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400' target='_blank'>400</a>
@ -794,7 +827,8 @@ This tagrendering has labels
### current-socket:type2 ### current-socket:type2
The question is `What current do the plugs with <b>Type 2</b> (mennekes) offer?` The question is `What current do the plugs with <b>Type 2</b> (mennekes) offer?`
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set.
- *<b>Type 2</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16' target='_blank'>16</a> - *<b>Type 2</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16' target='_blank'>16</a>
- *<b>Type 2</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32' target='_blank'>32</a> - *<b>Type 2</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32' target='_blank'>32</a>
@ -806,7 +840,8 @@ This tagrendering has labels
### power-output-socket:type2 ### power-output-socket:type2
The question is `What power output does a single plug of type <b>Type 2</b> (mennekes) offer?` The question is `What power output does a single plug of type <b>Type 2</b> (mennekes) offer?`
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set.
- *<b>Type 2</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW' target='_blank'>11 kW</a> - *<b>Type 2</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW' target='_blank'>11 kW</a>
- *<b>Type 2</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW' target='_blank'>22 kW</a> - *<b>Type 2</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW' target='_blank'>22 kW</a>
@ -818,7 +853,8 @@ This tagrendering has labels
### plugs-amount-socket:type2_combo ### plugs-amount-socket:type2_combo
The question is `How much plugs of type <b>Type 2 CCS</b> (mennekes) are available here?` The question is `How much plugs of type <b>Type 2 CCS</b> (mennekes) are available here?`
*There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here* is shown if `socket:type2_combo` is set
*There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here* is shown if `socket:type2_combo` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
This tagrendering has labels This tagrendering has labels
@ -827,7 +863,8 @@ This tagrendering has labels
### voltage-socket:type2_combo ### voltage-socket:type2_combo
The question is `What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?` The question is `What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?`
*<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set
*<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set.
- *<b>Type 2 CCS</b> (mennekes) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500' target='_blank'>500</a> - *<b>Type 2 CCS</b> (mennekes) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500' target='_blank'>500</a>
- *<b>Type 2 CCS</b> (mennekes) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920' target='_blank'>920</a> - *<b>Type 2 CCS</b> (mennekes) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920' target='_blank'>920</a>
@ -839,7 +876,8 @@ This tagrendering has labels
### current-socket:type2_combo ### current-socket:type2_combo
The question is `What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?` The question is `What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?`
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set.
- *<b>Type 2 CCS</b> (mennekes) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125' target='_blank'>125</a> - *<b>Type 2 CCS</b> (mennekes) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125' target='_blank'>125</a>
- *<b>Type 2 CCS</b> (mennekes) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350' target='_blank'>350</a> - *<b>Type 2 CCS</b> (mennekes) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350' target='_blank'>350</a>
@ -851,7 +889,8 @@ This tagrendering has labels
### power-output-socket:type2_combo ### power-output-socket:type2_combo
The question is `What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?` The question is `What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?`
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set.
- *<b>Type 2 CCS</b> (mennekes) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output' target='_blank'>socket:type2_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Type 2 CCS</b> (mennekes) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output' target='_blank'>socket:type2_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW' target='_blank'>50 kW</a>
@ -862,7 +901,8 @@ This tagrendering has labels
### plugs-amount-socket:type2_cable ### plugs-amount-socket:type2_cable
The question is `How much plugs of type <b>Type 2 with cable</b> (mennekes) are available here?` The question is `How much plugs of type <b>Type 2 with cable</b> (mennekes) are available here?`
*There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here* is shown if `socket:type2_cable` is set
*There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here* is shown if `socket:type2_cable` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
This tagrendering has labels This tagrendering has labels
@ -871,7 +911,8 @@ This tagrendering has labels
### voltage-socket:type2_cable ### voltage-socket:type2_cable
The question is `What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?` The question is `What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?`
*<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set
*<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set.
- *<b>Type 2 with cable</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230' target='_blank'>230</a> - *<b>Type 2 with cable</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230' target='_blank'>230</a>
- *<b>Type 2 with cable</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400' target='_blank'>400</a> - *<b>Type 2 with cable</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400' target='_blank'>400</a>
@ -883,7 +924,8 @@ This tagrendering has labels
### current-socket:type2_cable ### current-socket:type2_cable
The question is `What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?` The question is `What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?`
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set.
- *<b>Type 2 with cable</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16' target='_blank'>16</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16' target='_blank'>16</a>
- *<b>Type 2 with cable</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32' target='_blank'>32</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32' target='_blank'>32</a>
@ -895,7 +937,8 @@ This tagrendering has labels
### power-output-socket:type2_cable ### power-output-socket:type2_cable
The question is `What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?` The question is `What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?`
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set.
- *<b>Type 2 with cable</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW' target='_blank'>11 kW</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW' target='_blank'>11 kW</a>
- *<b>Type 2 with cable</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW' target='_blank'>22 kW</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW' target='_blank'>22 kW</a>
@ -907,7 +950,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_supercharger_ccs ### plugs-amount-socket:tesla_supercharger_ccs
The question is `How much plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) are available here?` The question is `How much plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) are available here?`
*There are <b class='text-xl'>{socket:tesla_supercharger_ccs}</b> plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set
*There are <b class='text-xl'>{socket:tesla_supercharger_ccs}</b> plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
This tagrendering has labels This tagrendering has labels
@ -916,7 +960,8 @@ This tagrendering has labels
### voltage-socket:tesla_supercharger_ccs ### voltage-socket:tesla_supercharger_ccs
The question is `What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?` The question is `What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set.
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500' target='_blank'>500</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500' target='_blank'>500</a>
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920' target='_blank'>920</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920' target='_blank'>920</a>
@ -928,7 +973,8 @@ This tagrendering has labels
### current-socket:tesla_supercharger_ccs ### current-socket:tesla_supercharger_ccs
The question is `What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?` The question is `What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set.
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125' target='_blank'>125</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125' target='_blank'>125</a>
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350' target='_blank'>350</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350' target='_blank'>350</a>
@ -940,7 +986,8 @@ This tagrendering has labels
### power-output-socket:tesla_supercharger_ccs ### power-output-socket:tesla_supercharger_ccs
The question is `What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?` The question is `What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set.
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output' target='_blank'>socket:tesla_supercharger_ccs:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output' target='_blank'>socket:tesla_supercharger_ccs:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW' target='_blank'>50 kW</a>
@ -951,7 +998,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_destination_us ### plugs-amount-socket:tesla_destination_us
The question is `How much plugs of type <b>Tesla Supercharger (destination)</b> are available here?` The question is `How much plugs of type <b>Tesla Supercharger (destination)</b> are available here?`
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here* is shown if `socket:tesla_destination` is set
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here* is shown if `socket:tesla_destination` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
This tagrendering has labels This tagrendering has labels
@ -960,7 +1008,8 @@ This tagrendering has labels
### voltage-socket:tesla_destination_us ### voltage-socket:tesla_destination_us
The question is `What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?` The question is `What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?`
*<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set
*<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set.
- *<b>Tesla Supercharger (destination)</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480' target='_blank'>480</a> - *<b>Tesla Supercharger (destination)</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480' target='_blank'>480</a>
@ -971,7 +1020,8 @@ This tagrendering has labels
### current-socket:tesla_destination_us ### current-socket:tesla_destination_us
The question is `What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?` The question is `What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?`
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set.
- *<b>Tesla Supercharger (destination)</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125' target='_blank'>125</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125' target='_blank'>125</a>
- *<b>Tesla Supercharger (destination)</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350' target='_blank'>350</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350' target='_blank'>350</a>
@ -983,7 +1033,8 @@ This tagrendering has labels
### power-output-socket:tesla_destination_us ### power-output-socket:tesla_destination_us
The question is `What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?` The question is `What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?`
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set.
- *<b>Tesla Supercharger (destination)</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW' target='_blank'>120 kW</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW' target='_blank'>120 kW</a>
- *<b>Tesla Supercharger (destination)</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW' target='_blank'>150 kW</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW' target='_blank'>150 kW</a>
@ -996,7 +1047,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_destination ### plugs-amount-socket:tesla_destination
The question is `How much plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) are available here?` The question is `How much plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) are available here?`
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
This tagrendering has labels This tagrendering has labels
@ -1005,7 +1057,8 @@ This tagrendering has labels
### voltage-socket:tesla_destination ### voltage-socket:tesla_destination
The question is `What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?` The question is `What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set.
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230' target='_blank'>230</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230' target='_blank'>230</a>
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400' target='_blank'>400</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400' target='_blank'>400</a>
@ -1017,7 +1070,8 @@ This tagrendering has labels
### current-socket:tesla_destination ### current-socket:tesla_destination
The question is `What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?` The question is `What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set.
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16' target='_blank'>16</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16' target='_blank'>16</a>
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32' target='_blank'>32</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32' target='_blank'>32</a>
@ -1029,7 +1083,8 @@ This tagrendering has labels
### power-output-socket:tesla_destination ### power-output-socket:tesla_destination
The question is `What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?` The question is `What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set.
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW' target='_blank'>11 kW</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW' target='_blank'>11 kW</a>
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW' target='_blank'>22 kW</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW' target='_blank'>22 kW</a>
@ -1041,7 +1096,8 @@ This tagrendering has labels
### plugs-amount-socket:USB-A ### plugs-amount-socket:USB-A
The question is `How much plugs of type <b>USB</b> to charge phones and small electronics are available here?` The question is `How much plugs of type <b>USB</b> to charge phones and small electronics are available here?`
*There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here* is shown if `socket:USB-A` is set
*There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here* is shown if `socket:USB-A` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0 This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
This tagrendering has labels This tagrendering has labels
@ -1050,7 +1106,8 @@ This tagrendering has labels
### voltage-socket:USB-A ### voltage-socket:USB-A
The question is `What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?` The question is `What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?`
*<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set
*<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set.
- *<b>USB</b> to charge phones and small electronics outputs 5 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage' target='_blank'>socket:USB-A:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5' target='_blank'>5</a> - *<b>USB</b> to charge phones and small electronics outputs 5 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage' target='_blank'>socket:USB-A:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5' target='_blank'>5</a>
@ -1061,7 +1118,8 @@ This tagrendering has labels
### current-socket:USB-A ### current-socket:USB-A
The question is `What current do the plugs with <b>USB</b> to charge phones and small electronics offer?` The question is `What current do the plugs with <b>USB</b> to charge phones and small electronics offer?`
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set.
- *<b>USB</b> to charge phones and small electronics outputs at most 1 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1' target='_blank'>1</a> - *<b>USB</b> to charge phones and small electronics outputs at most 1 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1' target='_blank'>1</a>
- *<b>USB</b> to charge phones and small electronics outputs at most 2 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2' target='_blank'>2</a> - *<b>USB</b> to charge phones and small electronics outputs at most 2 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2' target='_blank'>2</a>
@ -1073,7 +1131,8 @@ This tagrendering has labels
### power-output-socket:USB-A ### power-output-socket:USB-A
The question is `What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?` The question is `What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?`
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set.
- *<b>USB</b> to charge phones and small electronics outputs at most 5W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W' target='_blank'>5W</a> - *<b>USB</b> to charge phones and small electronics outputs at most 5W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W' target='_blank'>5W</a>
- *<b>USB</b> to charge phones and small electronics outputs at most 10W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W' target='_blank'>10W</a> - *<b>USB</b> to charge phones and small electronics outputs at most 10W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W' target='_blank'>10W</a>
@ -1085,7 +1144,8 @@ This tagrendering has labels
### plugs-amount-socket:bosch_3pin ### plugs-amount-socket:bosch_3pin
The question is `How much plugs of type <b>Bosch Active Connect with 3 pins</b> and cable are available here?` The question is `How much plugs of type <b>Bosch Active Connect with 3 pins</b> and cable are available here?`
*There are <b class='text-xl'>{socket:bosch_3pin}</b> plugs of type <b>Bosch Active Connect with 3 pins</b> and cable available here* is shown if `socket:bosch_3pin` is set
*There are <b class='text-xl'>{socket:bosch_3pin}</b> plugs of type <b>Bosch Active Connect with 3 pins</b> and cable available here* is shown if `socket:bosch_3pin` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1094,7 +1154,8 @@ This tagrendering has labels
### voltage-socket:bosch_3pin ### voltage-socket:bosch_3pin
The question is `What voltage do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?` The question is `What voltage do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?`
*<b>Bosch Active Connect with 3 pins</b> and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set
*<b>Bosch Active Connect with 3 pins</b> and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1103,7 +1164,8 @@ This tagrendering has labels
### current-socket:bosch_3pin ### current-socket:bosch_3pin
The question is `What current do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?` The question is `What current do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?`
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1112,7 +1174,8 @@ This tagrendering has labels
### power-output-socket:bosch_3pin ### power-output-socket:bosch_3pin
The question is `What power output does a single plug of type <b>Bosch Active Connect with 3 pins</b> and cable offer?` The question is `What power output does a single plug of type <b>Bosch Active Connect with 3 pins</b> and cable offer?`
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1121,7 +1184,8 @@ This tagrendering has labels
### plugs-amount-socket:bosch_5pin ### plugs-amount-socket:bosch_5pin
The question is `How much plugs of type <b>Bosch Active Connect with 5 pins</b> and cable are available here?` The question is `How much plugs of type <b>Bosch Active Connect with 5 pins</b> and cable are available here?`
*There are <b class='text-xl'>{socket:bosch_5pin}</b> plugs of type <b>Bosch Active Connect with 5 pins</b> and cable available here* is shown if `socket:bosch_5pin` is set
*There are <b class='text-xl'>{socket:bosch_5pin}</b> plugs of type <b>Bosch Active Connect with 5 pins</b> and cable available here* is shown if `socket:bosch_5pin` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1130,7 +1194,8 @@ This tagrendering has labels
### voltage-socket:bosch_5pin ### voltage-socket:bosch_5pin
The question is `What voltage do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?` The question is `What voltage do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?`
*<b>Bosch Active Connect with 5 pins</b> and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set
*<b>Bosch Active Connect with 5 pins</b> and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1139,7 +1204,8 @@ This tagrendering has labels
### current-socket:bosch_5pin ### current-socket:bosch_5pin
The question is `What current do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?` The question is `What current do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?`
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1148,7 +1214,8 @@ This tagrendering has labels
### power-output-socket:bosch_5pin ### power-output-socket:bosch_5pin
The question is `What power output does a single plug of type <b>Bosch Active Connect with 5 pins</b> and cable offer?` The question is `What power output does a single plug of type <b>Bosch Active Connect with 5 pins</b> and cable offer?`
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1157,7 +1224,8 @@ This tagrendering has labels
### plugs-amount-socket:bs1363 ### plugs-amount-socket:bs1363
The question is `How much plugs of type <b>BS1363</b> (Type G) are available here?` The question is `How much plugs of type <b>BS1363</b> (Type G) are available here?`
*There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here* is shown if `socket:bs1363` is set
*There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here* is shown if `socket:bs1363` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
This tagrendering has labels This tagrendering has labels
@ -1166,7 +1234,8 @@ This tagrendering has labels
### voltage-socket:bs1363 ### voltage-socket:bs1363
The question is `What voltage do the plugs with <b>BS1363</b> (Type G) offer?` The question is `What voltage do the plugs with <b>BS1363</b> (Type G) offer?`
*<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set
*<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set.
- *<b>BS1363</b> (Type G) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage' target='_blank'>socket:bs1363:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230' target='_blank'>230</a> - *<b>BS1363</b> (Type G) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage' target='_blank'>socket:bs1363:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230' target='_blank'>230</a>
@ -1177,7 +1246,8 @@ This tagrendering has labels
### current-socket:bs1363 ### current-socket:bs1363
The question is `What current do the plugs with <b>BS1363</b> (Type G) offer?` The question is `What current do the plugs with <b>BS1363</b> (Type G) offer?`
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set.
- *<b>BS1363</b> (Type G) outputs at most 13 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current' target='_blank'>socket:bs1363:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13' target='_blank'>13</a> - *<b>BS1363</b> (Type G) outputs at most 13 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current' target='_blank'>socket:bs1363:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13' target='_blank'>13</a>
@ -1188,7 +1258,8 @@ This tagrendering has labels
### power-output-socket:bs1363 ### power-output-socket:bs1363
The question is `What power output does a single plug of type <b>BS1363</b> (Type G) offer?` The question is `What power output does a single plug of type <b>BS1363</b> (Type G) offer?`
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set.
- *<b>BS1363</b> (Type G) outputs at most 3kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output' target='_blank'>socket:bs1363:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW' target='_blank'>3kW</a> - *<b>BS1363</b> (Type G) outputs at most 3kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output' target='_blank'>socket:bs1363:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW' target='_blank'>3kW</a>
@ -1199,7 +1270,8 @@ This tagrendering has labels
### plugs-amount-socket:nema5_15 ### plugs-amount-socket:nema5_15
The question is `How much plugs of type <b>NEMA 5-15</b> (Type B) are available here?` The question is `How much plugs of type <b>NEMA 5-15</b> (Type B) are available here?`
*There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here* is shown if `socket:nema5_15` is set
*There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here* is shown if `socket:nema5_15` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0 This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
This tagrendering has labels This tagrendering has labels
@ -1208,7 +1280,8 @@ This tagrendering has labels
### voltage-socket:nema5_15 ### voltage-socket:nema5_15
The question is `What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?` The question is `What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?`
*<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set
*<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set.
- *<b>NEMA 5-15</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage' target='_blank'>socket:nema5_15:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120' target='_blank'>120</a> - *<b>NEMA 5-15</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage' target='_blank'>socket:nema5_15:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120' target='_blank'>120</a>
@ -1219,7 +1292,8 @@ This tagrendering has labels
### current-socket:nema5_15 ### current-socket:nema5_15
The question is `What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?` The question is `What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?`
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set.
- *<b>NEMA 5-15</b> (Type B) outputs at most 15 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current' target='_blank'>socket:nema5_15:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15' target='_blank'>15</a> - *<b>NEMA 5-15</b> (Type B) outputs at most 15 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current' target='_blank'>socket:nema5_15:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15' target='_blank'>15</a>
@ -1230,7 +1304,8 @@ This tagrendering has labels
### power-output-socket:nema5_15 ### power-output-socket:nema5_15
The question is `What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?` The question is `What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?`
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set.
- *<b>NEMA 5-15</b> (Type B) outputs at most 1.8 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output' target='_blank'>socket:nema5_15:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW' target='_blank'>1.8 kW</a> - *<b>NEMA 5-15</b> (Type B) outputs at most 1.8 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output' target='_blank'>socket:nema5_15:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW' target='_blank'>1.8 kW</a>
@ -1241,7 +1316,8 @@ This tagrendering has labels
### plugs-amount-socket:sev1011_t23 ### plugs-amount-socket:sev1011_t23
The question is `How much plugs of type <b>SEV 1011 T23</b> (Type J) are available here?` The question is `How much plugs of type <b>SEV 1011 T23</b> (Type J) are available here?`
*There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here* is shown if `socket:sev1011_t23` is set
*There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here* is shown if `socket:sev1011_t23` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0 This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
This tagrendering has labels This tagrendering has labels
@ -1250,7 +1326,8 @@ This tagrendering has labels
### voltage-socket:sev1011_t23 ### voltage-socket:sev1011_t23
The question is `What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?` The question is `What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?`
*<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set
*<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set.
- *<b>SEV 1011 T23</b> (Type J) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage' target='_blank'>socket:sev1011_t23:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230' target='_blank'>230</a> - *<b>SEV 1011 T23</b> (Type J) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage' target='_blank'>socket:sev1011_t23:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230' target='_blank'>230</a>
@ -1261,7 +1338,8 @@ This tagrendering has labels
### current-socket:sev1011_t23 ### current-socket:sev1011_t23
The question is `What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?` The question is `What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?`
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set.
- *<b>SEV 1011 T23</b> (Type J) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current' target='_blank'>socket:sev1011_t23:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16' target='_blank'>16</a> - *<b>SEV 1011 T23</b> (Type J) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current' target='_blank'>socket:sev1011_t23:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16' target='_blank'>16</a>
@ -1272,7 +1350,8 @@ This tagrendering has labels
### power-output-socket:sev1011_t23 ### power-output-socket:sev1011_t23
The question is `What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?` The question is `What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?`
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set.
- *<b>SEV 1011 T23</b> (Type J) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output' target='_blank'>socket:sev1011_t23:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW' target='_blank'>3.7 kW</a> - *<b>SEV 1011 T23</b> (Type J) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output' target='_blank'>socket:sev1011_t23:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW' target='_blank'>3.7 kW</a>
@ -1283,7 +1362,8 @@ This tagrendering has labels
### plugs-amount-socket:as3112 ### plugs-amount-socket:as3112
The question is `How much plugs of type <b>AS3112</b> (Type I) are available here?` The question is `How much plugs of type <b>AS3112</b> (Type I) are available here?`
*There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here* is shown if `socket:as3112` is set
*There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here* is shown if `socket:as3112` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0 This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
This tagrendering has labels This tagrendering has labels
@ -1292,7 +1372,8 @@ This tagrendering has labels
### voltage-socket:as3112 ### voltage-socket:as3112
The question is `What voltage do the plugs with <b>AS3112</b> (Type I) offer?` The question is `What voltage do the plugs with <b>AS3112</b> (Type I) offer?`
*<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set
*<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set.
- *<b>AS3112</b> (Type I) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage' target='_blank'>socket:as3112:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230' target='_blank'>230</a> - *<b>AS3112</b> (Type I) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage' target='_blank'>socket:as3112:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230' target='_blank'>230</a>
@ -1303,7 +1384,8 @@ This tagrendering has labels
### current-socket:as3112 ### current-socket:as3112
The question is `What current do the plugs with <b>AS3112</b> (Type I) offer?` The question is `What current do the plugs with <b>AS3112</b> (Type I) offer?`
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set.
- *<b>AS3112</b> (Type I) outputs at most 10 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current' target='_blank'>socket:as3112:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10' target='_blank'>10</a> - *<b>AS3112</b> (Type I) outputs at most 10 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current' target='_blank'>socket:as3112:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10' target='_blank'>10</a>
@ -1314,7 +1396,8 @@ This tagrendering has labels
### power-output-socket:as3112 ### power-output-socket:as3112
The question is `What power output does a single plug of type <b>AS3112</b> (Type I) offer?` The question is `What power output does a single plug of type <b>AS3112</b> (Type I) offer?`
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set.
- *<b>AS3112</b> (Type I) outputs at most 2.3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output' target='_blank'>socket:as3112:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW' target='_blank'>2.3 kW</a> - *<b>AS3112</b> (Type I) outputs at most 2.3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output' target='_blank'>socket:as3112:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW' target='_blank'>2.3 kW</a>
@ -1325,7 +1408,8 @@ This tagrendering has labels
### plugs-amount-socket:nema_5_20 ### plugs-amount-socket:nema_5_20
The question is `How much plugs of type <b>NEMA 5-20</b> (Type B) are available here?` The question is `How much plugs of type <b>NEMA 5-20</b> (Type B) are available here?`
*There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here* is shown if `socket:nema_5_20` is set
*There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here* is shown if `socket:nema_5_20` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0 This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
This tagrendering has labels This tagrendering has labels
@ -1334,7 +1418,8 @@ This tagrendering has labels
### voltage-socket:nema_5_20 ### voltage-socket:nema_5_20
The question is `What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?` The question is `What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?`
*<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set
*<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set.
- *<b>NEMA 5-20</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage' target='_blank'>socket:nema_5_20:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120' target='_blank'>120</a> - *<b>NEMA 5-20</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage' target='_blank'>socket:nema_5_20:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120' target='_blank'>120</a>
@ -1345,7 +1430,8 @@ This tagrendering has labels
### current-socket:nema_5_20 ### current-socket:nema_5_20
The question is `What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?` The question is `What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?`
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set.
- *<b>NEMA 5-20</b> (Type B) outputs at most 20 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current' target='_blank'>socket:nema_5_20:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20' target='_blank'>20</a> - *<b>NEMA 5-20</b> (Type B) outputs at most 20 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current' target='_blank'>socket:nema_5_20:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20' target='_blank'>20</a>
@ -1356,7 +1442,8 @@ This tagrendering has labels
### power-output-socket:nema_5_20 ### power-output-socket:nema_5_20
The question is `What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?` The question is `What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?`
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set.
- *<b>NEMA 5-20</b> (Type B) outputs at most 2.4 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output' target='_blank'>socket:nema_5_20:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW' target='_blank'>2.4 kW</a> - *<b>NEMA 5-20</b> (Type B) outputs at most 2.4 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output' target='_blank'>socket:nema_5_20:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW' target='_blank'>2.4 kW</a>
@ -1367,7 +1454,8 @@ This tagrendering has labels
### OH ### OH
The question is `When is this charging station opened?` The question is `When is this charging station opened?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -1385,7 +1473,8 @@ The question is `Does one have to pay to use this charging station?`
### charge ### charge
The question is `How much does one have to pay to use this charging station?` The question is `How much does one have to pay to use this charging station?`
*Using this charging station costs <b>{charge}</b>* is shown if `charge` is set
*Using this charging station costs <b>{charge}</b>* is shown if `charge` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
@ -1405,7 +1494,8 @@ This tagrendering is only visible in the popup if the following condition is met
### app-name ### app-name
The question is `What is the name of the app used for payment?` The question is `What is the name of the app used for payment?`
*Payment can be done using the app <b>{payment:app}</b>* is shown if `payment:app` is set
*Payment can be done using the app <b>{payment:app}</b>* is shown if `payment:app` is set.
This tagrendering is only visible in the popup if the following condition is met: payment:app~.+ & payment:app!=no This tagrendering is only visible in the popup if the following condition is met: payment:app~.+ & payment:app!=no
@ -1425,14 +1515,16 @@ The question is `What kind of authentication is available at the charging statio
### Auth phone ### Auth phone
The question is `What's the phone number for authentication call or SMS?` The question is `What's the phone number for authentication call or SMS?`
*Authenticate by calling or SMS'ing to <a href='tel:{authentication:phone_call:number}'>{authentication:phone_call:number}</a>* is shown if `authentication:phone_call:number` is set
*Authenticate by calling or SMS'ing to <a href='tel:{authentication:phone_call:number}'>{authentication:phone_call:number}</a>* is shown if `authentication:phone_call:number` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call' target='_blank'>authentication:phone_call</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:authentication:phone_call%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:authentication:short_message' target='_blank'>authentication:short_message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:authentication:short_message%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call' target='_blank'>authentication:phone_call</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:authentication:phone_call%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:authentication:short_message' target='_blank'>authentication:short_message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:authentication:short_message%3Dyes' target='_blank'>yes</a>
### maxstay ### maxstay
The question is `What is the maximum amount of time one is allowed to stay here?` The question is `What is the maximum amount of time one is allowed to stay here?`
*One can stay at most <b>{canonical(maxstay)}</b>* is shown if `maxstay` is set
*One can stay at most <b>{canonical(maxstay)}</b>* is shown if `maxstay` is set.
- *There is no limit to the amount of time one can stay here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a> - *There is no limit to the amount of time one can stay here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a>
@ -1441,7 +1533,8 @@ This tagrendering is only visible in the popup if the following condition is met
### Network ### Network
The question is `Is this charging station part of a network?` The question is `Is this charging station part of a network?`
*Part of the network <b>{network}</b>* is shown if `network` is set
*Part of the network <b>{network}</b>* is shown if `network` is set.
- *Not part of a bigger network, e.g. because the charging station is maintained by a local business* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:no:network' target='_blank'>no:network</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:no:network%3Dyes' target='_blank'>yes</a> - *Not part of a bigger network, e.g. because the charging station is maintained by a local business* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:no:network' target='_blank'>no:network</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:no:network%3Dyes' target='_blank'>yes</a>
- *Not part of a bigger network* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:network' target='_blank'>network</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:network%3Dnone' target='_blank'>none</a>. _This option cannot be chosen as answer_ - *Not part of a bigger network* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:network' target='_blank'>network</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:network%3Dnone' target='_blank'>none</a>. _This option cannot be chosen as answer_
@ -1455,28 +1548,33 @@ The question is `Is this charging station part of a network?`
### Operator ### Operator
The question is `Who is the operator of this charging station?` The question is `Who is the operator of this charging station?`
*This charging station is operated by {operator}* is shown if `operator` is set
*This charging station is operated by {operator}* is shown if `operator` is set.
- *Actually, {operator} is the network* is shown if with network= - *Actually, {operator} is the network* is shown if with network=
### phone ### phone
The question is `What number can one call if there is a problem with this charging station?` The question is `What number can one call if there is a problem with this charging station?`
*In case of problems, call <a href='tel:{phone}'>{phone}</a>* is shown if `phone` is set
*In case of problems, call <a href='tel:{phone}'>{phone}</a>* is shown if `phone` is set.
### email ### email
The question is `What is the email address of the operator?` The question is `What is the email address of the operator?`
*In case of problems, send an email to <a href='mailto:{email}'>{email}</a>* is shown if `email` is set
*In case of problems, send an email to <a href='mailto:{email}'>{email}</a>* is shown if `email` is set.
### website ### website
The question is `What is the website where one can find more information about this charging station?` The question is `What is the website where one can find more information about this charging station?`
*More info on <a href='{website}'>{website}</a>* is shown if `website` is set
*More info on <a href='{website}'>{website}</a>* is shown if `website` is set.
### repeated ### repeated
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {repeat_on}.* *Multiple, identical objects can be found on floors {repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+
@ -1486,7 +1584,8 @@ This tagrendering has labels
### single_level ### single_level
The question is `On what level is this feature located?` The question is `On what level is this feature located?`
*Located on the {level}th floor* is shown if `level` is set
*Located on the {level}th floor* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -1500,7 +1599,8 @@ This tagrendering has labels
### ref ### ref
The question is `What is the reference number of this charging station?` The question is `What is the reference number of this charging station?`
*Reference number is <b>{ref}</b>* is shown if `ref` is set
*Reference number is <b>{ref}</b>* is shown if `ref` is set.
This tagrendering is only visible in the popup if the following condition is met: network~.+ This tagrendering is only visible in the popup if the following condition is met: network~.+
@ -1524,26 +1624,31 @@ The question is `Does one have to pay a parking fee while charging?`
### questions ### questions
Show the questions block at this location Show the questions block at this location
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions()}* *{questions()}*
### questions-technical ### questions-technical
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<h3>Technical questions</h3>The questions below are very technical. Feel free to ignore them<br/>{questions(technical)}* *<h3>Technical questions</h3>The questions below are very technical. Feel free to ignore them<br/>{questions(technical)}*
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -374,6 +374,7 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### Type ### Type
@ -389,7 +390,8 @@ The question is `Which vehicles are allowed to charge here?`
### access ### access
The question is `Who is allowed to use this charging station?` The question is `Who is allowed to use this charging station?`
*Access is {access}* is shown if `access` is set
*Access is {access}* is shown if `access` is set.
- *Anyone can use this charging station (payment might be needed)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a> - *Anyone can use this charging station (payment might be needed)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
- *Anyone can use this charging station (payment might be needed)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>. _This option cannot be chosen as answer_ - *Anyone can use this charging station (payment might be needed)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>. _This option cannot be chosen as answer_
@ -401,7 +403,8 @@ The question is `Who is allowed to use this charging station?`
### capacity ### capacity
The question is `How much vehicles can be charged here at the same time?` The question is `How much vehicles can be charged here at the same time?`
*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set
*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set.
### Available_charging_stations (generated) ### Available_charging_stations (generated)
@ -453,7 +456,8 @@ The question is `Which charging connections are available here?`
### plugs-amount-socket:schuko ### plugs-amount-socket:schuko
The question is `How much plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) are available here?` The question is `How much plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) are available here?`
*There are <b class='text-xl'>{socket:schuko}</b> plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set
*There are <b class='text-xl'>{socket:schuko}</b> plugs of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0 This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0
This tagrendering has labels This tagrendering has labels
@ -462,7 +466,8 @@ This tagrendering has labels
### voltage-socket:schuko ### voltage-socket:schuko
The question is `What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?` The question is `What voltage do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set.
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage' target='_blank'>socket:schuko:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230' target='_blank'>230</a> - *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage' target='_blank'>socket:schuko:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:voltage%3D230' target='_blank'>230</a>
@ -473,7 +478,8 @@ This tagrendering has labels
### current-socket:schuko ### current-socket:schuko
The question is `What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?` The question is `What current do the plugs with <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set.
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current' target='_blank'>socket:schuko:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16' target='_blank'>16</a> - *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current' target='_blank'>socket:schuko:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:current%3D16' target='_blank'>16</a>
@ -484,7 +490,8 @@ This tagrendering has labels
### power-output-socket:schuko ### power-output-socket:schuko
The question is `What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?` The question is `What power output does a single plug of type <b>Schuko wall plug</b> without ground pin (CEE7/4 type F) offer?`
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set
*<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set.
- *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output' target='_blank'>socket:schuko:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW' target='_blank'>3.6 kW</a> - *<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output' target='_blank'>socket:schuko:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:schuko:output%3D3.6 kW' target='_blank'>3.6 kW</a>
@ -495,7 +502,8 @@ This tagrendering has labels
### plugs-amount-socket:typee ### plugs-amount-socket:typee
The question is `How much plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) are available here?` The question is `How much plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) are available here?`
*There are <b class='text-xl'>{socket:typee}</b> plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set
*There are <b class='text-xl'>{socket:typee}</b> plugs of type <b>European wall plug</b> with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0 This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0
This tagrendering has labels This tagrendering has labels
@ -504,7 +512,8 @@ This tagrendering has labels
### voltage-socket:typee ### voltage-socket:typee
The question is `What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?` The question is `What voltage do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set.
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage' target='_blank'>socket:typee:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230' target='_blank'>230</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage' target='_blank'>socket:typee:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:voltage%3D230' target='_blank'>230</a>
@ -515,7 +524,8 @@ This tagrendering has labels
### current-socket:typee ### current-socket:typee
The question is `What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?` The question is `What current do the plugs with <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set.
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:current' target='_blank'>socket:typee:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16' target='_blank'>16</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:current' target='_blank'>socket:typee:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:current%3D16' target='_blank'>16</a>
@ -526,7 +536,8 @@ This tagrendering has labels
### power-output-socket:typee ### power-output-socket:typee
The question is `What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?` The question is `What power output does a single plug of type <b>European wall plug</b> with ground pin (CEE7/4 type E) offer?`
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set
*<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set.
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW' target='_blank'>3 kW</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D3 kW' target='_blank'>3 kW</a>
- *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW' target='_blank'>22 kW</a> - *<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:typee:output' target='_blank'>socket:typee:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:typee:output%3D22 kW' target='_blank'>22 kW</a>
@ -538,7 +549,8 @@ This tagrendering has labels
### plugs-amount-socket:chademo ### plugs-amount-socket:chademo
The question is `How much plugs of type <b>Chademo</b> are available here?` The question is `How much plugs of type <b>Chademo</b> are available here?`
*There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here* is shown if `socket:chademo` is set
*There are <b class='text-xl'>{socket:chademo}</b> plugs of type <b>Chademo</b> available here* is shown if `socket:chademo` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0 This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0
This tagrendering has labels This tagrendering has labels
@ -547,7 +559,8 @@ This tagrendering has labels
### voltage-socket:chademo ### voltage-socket:chademo
The question is `What voltage do the plugs with <b>Chademo</b> offer?` The question is `What voltage do the plugs with <b>Chademo</b> offer?`
*<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set
*<b>Chademo</b> outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set.
- *<b>Chademo</b> outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage' target='_blank'>socket:chademo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500' target='_blank'>500</a> - *<b>Chademo</b> outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage' target='_blank'>socket:chademo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:voltage%3D500' target='_blank'>500</a>
@ -558,7 +571,8 @@ This tagrendering has labels
### current-socket:chademo ### current-socket:chademo
The question is `What current do the plugs with <b>Chademo</b> offer?` The question is `What current do the plugs with <b>Chademo</b> offer?`
*<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set
*<b>Chademo</b> outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set.
- *<b>Chademo</b> outputs at most 120 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current' target='_blank'>socket:chademo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120' target='_blank'>120</a> - *<b>Chademo</b> outputs at most 120 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current' target='_blank'>socket:chademo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:current%3D120' target='_blank'>120</a>
@ -569,7 +583,8 @@ This tagrendering has labels
### power-output-socket:chademo ### power-output-socket:chademo
The question is `What power output does a single plug of type <b>Chademo</b> offer?` The question is `What power output does a single plug of type <b>Chademo</b> offer?`
*<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set
*<b>Chademo</b> outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set.
- *<b>Chademo</b> outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output' target='_blank'>socket:chademo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Chademo</b> outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output' target='_blank'>socket:chademo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:chademo:output%3D50 kW' target='_blank'>50 kW</a>
@ -580,7 +595,8 @@ This tagrendering has labels
### plugs-amount-socket:type1_cable ### plugs-amount-socket:type1_cable
The question is `How much plugs of type <b>Type 1 with cable</b> (J1772) are available here?` The question is `How much plugs of type <b>Type 1 with cable</b> (J1772) are available here?`
*There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here* is shown if `socket:type1_cable` is set
*There are <b class='text-xl'>{socket:type1_cable}</b> plugs of type <b>Type 1 with cable</b> (J1772) available here* is shown if `socket:type1_cable` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0
This tagrendering has labels This tagrendering has labels
@ -589,7 +605,8 @@ This tagrendering has labels
### voltage-socket:type1_cable ### voltage-socket:type1_cable
The question is `What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?` The question is `What voltage do the plugs with <b>Type 1 with cable</b> (J1772) offer?`
*<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set
*<b>Type 1 with cable</b> (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set.
- *<b>Type 1 with cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200' target='_blank'>200</a> - *<b>Type 1 with cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D200' target='_blank'>200</a>
- *<b>Type 1 with cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240' target='_blank'>240</a> - *<b>Type 1 with cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage' target='_blank'>socket:type1_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:voltage%3D240' target='_blank'>240</a>
@ -601,7 +618,8 @@ This tagrendering has labels
### current-socket:type1_cable ### current-socket:type1_cable
The question is `What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?` The question is `What current do the plugs with <b>Type 1 with cable</b> (J1772) offer?`
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set.
- *<b>Type 1 with cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current' target='_blank'>socket:type1_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32' target='_blank'>32</a> - *<b>Type 1 with cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current' target='_blank'>socket:type1_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:current%3D32' target='_blank'>32</a>
@ -612,7 +630,8 @@ This tagrendering has labels
### power-output-socket:type1_cable ### power-output-socket:type1_cable
The question is `What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?` The question is `What power output does a single plug of type <b>Type 1 with cable</b> (J1772) offer?`
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set
*<b>Type 1 with cable</b> (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set.
- *<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW' target='_blank'>3.7 kW</a> - *<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D3.7 kW' target='_blank'>3.7 kW</a>
- *<b>Type 1 with cable</b> (J1772) outputs at most 7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW' target='_blank'>7 kW</a> - *<b>Type 1 with cable</b> (J1772) outputs at most 7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output' target='_blank'>socket:type1_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_cable:output%3D7 kW' target='_blank'>7 kW</a>
@ -624,7 +643,8 @@ This tagrendering has labels
### plugs-amount-socket:type1 ### plugs-amount-socket:type1
The question is `How much plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) are available here?` The question is `How much plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) are available here?`
*There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here* is shown if `socket:type1` is set
*There are <b class='text-xl'>{socket:type1}</b> plugs of type <b>Type 1 <i>without</i> cable</b> (J1772) available here* is shown if `socket:type1` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0
This tagrendering has labels This tagrendering has labels
@ -633,7 +653,8 @@ This tagrendering has labels
### voltage-socket:type1 ### voltage-socket:type1
The question is `What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?` The question is `What voltage do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set.
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200' target='_blank'>200</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D200' target='_blank'>200</a>
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240' target='_blank'>240</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage' target='_blank'>socket:type1:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:voltage%3D240' target='_blank'>240</a>
@ -645,7 +666,8 @@ This tagrendering has labels
### current-socket:type1 ### current-socket:type1
The question is `What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?` The question is `What current do the plugs with <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set.
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:current' target='_blank'>socket:type1:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32' target='_blank'>32</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:current' target='_blank'>socket:type1:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:current%3D32' target='_blank'>32</a>
@ -656,7 +678,8 @@ This tagrendering has labels
### power-output-socket:type1 ### power-output-socket:type1
The question is `What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?` The question is `What power output does a single plug of type <b>Type 1 <i>without</i> cable</b> (J1772) offer?`
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set
*<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set.
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW' target='_blank'>3.7 kW</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D3.7 kW' target='_blank'>3.7 kW</a>
- *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW' target='_blank'>6.6 kW</a> - *<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1:output' target='_blank'>socket:type1:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1:output%3D6.6 kW' target='_blank'>6.6 kW</a>
@ -670,7 +693,8 @@ This tagrendering has labels
### plugs-amount-socket:type1_combo ### plugs-amount-socket:type1_combo
The question is `How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are available here?` The question is `How much plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) are available here?`
*There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set
*There are <b class='text-xl'>{socket:type1_combo}</b> plugs of type <b>Type 1 CCS</b> (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0
This tagrendering has labels This tagrendering has labels
@ -679,7 +703,8 @@ This tagrendering has labels
### voltage-socket:type1_combo ### voltage-socket:type1_combo
The question is `What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?` The question is `What voltage do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set.
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400' target='_blank'>400</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D400' target='_blank'>400</a>
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000' target='_blank'>1000</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage' target='_blank'>socket:type1_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:voltage%3D1000' target='_blank'>1000</a>
@ -691,7 +716,8 @@ This tagrendering has labels
### current-socket:type1_combo ### current-socket:type1_combo
The question is `What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?` The question is `What current do the plugs with <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set.
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50' target='_blank'>50</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D50' target='_blank'>50</a>
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125' target='_blank'>125</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current' target='_blank'>socket:type1_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:current%3D125' target='_blank'>125</a>
@ -703,7 +729,8 @@ This tagrendering has labels
### power-output-socket:type1_combo ### power-output-socket:type1_combo
The question is `What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?` The question is `What power output does a single plug of type <b>Type 1 CCS</b> (aka Type 1 Combo) offer?`
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set
*<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set.
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D50 kW' target='_blank'>50 kW</a>
- *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW' target='_blank'>62.5 kW</a> - *<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output' target='_blank'>socket:type1_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type1_combo:output%3D62.5 kW' target='_blank'>62.5 kW</a>
@ -717,7 +744,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_supercharger ### plugs-amount-socket:tesla_supercharger
The question is `How much plugs of type <b>Tesla Supercharger</b> are available here?` The question is `How much plugs of type <b>Tesla Supercharger</b> are available here?`
*There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here* is shown if `socket:tesla_supercharger` is set
*There are <b class='text-xl'>{socket:tesla_supercharger}</b> plugs of type <b>Tesla Supercharger</b> available here* is shown if `socket:tesla_supercharger` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0
This tagrendering has labels This tagrendering has labels
@ -726,7 +754,8 @@ This tagrendering has labels
### voltage-socket:tesla_supercharger ### voltage-socket:tesla_supercharger
The question is `What voltage do the plugs with <b>Tesla Supercharger</b> offer?` The question is `What voltage do the plugs with <b>Tesla Supercharger</b> offer?`
*<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set
*<b>Tesla Supercharger</b> outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set.
- *<b>Tesla Supercharger</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage' target='_blank'>socket:tesla_supercharger:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480' target='_blank'>480</a> - *<b>Tesla Supercharger</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage' target='_blank'>socket:tesla_supercharger:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:voltage%3D480' target='_blank'>480</a>
@ -737,7 +766,8 @@ This tagrendering has labels
### current-socket:tesla_supercharger ### current-socket:tesla_supercharger
The question is `What current do the plugs with <b>Tesla Supercharger</b> offer?` The question is `What current do the plugs with <b>Tesla Supercharger</b> offer?`
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set.
- *<b>Tesla Supercharger</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125' target='_blank'>125</a> - *<b>Tesla Supercharger</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D125' target='_blank'>125</a>
- *<b>Tesla Supercharger</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350' target='_blank'>350</a> - *<b>Tesla Supercharger</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current' target='_blank'>socket:tesla_supercharger:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:current%3D350' target='_blank'>350</a>
@ -749,7 +779,8 @@ This tagrendering has labels
### power-output-socket:tesla_supercharger ### power-output-socket:tesla_supercharger
The question is `What power output does a single plug of type <b>Tesla Supercharger</b> offer?` The question is `What power output does a single plug of type <b>Tesla Supercharger</b> offer?`
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set
*<b>Tesla Supercharger</b> outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set.
- *<b>Tesla Supercharger</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW' target='_blank'>120 kW</a> - *<b>Tesla Supercharger</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D120 kW' target='_blank'>120 kW</a>
- *<b>Tesla Supercharger</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW' target='_blank'>150 kW</a> - *<b>Tesla Supercharger</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output' target='_blank'>socket:tesla_supercharger:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger:output%3D150 kW' target='_blank'>150 kW</a>
@ -762,7 +793,8 @@ This tagrendering has labels
### plugs-amount-socket:type2 ### plugs-amount-socket:type2
The question is `How much plugs of type <b>Type 2</b> (mennekes) are available here?` The question is `How much plugs of type <b>Type 2</b> (mennekes) are available here?`
*There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here* is shown if `socket:type2` is set
*There are <b class='text-xl'>{socket:type2}</b> plugs of type <b>Type 2</b> (mennekes) available here* is shown if `socket:type2` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0
This tagrendering has labels This tagrendering has labels
@ -771,7 +803,8 @@ This tagrendering has labels
### voltage-socket:type2 ### voltage-socket:type2
The question is `What voltage do the plugs with <b>Type 2</b> (mennekes) offer?` The question is `What voltage do the plugs with <b>Type 2</b> (mennekes) offer?`
*<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set
*<b>Type 2</b> (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set.
- *<b>Type 2</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230' target='_blank'>230</a> - *<b>Type 2</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D230' target='_blank'>230</a>
- *<b>Type 2</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400' target='_blank'>400</a> - *<b>Type 2</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage' target='_blank'>socket:type2:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:voltage%3D400' target='_blank'>400</a>
@ -783,7 +816,8 @@ This tagrendering has labels
### current-socket:type2 ### current-socket:type2
The question is `What current do the plugs with <b>Type 2</b> (mennekes) offer?` The question is `What current do the plugs with <b>Type 2</b> (mennekes) offer?`
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set.
- *<b>Type 2</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16' target='_blank'>16</a> - *<b>Type 2</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D16' target='_blank'>16</a>
- *<b>Type 2</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32' target='_blank'>32</a> - *<b>Type 2</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:current' target='_blank'>socket:type2:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:current%3D32' target='_blank'>32</a>
@ -795,7 +829,8 @@ This tagrendering has labels
### power-output-socket:type2 ### power-output-socket:type2
The question is `What power output does a single plug of type <b>Type 2</b> (mennekes) offer?` The question is `What power output does a single plug of type <b>Type 2</b> (mennekes) offer?`
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set
*<b>Type 2</b> (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set.
- *<b>Type 2</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW' target='_blank'>11 kW</a> - *<b>Type 2</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D11 kW' target='_blank'>11 kW</a>
- *<b>Type 2</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW' target='_blank'>22 kW</a> - *<b>Type 2</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2:output' target='_blank'>socket:type2:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2:output%3D22 kW' target='_blank'>22 kW</a>
@ -807,7 +842,8 @@ This tagrendering has labels
### plugs-amount-socket:type2_combo ### plugs-amount-socket:type2_combo
The question is `How much plugs of type <b>Type 2 CCS</b> (mennekes) are available here?` The question is `How much plugs of type <b>Type 2 CCS</b> (mennekes) are available here?`
*There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here* is shown if `socket:type2_combo` is set
*There are <b class='text-xl'>{socket:type2_combo}</b> plugs of type <b>Type 2 CCS</b> (mennekes) available here* is shown if `socket:type2_combo` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0
This tagrendering has labels This tagrendering has labels
@ -816,7 +852,8 @@ This tagrendering has labels
### voltage-socket:type2_combo ### voltage-socket:type2_combo
The question is `What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?` The question is `What voltage do the plugs with <b>Type 2 CCS</b> (mennekes) offer?`
*<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set
*<b>Type 2 CCS</b> (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set.
- *<b>Type 2 CCS</b> (mennekes) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500' target='_blank'>500</a> - *<b>Type 2 CCS</b> (mennekes) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D500' target='_blank'>500</a>
- *<b>Type 2 CCS</b> (mennekes) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920' target='_blank'>920</a> - *<b>Type 2 CCS</b> (mennekes) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage' target='_blank'>socket:type2_combo:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:voltage%3D920' target='_blank'>920</a>
@ -828,7 +865,8 @@ This tagrendering has labels
### current-socket:type2_combo ### current-socket:type2_combo
The question is `What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?` The question is `What current do the plugs with <b>Type 2 CCS</b> (mennekes) offer?`
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set.
- *<b>Type 2 CCS</b> (mennekes) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125' target='_blank'>125</a> - *<b>Type 2 CCS</b> (mennekes) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D125' target='_blank'>125</a>
- *<b>Type 2 CCS</b> (mennekes) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350' target='_blank'>350</a> - *<b>Type 2 CCS</b> (mennekes) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current' target='_blank'>socket:type2_combo:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:current%3D350' target='_blank'>350</a>
@ -840,7 +878,8 @@ This tagrendering has labels
### power-output-socket:type2_combo ### power-output-socket:type2_combo
The question is `What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?` The question is `What power output does a single plug of type <b>Type 2 CCS</b> (mennekes) offer?`
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set
*<b>Type 2 CCS</b> (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set.
- *<b>Type 2 CCS</b> (mennekes) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output' target='_blank'>socket:type2_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Type 2 CCS</b> (mennekes) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output' target='_blank'>socket:type2_combo:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_combo:output%3D50 kW' target='_blank'>50 kW</a>
@ -851,7 +890,8 @@ This tagrendering has labels
### plugs-amount-socket:type2_cable ### plugs-amount-socket:type2_cable
The question is `How much plugs of type <b>Type 2 with cable</b> (mennekes) are available here?` The question is `How much plugs of type <b>Type 2 with cable</b> (mennekes) are available here?`
*There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here* is shown if `socket:type2_cable` is set
*There are <b class='text-xl'>{socket:type2_cable}</b> plugs of type <b>Type 2 with cable</b> (mennekes) available here* is shown if `socket:type2_cable` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0 This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0
This tagrendering has labels This tagrendering has labels
@ -860,7 +900,8 @@ This tagrendering has labels
### voltage-socket:type2_cable ### voltage-socket:type2_cable
The question is `What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?` The question is `What voltage do the plugs with <b>Type 2 with cable</b> (mennekes) offer?`
*<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set
*<b>Type 2 with cable</b> (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set.
- *<b>Type 2 with cable</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230' target='_blank'>230</a> - *<b>Type 2 with cable</b> (mennekes) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D230' target='_blank'>230</a>
- *<b>Type 2 with cable</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400' target='_blank'>400</a> - *<b>Type 2 with cable</b> (mennekes) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage' target='_blank'>socket:type2_cable:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:voltage%3D400' target='_blank'>400</a>
@ -872,7 +913,8 @@ This tagrendering has labels
### current-socket:type2_cable ### current-socket:type2_cable
The question is `What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?` The question is `What current do the plugs with <b>Type 2 with cable</b> (mennekes) offer?`
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set.
- *<b>Type 2 with cable</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16' target='_blank'>16</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D16' target='_blank'>16</a>
- *<b>Type 2 with cable</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32' target='_blank'>32</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current' target='_blank'>socket:type2_cable:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:current%3D32' target='_blank'>32</a>
@ -884,7 +926,8 @@ This tagrendering has labels
### power-output-socket:type2_cable ### power-output-socket:type2_cable
The question is `What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?` The question is `What power output does a single plug of type <b>Type 2 with cable</b> (mennekes) offer?`
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set
*<b>Type 2 with cable</b> (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set.
- *<b>Type 2 with cable</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW' target='_blank'>11 kW</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D11 kW' target='_blank'>11 kW</a>
- *<b>Type 2 with cable</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW' target='_blank'>22 kW</a> - *<b>Type 2 with cable</b> (mennekes) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output' target='_blank'>socket:type2_cable:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:type2_cable:output%3D22 kW' target='_blank'>22 kW</a>
@ -896,7 +939,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_supercharger_ccs ### plugs-amount-socket:tesla_supercharger_ccs
The question is `How much plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) are available here?` The question is `How much plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) are available here?`
*There are <b class='text-xl'>{socket:tesla_supercharger_ccs}</b> plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set
*There are <b class='text-xl'>{socket:tesla_supercharger_ccs}</b> plugs of type <b>Tesla Supercharger CCS</b> (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0
This tagrendering has labels This tagrendering has labels
@ -905,7 +949,8 @@ This tagrendering has labels
### voltage-socket:tesla_supercharger_ccs ### voltage-socket:tesla_supercharger_ccs
The question is `What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?` The question is `What voltage do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set.
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500' target='_blank'>500</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D500' target='_blank'>500</a>
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920' target='_blank'>920</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage' target='_blank'>socket:tesla_supercharger_ccs:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:voltage%3D920' target='_blank'>920</a>
@ -917,7 +962,8 @@ This tagrendering has labels
### current-socket:tesla_supercharger_ccs ### current-socket:tesla_supercharger_ccs
The question is `What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?` The question is `What current do the plugs with <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set.
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125' target='_blank'>125</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D125' target='_blank'>125</a>
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350' target='_blank'>350</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current' target='_blank'>socket:tesla_supercharger_ccs:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:current%3D350' target='_blank'>350</a>
@ -929,7 +975,8 @@ This tagrendering has labels
### power-output-socket:tesla_supercharger_ccs ### power-output-socket:tesla_supercharger_ccs
The question is `What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?` The question is `What power output does a single plug of type <b>Tesla Supercharger CCS</b> (a branded type2_css) offer?`
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set
*<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set.
- *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output' target='_blank'>socket:tesla_supercharger_ccs:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW' target='_blank'>50 kW</a> - *<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output' target='_blank'>socket:tesla_supercharger_ccs:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_supercharger_ccs:output%3D50 kW' target='_blank'>50 kW</a>
@ -940,7 +987,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_destination_us ### plugs-amount-socket:tesla_destination_us
The question is `How much plugs of type <b>Tesla Supercharger (destination)</b> are available here?` The question is `How much plugs of type <b>Tesla Supercharger (destination)</b> are available here?`
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here* is shown if `socket:tesla_destination` is set
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla Supercharger (destination)</b> available here* is shown if `socket:tesla_destination` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
This tagrendering has labels This tagrendering has labels
@ -949,7 +997,8 @@ This tagrendering has labels
### voltage-socket:tesla_destination_us ### voltage-socket:tesla_destination_us
The question is `What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?` The question is `What voltage do the plugs with <b>Tesla Supercharger (destination)</b> offer?`
*<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set
*<b>Tesla Supercharger (destination)</b> outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set.
- *<b>Tesla Supercharger (destination)</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480' target='_blank'>480</a> - *<b>Tesla Supercharger (destination)</b> outputs 480 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D480' target='_blank'>480</a>
@ -960,7 +1009,8 @@ This tagrendering has labels
### current-socket:tesla_destination_us ### current-socket:tesla_destination_us
The question is `What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?` The question is `What current do the plugs with <b>Tesla Supercharger (destination)</b> offer?`
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set.
- *<b>Tesla Supercharger (destination)</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125' target='_blank'>125</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 125 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D125' target='_blank'>125</a>
- *<b>Tesla Supercharger (destination)</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350' target='_blank'>350</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 350 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D350' target='_blank'>350</a>
@ -972,7 +1022,8 @@ This tagrendering has labels
### power-output-socket:tesla_destination_us ### power-output-socket:tesla_destination_us
The question is `What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?` The question is `What power output does a single plug of type <b>Tesla Supercharger (destination)</b> offer?`
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set
*<b>Tesla Supercharger (destination)</b> outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set.
- *<b>Tesla Supercharger (destination)</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW' target='_blank'>120 kW</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 120 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D120 kW' target='_blank'>120 kW</a>
- *<b>Tesla Supercharger (destination)</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW' target='_blank'>150 kW</a> - *<b>Tesla Supercharger (destination)</b> outputs at most 150 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D150 kW' target='_blank'>150 kW</a>
@ -985,7 +1036,8 @@ This tagrendering has labels
### plugs-amount-socket:tesla_destination ### plugs-amount-socket:tesla_destination
The question is `How much plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) are available here?` The question is `How much plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) are available here?`
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set
*There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0
This tagrendering has labels This tagrendering has labels
@ -994,7 +1046,8 @@ This tagrendering has labels
### voltage-socket:tesla_destination ### voltage-socket:tesla_destination
The question is `What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?` The question is `What voltage do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set.
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230' target='_blank'>230</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D230' target='_blank'>230</a>
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400' target='_blank'>400</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage' target='_blank'>socket:tesla_destination:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:voltage%3D400' target='_blank'>400</a>
@ -1006,7 +1059,8 @@ This tagrendering has labels
### current-socket:tesla_destination ### current-socket:tesla_destination
The question is `What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?` The question is `What current do the plugs with <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set.
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16' target='_blank'>16</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D16' target='_blank'>16</a>
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32' target='_blank'>32</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current' target='_blank'>socket:tesla_destination:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:current%3D32' target='_blank'>32</a>
@ -1018,7 +1072,8 @@ This tagrendering has labels
### power-output-socket:tesla_destination ### power-output-socket:tesla_destination
The question is `What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?` The question is `What power output does a single plug of type <b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) offer?`
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set
*<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set.
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW' target='_blank'>11 kW</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D11 kW' target='_blank'>11 kW</a>
- *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW' target='_blank'>22 kW</a> - *<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output' target='_blank'>socket:tesla_destination:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:tesla_destination:output%3D22 kW' target='_blank'>22 kW</a>
@ -1030,7 +1085,8 @@ This tagrendering has labels
### plugs-amount-socket:USB-A ### plugs-amount-socket:USB-A
The question is `How much plugs of type <b>USB</b> to charge phones and small electronics are available here?` The question is `How much plugs of type <b>USB</b> to charge phones and small electronics are available here?`
*There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here* is shown if `socket:USB-A` is set
*There are <b class='text-xl'>{socket:USB-A}</b> plugs of type <b>USB</b> to charge phones and small electronics available here* is shown if `socket:USB-A` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0 This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0
This tagrendering has labels This tagrendering has labels
@ -1039,7 +1095,8 @@ This tagrendering has labels
### voltage-socket:USB-A ### voltage-socket:USB-A
The question is `What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?` The question is `What voltage do the plugs with <b>USB</b> to charge phones and small electronics offer?`
*<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set
*<b>USB</b> to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set.
- *<b>USB</b> to charge phones and small electronics outputs 5 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage' target='_blank'>socket:USB-A:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5' target='_blank'>5</a> - *<b>USB</b> to charge phones and small electronics outputs 5 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage' target='_blank'>socket:USB-A:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:voltage%3D5' target='_blank'>5</a>
@ -1050,7 +1107,8 @@ This tagrendering has labels
### current-socket:USB-A ### current-socket:USB-A
The question is `What current do the plugs with <b>USB</b> to charge phones and small electronics offer?` The question is `What current do the plugs with <b>USB</b> to charge phones and small electronics offer?`
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set.
- *<b>USB</b> to charge phones and small electronics outputs at most 1 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1' target='_blank'>1</a> - *<b>USB</b> to charge phones and small electronics outputs at most 1 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D1' target='_blank'>1</a>
- *<b>USB</b> to charge phones and small electronics outputs at most 2 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2' target='_blank'>2</a> - *<b>USB</b> to charge phones and small electronics outputs at most 2 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current' target='_blank'>socket:USB-A:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:current%3D2' target='_blank'>2</a>
@ -1062,7 +1120,8 @@ This tagrendering has labels
### power-output-socket:USB-A ### power-output-socket:USB-A
The question is `What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?` The question is `What power output does a single plug of type <b>USB</b> to charge phones and small electronics offer?`
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set
*<b>USB</b> to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set.
- *<b>USB</b> to charge phones and small electronics outputs at most 5W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W' target='_blank'>5W</a> - *<b>USB</b> to charge phones and small electronics outputs at most 5W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D5W' target='_blank'>5W</a>
- *<b>USB</b> to charge phones and small electronics outputs at most 10W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W' target='_blank'>10W</a> - *<b>USB</b> to charge phones and small electronics outputs at most 10W* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output' target='_blank'>socket:USB-A:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:USB-A:output%3D10W' target='_blank'>10W</a>
@ -1074,7 +1133,8 @@ This tagrendering has labels
### plugs-amount-socket:bosch_3pin ### plugs-amount-socket:bosch_3pin
The question is `How much plugs of type <b>Bosch Active Connect with 3 pins</b> and cable are available here?` The question is `How much plugs of type <b>Bosch Active Connect with 3 pins</b> and cable are available here?`
*There are <b class='text-xl'>{socket:bosch_3pin}</b> plugs of type <b>Bosch Active Connect with 3 pins</b> and cable available here* is shown if `socket:bosch_3pin` is set
*There are <b class='text-xl'>{socket:bosch_3pin}</b> plugs of type <b>Bosch Active Connect with 3 pins</b> and cable available here* is shown if `socket:bosch_3pin` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1083,7 +1143,8 @@ This tagrendering has labels
### voltage-socket:bosch_3pin ### voltage-socket:bosch_3pin
The question is `What voltage do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?` The question is `What voltage do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?`
*<b>Bosch Active Connect with 3 pins</b> and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set
*<b>Bosch Active Connect with 3 pins</b> and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1092,7 +1153,8 @@ This tagrendering has labels
### current-socket:bosch_3pin ### current-socket:bosch_3pin
The question is `What current do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?` The question is `What current do the plugs with <b>Bosch Active Connect with 3 pins</b> and cable offer?`
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1101,7 +1163,8 @@ This tagrendering has labels
### power-output-socket:bosch_3pin ### power-output-socket:bosch_3pin
The question is `What power output does a single plug of type <b>Bosch Active Connect with 3 pins</b> and cable offer?` The question is `What power output does a single plug of type <b>Bosch Active Connect with 3 pins</b> and cable offer?`
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set
*<b>Bosch Active Connect with 3 pins</b> and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0
This tagrendering has labels This tagrendering has labels
@ -1110,7 +1173,8 @@ This tagrendering has labels
### plugs-amount-socket:bosch_5pin ### plugs-amount-socket:bosch_5pin
The question is `How much plugs of type <b>Bosch Active Connect with 5 pins</b> and cable are available here?` The question is `How much plugs of type <b>Bosch Active Connect with 5 pins</b> and cable are available here?`
*There are <b class='text-xl'>{socket:bosch_5pin}</b> plugs of type <b>Bosch Active Connect with 5 pins</b> and cable available here* is shown if `socket:bosch_5pin` is set
*There are <b class='text-xl'>{socket:bosch_5pin}</b> plugs of type <b>Bosch Active Connect with 5 pins</b> and cable available here* is shown if `socket:bosch_5pin` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1119,7 +1183,8 @@ This tagrendering has labels
### voltage-socket:bosch_5pin ### voltage-socket:bosch_5pin
The question is `What voltage do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?` The question is `What voltage do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?`
*<b>Bosch Active Connect with 5 pins</b> and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set
*<b>Bosch Active Connect with 5 pins</b> and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1128,7 +1193,8 @@ This tagrendering has labels
### current-socket:bosch_5pin ### current-socket:bosch_5pin
The question is `What current do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?` The question is `What current do the plugs with <b>Bosch Active Connect with 5 pins</b> and cable offer?`
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1137,7 +1203,8 @@ This tagrendering has labels
### power-output-socket:bosch_5pin ### power-output-socket:bosch_5pin
The question is `What power output does a single plug of type <b>Bosch Active Connect with 5 pins</b> and cable offer?` The question is `What power output does a single plug of type <b>Bosch Active Connect with 5 pins</b> and cable offer?`
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set
*<b>Bosch Active Connect with 5 pins</b> and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0
This tagrendering has labels This tagrendering has labels
@ -1146,7 +1213,8 @@ This tagrendering has labels
### plugs-amount-socket:bs1363 ### plugs-amount-socket:bs1363
The question is `How much plugs of type <b>BS1363</b> (Type G) are available here?` The question is `How much plugs of type <b>BS1363</b> (Type G) are available here?`
*There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here* is shown if `socket:bs1363` is set
*There are <b class='text-xl'>{socket:bs1363}</b> plugs of type <b>BS1363</b> (Type G) available here* is shown if `socket:bs1363` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0 This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0
This tagrendering has labels This tagrendering has labels
@ -1155,7 +1223,8 @@ This tagrendering has labels
### voltage-socket:bs1363 ### voltage-socket:bs1363
The question is `What voltage do the plugs with <b>BS1363</b> (Type G) offer?` The question is `What voltage do the plugs with <b>BS1363</b> (Type G) offer?`
*<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set
*<b>BS1363</b> (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set.
- *<b>BS1363</b> (Type G) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage' target='_blank'>socket:bs1363:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230' target='_blank'>230</a> - *<b>BS1363</b> (Type G) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:voltage' target='_blank'>socket:bs1363:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:voltage%3D230' target='_blank'>230</a>
@ -1166,7 +1235,8 @@ This tagrendering has labels
### current-socket:bs1363 ### current-socket:bs1363
The question is `What current do the plugs with <b>BS1363</b> (Type G) offer?` The question is `What current do the plugs with <b>BS1363</b> (Type G) offer?`
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set.
- *<b>BS1363</b> (Type G) outputs at most 13 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current' target='_blank'>socket:bs1363:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13' target='_blank'>13</a> - *<b>BS1363</b> (Type G) outputs at most 13 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:current' target='_blank'>socket:bs1363:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:current%3D13' target='_blank'>13</a>
@ -1177,7 +1247,8 @@ This tagrendering has labels
### power-output-socket:bs1363 ### power-output-socket:bs1363
The question is `What power output does a single plug of type <b>BS1363</b> (Type G) offer?` The question is `What power output does a single plug of type <b>BS1363</b> (Type G) offer?`
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set
*<b>BS1363</b> (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set.
- *<b>BS1363</b> (Type G) outputs at most 3kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output' target='_blank'>socket:bs1363:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW' target='_blank'>3kW</a> - *<b>BS1363</b> (Type G) outputs at most 3kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:bs1363:output' target='_blank'>socket:bs1363:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:bs1363:output%3D3kW' target='_blank'>3kW</a>
@ -1188,7 +1259,8 @@ This tagrendering has labels
### plugs-amount-socket:nema5_15 ### plugs-amount-socket:nema5_15
The question is `How much plugs of type <b>NEMA 5-15</b> (Type B) are available here?` The question is `How much plugs of type <b>NEMA 5-15</b> (Type B) are available here?`
*There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here* is shown if `socket:nema5_15` is set
*There are <b class='text-xl'>{socket:nema5_15}</b> plugs of type <b>NEMA 5-15</b> (Type B) available here* is shown if `socket:nema5_15` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0 This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0
This tagrendering has labels This tagrendering has labels
@ -1197,7 +1269,8 @@ This tagrendering has labels
### voltage-socket:nema5_15 ### voltage-socket:nema5_15
The question is `What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?` The question is `What voltage do the plugs with <b>NEMA 5-15</b> (Type B) offer?`
*<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set
*<b>NEMA 5-15</b> (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set.
- *<b>NEMA 5-15</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage' target='_blank'>socket:nema5_15:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120' target='_blank'>120</a> - *<b>NEMA 5-15</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:voltage' target='_blank'>socket:nema5_15:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:voltage%3D120' target='_blank'>120</a>
@ -1208,7 +1281,8 @@ This tagrendering has labels
### current-socket:nema5_15 ### current-socket:nema5_15
The question is `What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?` The question is `What current do the plugs with <b>NEMA 5-15</b> (Type B) offer?`
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set.
- *<b>NEMA 5-15</b> (Type B) outputs at most 15 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current' target='_blank'>socket:nema5_15:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15' target='_blank'>15</a> - *<b>NEMA 5-15</b> (Type B) outputs at most 15 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:current' target='_blank'>socket:nema5_15:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:current%3D15' target='_blank'>15</a>
@ -1219,7 +1293,8 @@ This tagrendering has labels
### power-output-socket:nema5_15 ### power-output-socket:nema5_15
The question is `What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?` The question is `What power output does a single plug of type <b>NEMA 5-15</b> (Type B) offer?`
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set
*<b>NEMA 5-15</b> (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set.
- *<b>NEMA 5-15</b> (Type B) outputs at most 1.8 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output' target='_blank'>socket:nema5_15:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW' target='_blank'>1.8 kW</a> - *<b>NEMA 5-15</b> (Type B) outputs at most 1.8 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema5_15:output' target='_blank'>socket:nema5_15:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema5_15:output%3D1.8 kW' target='_blank'>1.8 kW</a>
@ -1230,7 +1305,8 @@ This tagrendering has labels
### plugs-amount-socket:sev1011_t23 ### plugs-amount-socket:sev1011_t23
The question is `How much plugs of type <b>SEV 1011 T23</b> (Type J) are available here?` The question is `How much plugs of type <b>SEV 1011 T23</b> (Type J) are available here?`
*There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here* is shown if `socket:sev1011_t23` is set
*There are <b class='text-xl'>{socket:sev1011_t23}</b> plugs of type <b>SEV 1011 T23</b> (Type J) available here* is shown if `socket:sev1011_t23` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0 This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0
This tagrendering has labels This tagrendering has labels
@ -1239,7 +1315,8 @@ This tagrendering has labels
### voltage-socket:sev1011_t23 ### voltage-socket:sev1011_t23
The question is `What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?` The question is `What voltage do the plugs with <b>SEV 1011 T23</b> (Type J) offer?`
*<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set
*<b>SEV 1011 T23</b> (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set.
- *<b>SEV 1011 T23</b> (Type J) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage' target='_blank'>socket:sev1011_t23:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230' target='_blank'>230</a> - *<b>SEV 1011 T23</b> (Type J) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:voltage' target='_blank'>socket:sev1011_t23:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:voltage%3D230' target='_blank'>230</a>
@ -1250,7 +1327,8 @@ This tagrendering has labels
### current-socket:sev1011_t23 ### current-socket:sev1011_t23
The question is `What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?` The question is `What current do the plugs with <b>SEV 1011 T23</b> (Type J) offer?`
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set.
- *<b>SEV 1011 T23</b> (Type J) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current' target='_blank'>socket:sev1011_t23:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16' target='_blank'>16</a> - *<b>SEV 1011 T23</b> (Type J) outputs at most 16 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:current' target='_blank'>socket:sev1011_t23:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:current%3D16' target='_blank'>16</a>
@ -1261,7 +1339,8 @@ This tagrendering has labels
### power-output-socket:sev1011_t23 ### power-output-socket:sev1011_t23
The question is `What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?` The question is `What power output does a single plug of type <b>SEV 1011 T23</b> (Type J) offer?`
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set
*<b>SEV 1011 T23</b> (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set.
- *<b>SEV 1011 T23</b> (Type J) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output' target='_blank'>socket:sev1011_t23:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW' target='_blank'>3.7 kW</a> - *<b>SEV 1011 T23</b> (Type J) outputs at most 3.7 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:sev1011_t23:output' target='_blank'>socket:sev1011_t23:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:sev1011_t23:output%3D3.7 kW' target='_blank'>3.7 kW</a>
@ -1272,7 +1351,8 @@ This tagrendering has labels
### plugs-amount-socket:as3112 ### plugs-amount-socket:as3112
The question is `How much plugs of type <b>AS3112</b> (Type I) are available here?` The question is `How much plugs of type <b>AS3112</b> (Type I) are available here?`
*There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here* is shown if `socket:as3112` is set
*There are <b class='text-xl'>{socket:as3112}</b> plugs of type <b>AS3112</b> (Type I) available here* is shown if `socket:as3112` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0 This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0
This tagrendering has labels This tagrendering has labels
@ -1281,7 +1361,8 @@ This tagrendering has labels
### voltage-socket:as3112 ### voltage-socket:as3112
The question is `What voltage do the plugs with <b>AS3112</b> (Type I) offer?` The question is `What voltage do the plugs with <b>AS3112</b> (Type I) offer?`
*<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set
*<b>AS3112</b> (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set.
- *<b>AS3112</b> (Type I) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage' target='_blank'>socket:as3112:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230' target='_blank'>230</a> - *<b>AS3112</b> (Type I) outputs 230 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:voltage' target='_blank'>socket:as3112:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:voltage%3D230' target='_blank'>230</a>
@ -1292,7 +1373,8 @@ This tagrendering has labels
### current-socket:as3112 ### current-socket:as3112
The question is `What current do the plugs with <b>AS3112</b> (Type I) offer?` The question is `What current do the plugs with <b>AS3112</b> (Type I) offer?`
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set.
- *<b>AS3112</b> (Type I) outputs at most 10 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current' target='_blank'>socket:as3112:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10' target='_blank'>10</a> - *<b>AS3112</b> (Type I) outputs at most 10 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:current' target='_blank'>socket:as3112:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:current%3D10' target='_blank'>10</a>
@ -1303,7 +1385,8 @@ This tagrendering has labels
### power-output-socket:as3112 ### power-output-socket:as3112
The question is `What power output does a single plug of type <b>AS3112</b> (Type I) offer?` The question is `What power output does a single plug of type <b>AS3112</b> (Type I) offer?`
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set
*<b>AS3112</b> (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set.
- *<b>AS3112</b> (Type I) outputs at most 2.3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output' target='_blank'>socket:as3112:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW' target='_blank'>2.3 kW</a> - *<b>AS3112</b> (Type I) outputs at most 2.3 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:as3112:output' target='_blank'>socket:as3112:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:as3112:output%3D2.3 kW' target='_blank'>2.3 kW</a>
@ -1314,7 +1397,8 @@ This tagrendering has labels
### plugs-amount-socket:nema_5_20 ### plugs-amount-socket:nema_5_20
The question is `How much plugs of type <b>NEMA 5-20</b> (Type B) are available here?` The question is `How much plugs of type <b>NEMA 5-20</b> (Type B) are available here?`
*There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here* is shown if `socket:nema_5_20` is set
*There are <b class='text-xl'>{socket:nema_5_20}</b> plugs of type <b>NEMA 5-20</b> (Type B) available here* is shown if `socket:nema_5_20` is set.
This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0 This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0
This tagrendering has labels This tagrendering has labels
@ -1323,7 +1407,8 @@ This tagrendering has labels
### voltage-socket:nema_5_20 ### voltage-socket:nema_5_20
The question is `What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?` The question is `What voltage do the plugs with <b>NEMA 5-20</b> (Type B) offer?`
*<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set
*<b>NEMA 5-20</b> (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set.
- *<b>NEMA 5-20</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage' target='_blank'>socket:nema_5_20:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120' target='_blank'>120</a> - *<b>NEMA 5-20</b> (Type B) outputs 120 volt* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:voltage' target='_blank'>socket:nema_5_20:voltage</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:voltage%3D120' target='_blank'>120</a>
@ -1334,7 +1419,8 @@ This tagrendering has labels
### current-socket:nema_5_20 ### current-socket:nema_5_20
The question is `What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?` The question is `What current do the plugs with <b>NEMA 5-20</b> (Type B) offer?`
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set.
- *<b>NEMA 5-20</b> (Type B) outputs at most 20 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current' target='_blank'>socket:nema_5_20:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20' target='_blank'>20</a> - *<b>NEMA 5-20</b> (Type B) outputs at most 20 A* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:current' target='_blank'>socket:nema_5_20:current</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:current%3D20' target='_blank'>20</a>
@ -1345,7 +1431,8 @@ This tagrendering has labels
### power-output-socket:nema_5_20 ### power-output-socket:nema_5_20
The question is `What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?` The question is `What power output does a single plug of type <b>NEMA 5-20</b> (Type B) offer?`
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set
*<b>NEMA 5-20</b> (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set.
- *<b>NEMA 5-20</b> (Type B) outputs at most 2.4 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output' target='_blank'>socket:nema_5_20:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW' target='_blank'>2.4 kW</a> - *<b>NEMA 5-20</b> (Type B) outputs at most 2.4 kW* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:socket:nema_5_20:output' target='_blank'>socket:nema_5_20:output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:socket:nema_5_20:output%3D2.4 kW' target='_blank'>2.4 kW</a>
@ -1356,7 +1443,8 @@ This tagrendering has labels
### OH ### OH
The question is `When is this charging station opened?` The question is `When is this charging station opened?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -1374,7 +1462,8 @@ The question is `Does one have to pay to use this charging station?`
### charge ### charge
The question is `How much does one have to pay to use this charging station?` The question is `How much does one have to pay to use this charging station?`
*Using this charging station costs <b>{charge}</b>* is shown if `charge` is set
*Using this charging station costs <b>{charge}</b>* is shown if `charge` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
@ -1394,7 +1483,8 @@ This tagrendering is only visible in the popup if the following condition is met
### app-name ### app-name
The question is `What is the name of the app used for payment?` The question is `What is the name of the app used for payment?`
*Payment can be done using the app <b>{payment:app}</b>* is shown if `payment:app` is set
*Payment can be done using the app <b>{payment:app}</b>* is shown if `payment:app` is set.
This tagrendering is only visible in the popup if the following condition is met: payment:app~.+ & payment:app!=no This tagrendering is only visible in the popup if the following condition is met: payment:app~.+ & payment:app!=no
@ -1414,14 +1504,16 @@ The question is `What kind of authentication is available at the charging statio
### Auth phone ### Auth phone
The question is `What's the phone number for authentication call or SMS?` The question is `What's the phone number for authentication call or SMS?`
*Authenticate by calling or SMS'ing to <a href='tel:{authentication:phone_call:number}'>{authentication:phone_call:number}</a>* is shown if `authentication:phone_call:number` is set
*Authenticate by calling or SMS'ing to <a href='tel:{authentication:phone_call:number}'>{authentication:phone_call:number}</a>* is shown if `authentication:phone_call:number` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call' target='_blank'>authentication:phone_call</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:authentication:phone_call%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:authentication:short_message' target='_blank'>authentication:short_message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:authentication:short_message%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call' target='_blank'>authentication:phone_call</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:authentication:phone_call%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:authentication:short_message' target='_blank'>authentication:short_message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:authentication:short_message%3Dyes' target='_blank'>yes</a>
### maxstay ### maxstay
The question is `What is the maximum amount of time one is allowed to stay here?` The question is `What is the maximum amount of time one is allowed to stay here?`
*One can stay at most <b>{canonical(maxstay)}</b>* is shown if `maxstay` is set
*One can stay at most <b>{canonical(maxstay)}</b>* is shown if `maxstay` is set.
- *There is no limit to the amount of time one can stay here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a> - *There is no limit to the amount of time one can stay here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxstay' target='_blank'>maxstay</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited' target='_blank'>unlimited</a>
@ -1430,7 +1522,8 @@ This tagrendering is only visible in the popup if the following condition is met
### Network ### Network
The question is `Is this charging station part of a network?` The question is `Is this charging station part of a network?`
*Part of the network <b>{network}</b>* is shown if `network` is set
*Part of the network <b>{network}</b>* is shown if `network` is set.
- *Not part of a bigger network, e.g. because the charging station is maintained by a local business* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:no:network' target='_blank'>no:network</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:no:network%3Dyes' target='_blank'>yes</a> - *Not part of a bigger network, e.g. because the charging station is maintained by a local business* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:no:network' target='_blank'>no:network</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:no:network%3Dyes' target='_blank'>yes</a>
- *Not part of a bigger network* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:network' target='_blank'>network</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:network%3Dnone' target='_blank'>none</a>. _This option cannot be chosen as answer_ - *Not part of a bigger network* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:network' target='_blank'>network</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:network%3Dnone' target='_blank'>none</a>. _This option cannot be chosen as answer_
@ -1444,28 +1537,33 @@ The question is `Is this charging station part of a network?`
### Operator ### Operator
The question is `Who is the operator of this charging station?` The question is `Who is the operator of this charging station?`
*This charging station is operated by {operator}* is shown if `operator` is set
*This charging station is operated by {operator}* is shown if `operator` is set.
- *Actually, {operator} is the network* is shown if with network= - *Actually, {operator} is the network* is shown if with network=
### phone ### phone
The question is `What number can one call if there is a problem with this charging station?` The question is `What number can one call if there is a problem with this charging station?`
*In case of problems, call <a href='tel:{phone}'>{phone}</a>* is shown if `phone` is set
*In case of problems, call <a href='tel:{phone}'>{phone}</a>* is shown if `phone` is set.
### email ### email
The question is `What is the email address of the operator?` The question is `What is the email address of the operator?`
*In case of problems, send an email to <a href='mailto:{email}'>{email}</a>* is shown if `email` is set
*In case of problems, send an email to <a href='mailto:{email}'>{email}</a>* is shown if `email` is set.
### website ### website
The question is `What is the website where one can find more information about this charging station?` The question is `What is the website where one can find more information about this charging station?`
*More info on <a href='{website}'>{website}</a>* is shown if `website` is set
*More info on <a href='{website}'>{website}</a>* is shown if `website` is set.
### repeated ### repeated
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {repeat_on}.* *Multiple, identical objects can be found on floors {repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+
@ -1475,7 +1573,8 @@ This tagrendering has labels
### single_level ### single_level
The question is `On what level is this feature located?` The question is `On what level is this feature located?`
*Located on the {level}th floor* is shown if `level` is set
*Located on the {level}th floor* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -1489,7 +1588,8 @@ This tagrendering has labels
### ref ### ref
The question is `What is the reference number of this charging station?` The question is `What is the reference number of this charging station?`
*Reference number is <b>{ref}</b>* is shown if `ref` is set
*Reference number is <b>{ref}</b>* is shown if `ref` is set.
This tagrendering is only visible in the popup if the following condition is met: network~.+ This tagrendering is only visible in the popup if the following condition is met: network~.+
@ -1513,26 +1613,31 @@ The question is `Does one have to pay a parking fee while charging?`
### questions ### questions
Show the questions block at this location Show the questions block at this location
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions()}* *{questions()}*
### questions-technical ### questions-technical
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<h3>Technical questions</h3>The questions below are very technical. Feel free to ignore them<br/>{questions(technical)}* *<h3>Technical questions</h3>The questions below are very technical. Feel free to ignore them<br/>{questions(technical)}*
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -75,12 +75,14 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### name ### name
The question is `What is the name of this facility?` The question is `What is the name of this facility?`
*This facility is named <b>{name}</b>* is shown if `name` is set
*This facility is named <b>{name}</b>* is shown if `name` is set.
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -90,7 +92,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -101,7 +104,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -111,7 +115,8 @@ This tagrendering has labels
### opening_hours ### opening_hours
The question is `When is this childcare opened?` The question is `When is this childcare opened?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -120,11 +125,13 @@ This tagrendering is only visible in the popup if the following condition is met
### capacity ### capacity
The question is `How much kids (at most) can be enrolled here?` The question is `How much kids (at most) can be enrolled here?`
*This facility has room for {capacity} kids* is shown if `capacity` is set
*This facility has room for {capacity} kids* is shown if `capacity` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -134,16 +141,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -63,17 +63,20 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -83,7 +86,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -94,7 +98,8 @@ This tagrendering has labels
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -104,9 +109,10 @@ This tagrendering has labels
### wikipedia ### wikipedia
Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor
The question is `What is the corresponding Wikidata entity?` The question is `What is the corresponding Wikidata entity?`
*{wikipedia():max-height:25rem}* is shown if `wikidata` is set
- *No Wikipedia page has been linked yet* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ *{wikipedia():max-height:25rem}* is shown if `wikidata` is set.
- *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_
- *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_
### cinema_type ### cinema_type
@ -119,6 +125,7 @@ The question is `What type of cinema is this?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -128,11 +135,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -93,26 +93,31 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### minimap ### minimap
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{minimap(18, id, _contained_climbing_route_ids): height: 9rem; overflow: hidden; border-radius:3rem; }* *{minimap(18, id, _contained_climbing_route_ids): height: 9rem; overflow: hidden; border-radius:3rem; }*
### Contained routes length hist ### Contained routes length hist
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<h3>Length overview</h3>{histogram(_length_hist)}* *<h3>Length overview</h3>{histogram(_length_hist)}*
### Contained routes hist ### Contained routes hist
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<h3>Grades overview</h3>{histogram(_difficulty_hist)}* *<h3>Grades overview</h3>{histogram(_difficulty_hist)}*
### Contained_climbing_routes ### Contained_climbing_routes
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<h3>Contains {_contained_climbing_routes_count} routes</h3> <ul>{_contained_climbing_routes}</ul>* *<h3>Contains {_contained_climbing_routes_count} routes</h3> <ul>{_contained_climbing_routes}</ul>*
This tagrendering is only visible in the popup if the following condition is met: _contained_climbing_routes~.+ This tagrendering is only visible in the popup if the following condition is met: _contained_climbing_routes~.+
@ -120,7 +125,8 @@ This tagrendering is only visible in the popup if the following condition is met
### name ### name
The question is `What is the name of this climbing opportunity?` The question is `What is the name of this climbing opportunity?`
*<strong>{name}</strong>* is shown if `name` is set
*<strong>{name}</strong>* is shown if `name` is set.
- *This climbing opportunity doesn't have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a> & name= - *This climbing opportunity doesn't have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a> & name=
@ -135,7 +141,8 @@ The question is `What kind of climbing opportunity is this?`
### Rock type (crag/rock/cliff only) ### Rock type (crag/rock/cliff only)
The question is `What is the rock type here?` The question is `What is the rock type here?`
*The rock type is {rock}* is shown if `rock` is set
*The rock type is {rock}* is shown if `rock` is set.
- *Limestone* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:rock' target='_blank'>rock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone' target='_blank'>limestone</a> - *Limestone* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:rock' target='_blank'>rock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone' target='_blank'>limestone</a>
@ -144,19 +151,22 @@ This tagrendering is only visible in the popup if the following condition is met
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### website ### website
The question is `Is there a (unofficial) website with more informations (e.g. topos)?` The question is `Is there a (unofficial) website with more informations (e.g. topos)?`
*<a href='{url}' target='_blank' rel='noopener'>{url}</a>* is shown if `url` is set
*<a href='{url}' target='_blank' rel='noopener'>{url}</a>* is shown if `url` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a> & club= & office= & leisure!~^(sports_centre)$ This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a> & club= & office= & leisure!~^(sports_centre)$
### fee ### fee
The question is `Is a fee required to climb here?` The question is `Is a fee required to climb here?`
*A fee of {charge} should be paid for climbing here* is shown if `charge` is set
*A fee of {charge} should be paid for climbing here* is shown if `charge` is set.
- *Climbing here is free of charge* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a> - *Climbing here is free of charge* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
- *Paying a fee is required to climb here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> & charge= - *Paying a fee is required to climb here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> & charge=
@ -173,6 +183,7 @@ The question is `Is bouldering possible here?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -182,6 +193,7 @@ This tagrendering has labels
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -74,12 +74,14 @@ Elements must match **any** of the following expressions:
### climbing_club-name ### climbing_club-name
The question is `What is the name of this climbing club or NGO?` The question is `What is the name of this climbing club or NGO?`
*<strong>{name}</strong>* is shown if `name` is set
*<strong>{name}</strong>* is shown if `name` is set.
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -89,7 +91,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -100,7 +103,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -110,13 +114,15 @@ This tagrendering has labels
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -126,11 +132,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -135,17 +135,20 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### name ### name
The question is `What is the name of this climbing gym?` The question is `What is the name of this climbing gym?`
*<strong>{name}</strong>* is shown if `name` is set
*<strong>{name}</strong>* is shown if `name` is set.
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -155,7 +158,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -165,7 +169,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -176,7 +181,8 @@ This tagrendering has labels
### fee ### fee
The question is `Is a fee required to climb here?` The question is `Is a fee required to climb here?`
*A fee of {charge} should be paid for climbing here* is shown if `charge` is set
*A fee of {charge} should be paid for climbing here* is shown if `charge` is set.
- *Climbing here is free of charge* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a> - *Climbing here is free of charge* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
- *Paying a fee is required to climb here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> & charge= - *Paying a fee is required to climb here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> & charge=
@ -192,13 +198,15 @@ The question is `Which methods of payment are accepted here?`
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### bouldering ### bouldering
@ -249,7 +257,8 @@ This tagrendering is only visible in the popup if the following condition is met
### auto_belay_toprope ### auto_belay_toprope
The question is `Are there auto belays for top roping here?` The question is `Are there auto belays for top roping here?`
*There are {climbing:autobelay:toprope} auto belay devices for top roping* is shown if `climbing:autobelay:toprope` is set
*There are {climbing:autobelay:toprope} auto belay devices for top roping* is shown if `climbing:autobelay:toprope` is set.
- *There are no auto belays for top roping* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:toprope' target='_blank'>climbing:autobelay:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Dno' target='_blank'>no</a> - *There are no auto belays for top roping* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:toprope' target='_blank'>climbing:autobelay:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Dno' target='_blank'>no</a>
- *There are a number of auto belays for top roping* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:toprope' target='_blank'>climbing:autobelay:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Dyes' target='_blank'>yes</a> - *There are a number of auto belays for top roping* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:toprope' target='_blank'>climbing:autobelay:toprope</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:toprope%3Dyes' target='_blank'>yes</a>
@ -261,7 +270,8 @@ This tagrendering is only visible in the popup if the following condition is met
### auto_belay_lead ### auto_belay_lead
The question is `Are there auto belays for lead climbing here?` The question is `Are there auto belays for lead climbing here?`
*There are {climbing:autobelay:sport} auto belays for lead climbing* is shown if `climbing:autobelay:sport` is set
*There are {climbing:autobelay:sport} auto belays for lead climbing* is shown if `climbing:autobelay:sport` is set.
- *There are no auto belays for lead climbing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:sport' target='_blank'>climbing:autobelay:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:sport%3Dno' target='_blank'>no</a> - *There are no auto belays for lead climbing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:sport' target='_blank'>climbing:autobelay:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:sport%3Dno' target='_blank'>no</a>
- *There is a number of auto belays for lead climbing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:sport' target='_blank'>climbing:autobelay:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:sport%3Dyes' target='_blank'>yes</a> - *There is a number of auto belays for lead climbing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:autobelay:sport' target='_blank'>climbing:autobelay:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:autobelay:sport%3Dyes' target='_blank'>yes</a>
@ -293,24 +303,28 @@ The question is `Can one rent a climbing rope here to use in the gym?`
### average_length ### average_length
The question is `What is the (average) length of the routes in meters?` The question is `What is the (average) length of the routes in meters?`
*The routes are <b>{canonical(climbing:length)}</b> long on average* is shown if `climbing:length` is set
*The routes are <b>{canonical(climbing:length)}</b> long on average* is shown if `climbing:length` is set.
### min_difficulty ### min_difficulty
The question is `What is the grade of the easiest route here, according to the french classification system?` The question is `What is the grade of the easiest route here, according to the french classification system?`
*The lowest grade is {climbing:grade:french:min} according to the french/belgian system* is shown if `climbing:grade:french:min` is set
*The lowest grade is {climbing:grade:french:min} according to the french/belgian system* is shown if `climbing:grade:french:min` is set.
### max_difficulty ### max_difficulty
The question is `What is the highest grade route here, according to the french classification system?` The question is `What is the highest grade route here, according to the french classification system?`
*The highest grade is {climbing:grade:french:max} according to the french/belgian system* is shown if `climbing:grade:french:max` is set
*The highest grade is {climbing:grade:french:max} according to the french/belgian system* is shown if `climbing:grade:french:max` is set.
This tagrendering is only visible in the popup if the following condition is met: club= & office= & (<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a>) & climbing!~^(route)$ This tagrendering is only visible in the popup if the following condition is met: club= & office= & (<a href='https://wiki.openstreetmap.org/wiki/Key:climbing:sport' target='_blank'>climbing:sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dclimbing' target='_blank'>climbing</a>) & climbing!~^(route)$
### max_bolts ### max_bolts
The question is `How many bolts do routes in {title()} have at most?` The question is `How many bolts do routes in {title()} have at most?`
*The sport climbing routes here have at most {climbing:bolts:max} bolts. <div class='subtle'>This is without belay stations and indicates how much quickdraws a climber needs.</div>* is shown if `climbing:bolts:max` is set
*The sport climbing routes here have at most {climbing:bolts:max} bolts. <div class='subtle'>This is without belay stations and indicates how much quickdraws a climber needs.</div>* is shown if `climbing:bolts:max` is set.
### Speed climbing? ### Speed climbing?
@ -360,7 +374,8 @@ This tagrendering has labels
### internet-ssid ### internet-ssid
The question is `What is the network name for the wireless internet access?` The question is `What is the network name for the wireless internet access?`
*The network name is <b>{internet_access:ssid}</b>* is shown if `internet_access:ssid` is set
*The network name is <b>{internet_access:ssid}</b>* is shown if `internet_access:ssid` is set.
- *Telekom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid' target='_blank'>internet_access:ssid</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom' target='_blank'>Telekom</a> - *Telekom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid' target='_blank'>internet_access:ssid</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom' target='_blank'>Telekom</a>
@ -371,6 +386,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -380,11 +396,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -47,6 +47,7 @@ Elements must match **all** of the following expressions:
### climbing-opportunity-name ### climbing-opportunity-name
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<strong>{name}</strong>* *<strong>{name}</strong>*
This tagrendering is only visible in the popup if the following condition is met: name~.+ This tagrendering is only visible in the popup if the following condition is met: name~.+
@ -62,6 +63,7 @@ The question is `Is climbing possible here?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -71,6 +73,7 @@ This tagrendering has labels
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -74,45 +74,53 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### Name ### Name
The question is `What is the name of this climbing route?` The question is `What is the name of this climbing route?`
*<strong>{name}</strong>* is shown if `name` is set
*<strong>{name}</strong>* is shown if `name` is set.
- *This climbing route doesn't have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a> & name= - *This climbing route doesn't have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a> & name=
### Length ### Length
The question is `How long is this climbing route (in meters)?` The question is `How long is this climbing route (in meters)?`
*This route is {canonical(climbing:length)} long* is shown if `climbing:length` is set
*This route is {canonical(climbing:length)} long* is shown if `climbing:length` is set.
### Difficulty ### Difficulty
The question is `What is the grade of this climbing route according to the french/belgian system?` The question is `What is the grade of this climbing route according to the french/belgian system?`
*The grade is {climbing:grade:french} according to the french/belgian system* is shown if `climbing:grade:french` is set
*The grade is {climbing:grade:french} according to the french/belgian system* is shown if `climbing:grade:french` is set.
### bolts ### bolts
The question is `How many bolts does this route have before reaching the anchor?` The question is `How many bolts does this route have before reaching the anchor?`
*This route has {climbing:bolts} bolts. <div class='subtle'>This is without belay stations and indicates how much quickdraws a climber needs.</div>* is shown if `climbing:bolts` is set
*This route has {climbing:bolts} bolts. <div class='subtle'>This is without belay stations and indicates how much quickdraws a climber needs.</div>* is shown if `climbing:bolts` is set.
- *This route is not bolted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:bolted' target='_blank'>climbing:bolted</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:bolted%3Dno' target='_blank'>no</a> - *This route is not bolted* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:bolted' target='_blank'>climbing:bolted</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:bolted%3Dno' target='_blank'>no</a>
### description ### description
The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.`
*{description}* is shown if `description` is set
*{description}* is shown if `description` is set.
### Rock type via embedded feature ### Rock type via embedded feature
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*The rock type is {_embedding_features_with_rock:rock} as stated <a href='#{_embedding_features_with_rock:id}'>on the surrounding crag</a>* is shown if `_embedding_features_with_rock:rock` is set
*The rock type is {_embedding_features_with_rock:rock} as stated <a href='#{_embedding_features_with_rock:id}'>on the surrounding crag</a>* is shown if `_embedding_features_with_rock:rock` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -122,11 +130,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -89,6 +89,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### support ### support
@ -160,7 +161,8 @@ The question is `Does this clock also display the humidity?`
### faces ### faces
The question is `How many faces does this clock have?` The question is `How many faces does this clock have?`
*This clock has {faces} faces* is shown if `faces` is set
*This clock has {faces} faces* is shown if `faces` is set.
- *This clock has one face* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:faces' target='_blank'>faces</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:faces%3D1' target='_blank'>1</a> - *This clock has one face* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:faces' target='_blank'>faces</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:faces%3D1' target='_blank'>1</a>
- *This clock has two faces* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:faces' target='_blank'>faces</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:faces%3D2' target='_blank'>2</a> - *This clock has two faces* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:faces' target='_blank'>faces</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:faces%3D2' target='_blank'>2</a>
@ -169,6 +171,7 @@ The question is `How many faces does this clock have?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -178,16 +181,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -1,67 +0,0 @@
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
# crab_address
Address data for Flanders by the governement, suited for import into OpenStreetMap. Datadump from 2021-10-26. This layer contains only visualisation logic. Import buttons should be added via an override. Note that HNRLABEL contains the original value, whereas _HNRLABEL contains a slightly cleaned version
- This layer is shown at zoomlevel **0** and higher
- <img src='../warning.svg' height='1rem'/>
This layer is loaded from an external source, namely
`https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson`
## Table of contents
1. [Themes using this layer](#themes-using-this-layer)
2. [Basic tags for this layer](#basic-tags-for-this-layer)
3. [Supported attributes](#supported-attributes)
4. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [render_crab](#render_crab)
- [leftover-questions](#leftover-questions)
- [lod](#lod)
## Themes using this layer
- [grb](https://mapcomplete.org/grb)
## Basic tags for this layer
Elements must match the expression **HUISNR~.+**
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22HUISNR%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
## Supported attributes
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [render_crab](#render_crab) | _Volgens het CRAB ligt hier <b>{STRAATNM}</b> {HUISNR} (label: {HNRLABEL})_ | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### render_crab
_This tagrendering has no question and is thus read-only_
*Volgens het CRAB ligt hier <b>{STRAATNM}</b> {HUISNR} (label: {HNRLABEL})*
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### lod
_This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}*
This tagrendering has labels
`added_by_default`
This document is autogenerated from [assets/layers/crab_address/crab_address.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/crab_address/crab_address.json)

View file

@ -98,6 +98,7 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### signals ### signals
@ -113,7 +114,8 @@ This tagrendering is only visible in the popup if the following condition is met
### markings ### markings
The question is `What kind of markings does this crossing have?` The question is `What kind of markings does this crossing have?`
*This crossing has {crossing:markings} markings* is shown if `crossing:markings` is set
*This crossing has {crossing:markings} markings* is shown if `crossing:markings` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/crossing_unmarked.png'> *This crossing has no markings* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dno' target='_blank'>no</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/crossing_unmarked.png'> *This crossing has no markings* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/markings_zebra.png'> *This crossing has zebra markings* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra' target='_blank'>zebra</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/markings_zebra.png'> *This crossing has zebra markings* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra' target='_blank'>zebra</a>
@ -232,6 +234,7 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -241,11 +244,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -93,6 +93,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### signals ### signals
@ -108,7 +109,8 @@ This tagrendering is only visible in the popup if the following condition is met
### markings ### markings
The question is `What kind of markings does this crossing have?` The question is `What kind of markings does this crossing have?`
*This crossing has {crossing:markings} markings* is shown if `crossing:markings` is set
*This crossing has {crossing:markings} markings* is shown if `crossing:markings` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/crossing_unmarked.png'> *This crossing has no markings* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dno' target='_blank'>no</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/crossing_unmarked.png'> *This crossing has no markings* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/markings_zebra.png'> *This crossing has zebra markings* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra' target='_blank'>zebra</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/crossings/markings_zebra.png'> *This crossing has zebra markings* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:crossing:markings' target='_blank'>crossing:markings</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:crossing:markings%3Dzebra' target='_blank'>zebra</a>
@ -227,6 +229,7 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -236,11 +239,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -69,16 +69,19 @@ Elements must match **all** of the following expressions:
### etymology-images-from-wikipedia ### etymology-images-from-wikipedia
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel(name:etymology:wikidata)}* *{image_carousel(name:etymology:wikidata)}*
### wikipedia-etymology ### wikipedia-etymology
The question is `What is the Wikidata-item that this object is named after?` The question is `What is the Wikidata-item that this object is named after?`
*<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set
*<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set.
### zoeken op inventaris onroerend erfgoed ### zoeken op inventaris onroerend erfgoed
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<a href='https://inventaris.onroerenderfgoed.be/erfgoedobjecten?tekst={name}' target='_blank'>Search on inventaris onroerend erfgoed</a>* *<a href='https://inventaris.onroerenderfgoed.be/erfgoedobjecten?tekst={name}' target='_blank'>Search on inventaris onroerend erfgoed</a>*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:_country' target='_blank'>_country</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_country%3Dbe' target='_blank'>be</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:_country' target='_blank'>_country</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_country%3Dbe' target='_blank'>be</a>
@ -86,38 +89,45 @@ This tagrendering is only visible in the popup if the following condition is met
### simple etymology ### simple etymology
The question is `What is this object named after?` The question is `What is this object named after?`
*Named after {name:etymology}* is shown if `name:etymology` is set
*Named after {name:etymology}* is shown if `name:etymology` is set.
- *The origin of this name is unknown in all literature* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a> - *The origin of this name is unknown in all literature* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>
### questions ### questions
Show the questions block at this location Show the questions block at this location
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions()}* *{questions()}*
### streetsign-image-carousel ### streetsign-image-carousel
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel(image:streetsign;panoramax:streetsign)}* *{image_carousel(image:streetsign;panoramax:streetsign)}*
### streetsign-upload ### streetsign-upload
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_upload(image:streetsign,Add image of a street name sign,)}* *{image_upload(image:streetsign,Add image of a street name sign,)}*
### minimap ### minimap
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{minimap(18, id, _same_name_ids):height:10rem}* *{minimap(18, id, _same_name_ids):height:10rem}*
### etymology_multi_apply ### etymology_multi_apply
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}*
### wikipedia ### wikipedia
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}* *A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}*
This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ This tagrendering is only visible in the popup if the following condition is met: wikidata~.+
@ -125,6 +135,7 @@ This tagrendering is only visible in the popup if the following condition is met
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -58,17 +58,20 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### cycle_highways-name ### cycle_highways-name
The question is `What is the name of this cycle highway?` The question is `What is the name of this cycle highway?`
*The name is <b>{name}</b>* is shown if `name` is set
*The name is <b>{name}</b>* is shown if `name` is set.
### cycle_highways-ref ### cycle_highways-ref
The question is `What is the reference number of this cycle highway?` The question is `What is the reference number of this cycle highway?`
*Referentienummer is <b>{ref}</b>* is shown if `ref` is set
*Referentienummer is <b>{ref}</b>* is shown if `ref` is set.
### cycle_highways-state ### cycle_highways-state
The question is `What is the state of this link?` The question is `What is the state of this link?`
*The current state of this link is {state}* is shown if `state` is set
*The current state of this link is {state}* is shown if `state` is set.
- *This is a proposed route which can be cycled* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a> & note:state= - *This is a proposed route which can be cycled* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a> & note:state=
- *This is a proposed route which has missing links (thus: some parts don't even have a building permit yet)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:note:state' target='_blank'>note:state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:note:state%3Dhas_highway_no' target='_blank'>has_highway_no</a> - *This is a proposed route which has missing links (thus: some parts don't even have a building permit yet)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:state' target='_blank'>state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed' target='_blank'>proposed</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:note:state' target='_blank'>note:state</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:note:state%3Dhas_highway_no' target='_blank'>has_highway_no</a>
@ -79,12 +82,14 @@ The question is `What is the state of this link?`
### cycle-highway-length ### cycle-highway-length
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*This part is {_length:km}km long* *This part is {_length:km}km long*
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -94,11 +99,13 @@ This tagrendering has labels
### all_tags ### all_tags
Shows a table with all the tags of the feature Shows a table with all the tags of the feature
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{all_tags()}* *{all_tags()}*
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -108,6 +115,7 @@ This tagrendering has labels
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -58,6 +58,7 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### is_cyclestreet ### is_cyclestreet
@ -87,13 +88,15 @@ This tagrendering is only visible in the popup if the following condition is met
### future_cyclestreet ### future_cyclestreet
The question is `When will this street become a cyclestreet?` The question is `When will this street become a cyclestreet?`
*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set
*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:proposed:cyclestreet' target='_blank'>proposed:cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:proposed:cyclestreet%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:proposed:cyclestreet' target='_blank'>proposed:cyclestreet</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:proposed:cyclestreet%3Dyes' target='_blank'>yes</a>
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -103,11 +106,13 @@ This tagrendering has labels
### split_button ### split_button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{split_button()}* *{split_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -127,6 +127,7 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### Cycleway type for a road ### Cycleway type for a road
@ -176,7 +177,8 @@ This tagrendering is only visible in the popup if the following condition is met
### Maxspeed (for road) ### Maxspeed (for road)
The question is `What is the maximum speed in this street?` The question is `What is the maximum speed in this street?`
*The maximum speed on this road is {maxspeed} km/h* is shown if `maxspeed` is set
*The maximum speed on this road is {maxspeed} km/h* is shown if `maxspeed` is set.
- *The maximum speed is 20 km/h* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D20' target='_blank'>20</a> - *The maximum speed is 20 km/h* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D20' target='_blank'>20</a>
- *The maximum speed is 30 km/h* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a> - *The maximum speed is 30 km/h* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:maxspeed' target='_blank'>maxspeed</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30' target='_blank'>30</a>
@ -187,7 +189,8 @@ The question is `What is the maximum speed in this street?`
### Cycleway:surface ### Cycleway:surface
The question is `What is the surface of the cycleway made from?` The question is `What is the surface of the cycleway made from?`
*This cyleway is made of {cycleway:surface}* is shown if `cycleway:surface` is set
*This cyleway is made of {cycleway:surface}* is shown if `cycleway:surface` is set.
- *This cycleway is unpaved* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunpaved' target='_blank'>unpaved</a>. _This option cannot be chosen as answer_ - *This cycleway is unpaved* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunpaved' target='_blank'>unpaved</a>. _This option cannot be chosen as answer_
- *This cycleway is paved* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaved' target='_blank'>paved</a>. _This option cannot be chosen as answer_ - *This cycleway is paved* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway:surface' target='_blank'>cycleway:surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaved' target='_blank'>paved</a>. _This option cannot be chosen as answer_
@ -208,7 +211,8 @@ This tagrendering is only visible in the popup if the following condition is met
### incline ### incline
The question is `Does {title()} have an incline?` The question is `Does {title()} have an incline?`
*This road has an slope of {incline}* is shown if `incline` is set
*This road has an slope of {incline}* is shown if `incline` is set.
- *There is (probably) no incline here* is shown if with incline=. _This option cannot be chosen as answer_ - *There is (probably) no incline here* is shown if with incline=. _This option cannot be chosen as answer_
- *This road has a slope* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:incline' target='_blank'>incline</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:incline%3Dup' target='_blank'>up</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:incline' target='_blank'>incline</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:incline%3Ddown' target='_blank'>down</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:incline' target='_blank'>incline</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:incline%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_ - *This road has a slope* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:incline' target='_blank'>incline</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:incline%3Dup' target='_blank'>up</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:incline' target='_blank'>incline</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:incline%3Ddown' target='_blank'>down</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:incline' target='_blank'>incline</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:incline%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_
@ -231,7 +235,8 @@ This tagrendering is only visible in the popup if the following condition is met
### Surface of the road ### Surface of the road
The question is `What is the surface of the street made from?` The question is `What is the surface of the street made from?`
*This road is made of {surface}* is shown if `surface` is set
*This road is made of {surface}* is shown if `surface` is set.
- *This cycleway is unhardened* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>. _This option cannot be chosen as answer_ - *This cycleway is unhardened* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunpaved' target='_blank'>unpaved</a>. _This option cannot be chosen as answer_
- *This cycleway is paved* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>. _This option cannot be chosen as answer_ - *This cycleway is paved* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:surface' target='_blank'>surface</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaved' target='_blank'>paved</a>. _This option cannot be chosen as answer_
@ -265,7 +270,8 @@ This tagrendering is only visible in the popup if the following condition is met
### width ### width
The question is `What is the carriage width of this road (in meters)?` The question is `What is the carriage width of this road (in meters)?`
*The carriage width of this road is <strong>{width}m</strong>* is shown if `width` is set
*The carriage width of this road is <strong>{width}m</strong>* is shown if `width` is set.
### cycleway-lane-track-traffic-signs ### cycleway-lane-track-traffic-signs
@ -311,7 +317,8 @@ This tagrendering is only visible in the popup if the following condition is met
### cycleways_and_roads-cycleway:buffer ### cycleways_and_roads-cycleway:buffer
The question is `How wide is the gap between the cycleway and the road?` The question is `How wide is the gap between the cycleway and the road?`
*The buffer besides this cycleway is {cycleway:buffer} m* is shown if `cycleway:buffer` is set
*The buffer besides this cycleway is {cycleway:buffer} m* is shown if `cycleway:buffer` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack' target='_blank'>track</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:cycleway' target='_blank'>cycleway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane' target='_blank'>lane</a>
@ -340,6 +347,7 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -349,11 +357,13 @@ This tagrendering has labels
### split_button ### split_button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{split_button()}* *{split_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -63,6 +63,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### type ### type
@ -83,6 +84,7 @@ The question is `On what side of the road is this located?`
### direction ### direction
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*This waiting aid can be used when going in {direction} direction* *This waiting aid can be used when going in {direction} direction*
- *This waiting aid can be used when going forward on this way* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:direction' target='_blank'>direction</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direction%3Dforward' target='_blank'>forward</a> - *This waiting aid can be used when going forward on this way* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:direction' target='_blank'>direction</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:direction%3Dforward' target='_blank'>forward</a>
@ -93,6 +95,7 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -102,11 +105,13 @@ This tagrendering has labels
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -104,6 +104,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### defibrillator-indoors ### defibrillator-indoors
@ -116,7 +117,8 @@ The question is `Is this defibrillator located indoors?`
### defibrillator-access ### defibrillator-access
The question is `Is this defibrillator freely accessible?` The question is `Is this defibrillator freely accessible?`
*Access is {access}* is shown if `access` is set
*Access is {access}* is shown if `access` is set.
- *Publicly accessible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a> - *Publicly accessible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a>
- *Publicly accessible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>. _This option cannot be chosen as answer_ - *Publicly accessible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a>. _This option cannot be chosen as answer_
@ -127,7 +129,8 @@ The question is `Is this defibrillator freely accessible?`
### defibrillator-level ### defibrillator-level
The question is `On which floor is this defibrillator located?` The question is `On which floor is this defibrillator located?`
*This defibrillator is on floor {level}* is shown if `level` is set
*This defibrillator is on floor {level}* is shown if `level` is set.
- *This defibrillator is on the <b>ground floor</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *This defibrillator is on the <b>ground floor</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
- *This defibrillator is on the <b>first floor</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a> - *This defibrillator is on the <b>first floor</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
@ -137,17 +140,20 @@ This tagrendering is only visible in the popup if the following condition is met
### defibrillator-defibrillator:location ### defibrillator-defibrillator:location
The question is `Please give some explanation on where the defibrillator can be found (in the local language)` The question is `Please give some explanation on where the defibrillator can be found (in the local language)`
*<i>Extra information about the location (in the local language):</i><br/>{defibrillator:location}* is shown if `defibrillator:location` is set
*<i>Extra information about the location (in the local language):</i><br/>{defibrillator:location}* is shown if `defibrillator:location` is set.
### defibrillator-defibrillator:location:en ### defibrillator-defibrillator:location:en
The question is `Please give some explanation on where the defibrillator can be found (in English)` The question is `Please give some explanation on where the defibrillator can be found (in English)`
*<i>Extra information about the location (in English):</i><br/>{defibrillator:location:en}* is shown if `defibrillator:location:en` is set
*<i>Extra information about the location (in English):</i><br/>{defibrillator:location:en}* is shown if `defibrillator:location:en` is set.
### defibrillator-defibrillator:location:fr ### defibrillator-defibrillator:location:fr
The question is `Please give some explanation on where the defibrillator can be found (in French)` The question is `Please give some explanation on where the defibrillator can be found (in French)`
*<i>Extra information about the location (in French):</i><br/>{defibrillator:location:fr}* is shown if `defibrillator:location:fr` is set
*<i>Extra information about the location (in French):</i><br/>{defibrillator:location:fr}* is shown if `defibrillator:location:fr` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:_country' target='_blank'>_country</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_country%3Dbe' target='_blank'>be</a> | defibrillator:location:fr~.+ This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:_country' target='_blank'>_country</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_country%3Dbe' target='_blank'>be</a> | defibrillator:location:fr~.+
@ -163,22 +169,26 @@ The question is `Is this place accessible with a wheelchair?`
### defibrillator-ref ### defibrillator-ref
The question is `What is the official identification number of the device? (if visible on device)` The question is `What is the official identification number of the device? (if visible on device)`
*Official identification number of the device: <i>{ref}</i>* is shown if `ref` is set
*Official identification number of the device: <i>{ref}</i>* is shown if `ref` is set.
### defibrillator-email ### defibrillator-email
The question is `What is the email for questions about this defibrillator?` The question is `What is the email for questions about this defibrillator?`
*Email for questions about this defibrillator: <a href='mailto:{email}'>{email}</a>* is shown if `email` is set
*Email for questions about this defibrillator: <a href='mailto:{email}'>{email}</a>* is shown if `email` is set.
### defibrillator-phone ### defibrillator-phone
The question is `What is the phone number for questions about this defibrillator?` The question is `What is the phone number for questions about this defibrillator?`
*Telephone for questions about this defibrillator: <a href='tel:{phone}'>{phone}</a>* is shown if `phone` is set
*Telephone for questions about this defibrillator: <a href='tel:{phone}'>{phone}</a>* is shown if `phone` is set.
### opening_hours_24_7 ### opening_hours_24_7
The question is `At what times is this defibrillator available?` The question is `At what times is this defibrillator available?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -187,23 +197,27 @@ The question is `At what times is this defibrillator available?`
### defibrillator-description ### defibrillator-description
The question is `Is there any useful information for users that you haven't been able to describe above? (leave blank if no)` The question is `Is there any useful information for users that you haven't been able to describe above? (leave blank if no)`
*Additional information: {description}* is shown if `description` is set
*Additional information: {description}* is shown if `description` is set.
### defibrillator-survey:date ### defibrillator-survey:date
The question is `When was this defibrillator last surveyed?` The question is `When was this defibrillator last surveyed?`
*This defibrillator was last surveyed on {survey:date}* is shown if `survey:date` is set
*This defibrillator was last surveyed on {survey:date}* is shown if `survey:date` is set.
- *Checked today!* is shown if with survey:date= - *Checked today!* is shown if with survey:date=
### defibrillator-fixme ### defibrillator-fixme
The question is `Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)` The question is `Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)`
*Extra information for OpenStreetMap experts: {fixme}* is shown if `fixme` is set
*Extra information for OpenStreetMap experts: {fixme}* is shown if `fixme` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -213,16 +227,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -74,7 +74,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) | | [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) | | [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) | | [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit)}_ | address | _Multiple choice only_ | | [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit,)}_ | address | _Multiple choice only_ |
| [header](#header) <br/> _(Original in [address](./address.md#header))_ | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ | | [header](#header) <br/> _(Original in [address](./address.md#header))_ | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ |
| [housenumber](#housenumber) <br/> _(Original in [address](./address.md#housenumber))_ | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) | | [housenumber](#housenumber) <br/> _(Original in [address](./address.md#housenumber))_ | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) |
| [street](#street) <br/> _(Original in [address](./address.md#street))_ | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) | | [street](#street) <br/> _(Original in [address](./address.md#street))_ | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) |
@ -88,19 +88,22 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -110,7 +113,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -121,7 +125,8 @@ This tagrendering has labels
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -131,7 +136,8 @@ This tagrendering has labels
### address_joined ### address_joined
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{group(header,street;housenumber;unit)}*
*{group(header,street;housenumber;unit,)}*
This tagrendering has labels This tagrendering has labels
`address` `address`
@ -139,6 +145,7 @@ This tagrendering has labels
### header ### header
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{addr:street} <b>{addr:housenumber}</b> {addr:unit}* *{addr:street} <b>{addr:housenumber}</b> {addr:unit}*
- *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber=
@ -150,7 +157,8 @@ This tagrendering has labels
### housenumber ### housenumber
The question is `What is the number of this house?` The question is `What is the number of this house?`
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set.
- *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a> - *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
@ -161,7 +169,8 @@ This tagrendering has labels
### street ### street
The question is `What street is this address located in?` The question is `What street is this address located in?`
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set.
This tagrendering has labels This tagrendering has labels
`address` `address`
@ -170,7 +179,8 @@ This tagrendering has labels
### unit ### unit
The question is `What is the unit number or letter?` The question is `What is the unit number or letter?`
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set.
- *No unit number* is shown if with addr:unit= - *No unit number* is shown if with addr:unit=
@ -181,11 +191,13 @@ This tagrendering has labels
### name ### name
The question is `What is the name of this dentist?` The question is `What is the name of this dentist?`
*This dentist is called {name}* is shown if `name` is set
*This dentist is called {name}* is shown if `name` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -195,16 +207,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -38,6 +38,7 @@ Elements must match **any** of the following expressions:
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -47,6 +48,7 @@ This tagrendering has labels
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -60,12 +60,14 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -75,11 +77,13 @@ This tagrendering has labels
### disaster_response_name ### disaster_response_name
The question is `What is the name of this organization?` The question is `What is the name of this organization?`
*This organization is named <b>{name}</b>* is shown if `name` is set
*This organization is named <b>{name}</b>* is shown if `name` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -89,11 +93,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -79,7 +79,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) | | [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of ?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
| [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) | | [email](#email) <br/> _(Original in [questions](./BuiltinQuestions.md#email))_ | What is the email address of ?<br/>_<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>_<br/>2 options | contact | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
| [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) | | [website](#website) <br/> _(Original in [questions](./BuiltinQuestions.md#website))_ | What is the website of ?<br/>_<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>_<br/>1 options | contact | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
| [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit)}_ | address | _Multiple choice only_ | | [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit,)}_ | address | _Multiple choice only_ |
| [header](#header) <br/> _(Original in [address](./address.md#header))_ | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ | | [header](#header) <br/> _(Original in [address](./address.md#header))_ | _{addr:street} <b>{addr:housenumber}</b> {addr:unit}_<br/>1 options | address, hidden | _Multiple choice only_ |
| [housenumber](#housenumber) <br/> _(Original in [address](./address.md#housenumber))_ | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) | | [housenumber](#housenumber) <br/> _(Original in [address](./address.md#housenumber))_ | What is the number of this house?<br/>_The house number is <b>{addr:housenumber}</b>_<br/>1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) |
| [street](#street) <br/> _(Original in [address](./address.md#street))_ | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) | | [street](#street) <br/> _(Original in [address](./address.md#street))_ | What street is this address located in?<br/>_This address is in street <b>{addr:street}</b>_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) |
@ -93,17 +93,20 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### name ### name
The question is `What is the name of this doctors place?` The question is `What is the name of this doctors place?`
*This doctors place is called {name}* is shown if `name` is set
*This doctors place is called {name}* is shown if `name` is set.
### opening_hours_by_appointment ### opening_hours_by_appointment
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Only by appointment* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment"' target='_blank'>"by appointment"</a> - *Only by appointment* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment"' target='_blank'>"by appointment"</a>
- *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_
@ -112,7 +115,8 @@ The question is `What are the opening hours of {title()}?`
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -122,7 +126,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -133,7 +138,8 @@ This tagrendering has labels
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -143,7 +149,8 @@ This tagrendering has labels
### address_joined ### address_joined
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{group(header,street;housenumber;unit)}*
*{group(header,street;housenumber;unit,)}*
This tagrendering has labels This tagrendering has labels
`address` `address`
@ -151,6 +158,7 @@ This tagrendering has labels
### header ### header
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{addr:street} <b>{addr:housenumber}</b> {addr:unit}* *{addr:street} <b>{addr:housenumber}</b> {addr:unit}*
- *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber=
@ -162,7 +170,8 @@ This tagrendering has labels
### housenumber ### housenumber
The question is `What is the number of this house?` The question is `What is the number of this house?`
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set
*The house number is <b>{addr:housenumber}</b>* is shown if `addr:housenumber` is set.
- *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a> - *This building has no house number* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:nohousenumber' target='_blank'>nohousenumber</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:nohousenumber%3Dyes' target='_blank'>yes</a>
@ -173,7 +182,8 @@ This tagrendering has labels
### street ### street
The question is `What street is this address located in?` The question is `What street is this address located in?`
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set
*This address is in street <b>{addr:street}</b>* is shown if `addr:street` is set.
This tagrendering has labels This tagrendering has labels
`address` `address`
@ -182,7 +192,8 @@ This tagrendering has labels
### unit ### unit
The question is `What is the unit number or letter?` The question is `What is the unit number or letter?`
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set.
- *No unit number* is shown if with addr:unit= - *No unit number* is shown if with addr:unit=
@ -193,7 +204,8 @@ This tagrendering has labels
### specialty ### specialty
The question is `What is this doctor specialized in?` The question is `What is this doctor specialized in?`
*This doctor is specialized in {healthcare:speciality}* is shown if `healthcare:speciality` is set
*This doctor is specialized in {healthcare:speciality}* is shown if `healthcare:speciality` is set.
- *This is a general practitioner* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality' target='_blank'>healthcare:speciality</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgeneral' target='_blank'>general</a> - *This is a general practitioner* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality' target='_blank'>healthcare:speciality</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgeneral' target='_blank'>general</a>
- *This is a gynaecologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality' target='_blank'>healthcare:speciality</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgynaecology' target='_blank'>gynaecology</a> - *This is a gynaecologist* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:healthcare:speciality' target='_blank'>healthcare:speciality</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:healthcare:speciality%3Dgynaecology' target='_blank'>gynaecology</a>
@ -203,6 +215,7 @@ The question is `What is this doctor specialized in?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -212,16 +225,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -51,6 +51,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### barrier ### barrier
@ -65,6 +66,7 @@ The question is `Is this dog toilet fenced?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -74,11 +76,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -79,22 +79,26 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### Name ### Name
The question is `What is the name of this dog park?` The question is `What is the name of this dog park?`
*The name of this dog park is {name}* is shown if `name` is set
*The name of this dog park is {name}* is shown if `name` is set.
### opening_hours_24_7 ### opening_hours_24_7
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -102,7 +106,8 @@ The question is `What are the opening hours of {title()}?`
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -126,11 +131,13 @@ The question is `Does this dog park have a separate fenced in area for small dog
### dogarea ### dogarea
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*This dogpark is {_surface:ha} ha big* *This dogpark is {_surface:ha} ha big*
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -140,11 +147,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -76,7 +76,7 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bottle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bottle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bottle](https://wiki.openstreetmap.org/wiki/Key:bottle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bottle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bottle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bottle](https://wiki.openstreetmap.org/wiki/Key:bottle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/seasonal#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/seasonal/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [seasonal](https://wiki.openstreetmap.org/wiki/Key:seasonal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dno) [summer](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dsummer) [spring;summer;autumn](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dspring;summer;autumn) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/seasonal#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/seasonal/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [seasonal](https://wiki.openstreetmap.org/wiki/Key:seasonal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dno) [summer](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dsummer) [spring;summer;autumn](https://wiki.openstreetmap.org/wiki/Tag:seasonal%3Dspring;summer;autumn) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/opening_hours#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/opening_hours/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artwork_type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artwork_type/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artwork_type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artwork_type/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) [poem](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpoem) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist_name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist_name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/artist_name#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/artist_name/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | |
@ -95,7 +95,7 @@ Elements must match **all** of the following expressions:
| [seasonal](#seasonal) <br/> _(Original in [questions](./BuiltinQuestions.md#seasonal))_ | Is this drinking water point available all year round?<br/>3 options | | _Multiple choice only_ | | [seasonal](#seasonal) <br/> _(Original in [questions](./BuiltinQuestions.md#seasonal))_ | Is this drinking water point available all year round?<br/>3 options | | _Multiple choice only_ |
| [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>3 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) | | [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | What are the opening hours of ?<br/>_<h3>Opening hours</h3>{opening_hours_table(opening_hours)}_<br/>3 options | | *[opening_hours](https://wiki.osm.org/wiki/Key:opening_hours)* ([opening_hours](../SpecialInputElements.md#opening_hours)) |
| [bench-artwork](#bench-artwork) | Does this drinking water fountain have an artistic element?<br/>3 options | | _Multiple choice only_ | | [bench-artwork](#bench-artwork) | Does this drinking water fountain have an artistic element?<br/>3 options | | _Multiple choice only_ |
| [artwork-artwork_type](#artwork-artwork_type) <br/> _(Original in [artwork](./artwork.md#artwork-artwork_type))_ | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>13 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) | | [artwork-artwork_type](#artwork-artwork_type) <br/> _(Original in [artwork](./artwork.md#artwork-artwork_type))_ | What is the type of this artwork?<br/>_This is a {artwork_type}_<br/>14 options | artwork-question | *[artwork_type](https://wiki.osm.org/wiki/Key:artwork_type)* ([string](../SpecialInputElements.md#string)) |
| [artwork-artist-wikidata](#artwork-artist-wikidata) <br/> _(Original in [artwork](./artwork.md#artwork-artist-wikidata))_ | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) | | [artwork-artist-wikidata](#artwork-artist-wikidata) <br/> _(Original in [artwork](./artwork.md#artwork-artist-wikidata))_ | Who made this artwork?<br/>_This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}_ | artwork-question | *[artist:wikidata](https://wiki.osm.org/wiki/Key:artist:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
| [artwork-artist_name](#artwork-artist_name) <br/> _(Original in [artwork](./artwork.md#artwork-artist_name))_ | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) | | [artwork-artist_name](#artwork-artist_name) <br/> _(Original in [artwork](./artwork.md#artwork-artist_name))_ | Which artist created this?<br/>_Created by {artist_name}_ | artwork-question | *[artist_name](https://wiki.osm.org/wiki/Key:artist_name)* ([string](../SpecialInputElements.md#string)) |
| [artwork-website](#artwork-website) <br/> _(Original in [artwork](./artwork.md#artwork-website))_ | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) | | [artwork-website](#artwork-website) <br/> _(Original in [artwork](./artwork.md#artwork-website))_ | Is there a website with more information about this artwork?<br/>_{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}_ | artwork-question | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
@ -109,12 +109,14 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### Still in use? ### Still in use?
The question is `Is this drinking water spot still operational?` The question is `Is this drinking water spot still operational?`
*The operational status is <i>{operational_status}</i>* is shown if `operational_status` is set
*The operational status is <i>{operational_status}</i>* is shown if `operational_status` is set.
- *This drinking water works* is shown if with operational_status= & disused:amenity= - *This drinking water works* is shown if with operational_status= & disused:amenity=
- *This drinking water is broken* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken' target='_blank'>broken</a> - *This drinking water is broken* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operational_status' target='_blank'>operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken' target='_blank'>broken</a>
@ -165,7 +167,8 @@ The question is `Is this drinking water point available all year round?`
### opening_hours_24_7 ### opening_hours_24_7
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *This drinking water fountain is closed this season. As such, the opening hours are not shown.* is shown if with seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)). _This option cannot be chosen as answer_ - *This drinking water fountain is closed this season. As such, the opening hours are not shown.* is shown if with seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)). _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
@ -182,7 +185,8 @@ The question is `Does this drinking water fountain have an artistic element?`
### artwork-artwork_type ### artwork-artwork_type
The question is `What is the type of this artwork?` The question is `What is the type of this artwork?`
*This is a {artwork_type}* is shown if `artwork_type` is set
*This is a {artwork_type}* is shown if `artwork_type` is set.
- *Architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a> - *Architecture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture' target='_blank'>architecture</a>
- *Mural* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a> - *Mural* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural' target='_blank'>mural</a>
@ -197,6 +201,7 @@ The question is `What is the type of this artwork?`
- *Azulejo (Spanish decorative tilework)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a> - *Azulejo (Spanish decorative tilework)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo' target='_blank'>azulejo</a>
- *Tilework* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a> - *Tilework* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework' target='_blank'>tilework</a>
- *Woodcarving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving' target='_blank'>woodcarving</a> - *Woodcarving* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving' target='_blank'>woodcarving</a>
- *Poem* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:artwork_type' target='_blank'>artwork_type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpoem' target='_blank'>poem</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
This tagrendering has labels This tagrendering has labels
@ -205,7 +210,8 @@ This tagrendering has labels
### artwork-artist-wikidata ### artwork-artist-wikidata
The question is `Who made this artwork?` The question is `Who made this artwork?`
*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set
*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
This tagrendering has labels This tagrendering has labels
@ -214,7 +220,8 @@ This tagrendering has labels
### artwork-artist_name ### artwork-artist_name
The question is `Which artist created this?` The question is `Which artist created this?`
*Created by {artist_name}* is shown if `artist_name` is set
*Created by {artist_name}* is shown if `artist_name` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
This tagrendering has labels This tagrendering has labels
@ -223,7 +230,8 @@ This tagrendering has labels
### artwork-website ### artwork-website
The question is `Is there a website with more information about this artwork?` The question is `Is there a website with more information about this artwork?`
*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set
*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
This tagrendering has labels This tagrendering has labels
@ -232,7 +240,8 @@ This tagrendering has labels
### artwork_subject ### artwork_subject
The question is `What does this artwork depict?` The question is `What does this artwork depict?`
*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set
*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork' target='_blank'>artwork</a>
This tagrendering has labels This tagrendering has labels
@ -241,6 +250,7 @@ This tagrendering has labels
### render-closest-drinking-water ### render-closest-drinking-water
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<a href='#{_closest_other_drinking_water_id}'>There is another drinking water fountain at {_closest_other_drinking_water_distance} meters</a>* *<a href='#{_closest_other_drinking_water_id}'>There is another drinking water fountain at {_closest_other_drinking_water_distance} meters</a>*
This tagrendering is only visible in the popup if the following condition is met: _closest_other_drinking_water_id~.+ This tagrendering is only visible in the popup if the following condition is met: _closest_other_drinking_water_id~.+
@ -248,6 +258,7 @@ This tagrendering is only visible in the popup if the following condition is met
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -257,16 +268,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -78,6 +78,7 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### dumpstations-fee ### dumpstations-fee
@ -90,7 +91,8 @@ The question is `Does this place charge a fee?`
### dumpstations-charge ### dumpstations-charge
The question is `How much does this place charge?` The question is `How much does this place charge?`
*This place charges {charge}* is shown if `charge` is set
*This place charges {charge}* is shown if `charge` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
@ -127,11 +129,13 @@ The question is `Who can use this dump station?`
### dumpstations-network ### dumpstations-network
The question is `What network is this place a part of? (skip if none)` The question is `What network is this place a part of? (skip if none)`
*This station is part of network {network}* is shown if `network` is set
*This station is part of network {network}* is shown if `network` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -141,11 +145,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -69,16 +69,19 @@ Elements must match **all** of the following expressions:
### etymology-images-from-wikipedia ### etymology-images-from-wikipedia
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel(name:etymology:wikidata)}* *{image_carousel(name:etymology:wikidata)}*
### wikipedia-etymology ### wikipedia-etymology
The question is `What is the Wikidata-item that this object is named after?` The question is `What is the Wikidata-item that this object is named after?`
*<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set
*<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set.
### zoeken op inventaris onroerend erfgoed ### zoeken op inventaris onroerend erfgoed
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<a href='https://inventaris.onroerenderfgoed.be/erfgoedobjecten?tekst={name}' target='_blank'>Search on inventaris onroerend erfgoed</a>* *<a href='https://inventaris.onroerenderfgoed.be/erfgoedobjecten?tekst={name}' target='_blank'>Search on inventaris onroerend erfgoed</a>*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:_country' target='_blank'>_country</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_country%3Dbe' target='_blank'>be</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:_country' target='_blank'>_country</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_country%3Dbe' target='_blank'>be</a>
@ -86,38 +89,45 @@ This tagrendering is only visible in the popup if the following condition is met
### simple etymology ### simple etymology
The question is `What is this object named after?` The question is `What is this object named after?`
*Named after {name:etymology}* is shown if `name:etymology` is set
*Named after {name:etymology}* is shown if `name:etymology` is set.
- *The origin of this name is unknown in all literature* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a> - *The origin of this name is unknown in all literature* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>
### questions ### questions
Show the questions block at this location Show the questions block at this location
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions()}* *{questions()}*
### streetsign-image-carousel ### streetsign-image-carousel
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel(image:streetsign;panoramax:streetsign)}* *{image_carousel(image:streetsign;panoramax:streetsign)}*
### streetsign-upload ### streetsign-upload
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_upload(image:streetsign,Add image of a street name sign,)}* *{image_upload(image:streetsign,Add image of a street name sign,)}*
### minimap ### minimap
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{minimap(18, id, _same_name_ids):height:10rem}* *{minimap(18, id, _same_name_ids):height:10rem}*
### etymology_multi_apply ### etymology_multi_apply
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}*
### wikipedia ### wikipedia
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}* *A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}*
This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ This tagrendering is only visible in the popup if the following condition is met: wikidata~.+
@ -125,6 +135,7 @@ This tagrendering is only visible in the popup if the following condition is met
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -22,11 +22,11 @@ This layer show elevators and asks for operational status and elevator dimension
- [elevator-depth](#elevator-depth) - [elevator-depth](#elevator-depth)
- [elevator-diameter](#elevator-diameter) - [elevator-diameter](#elevator-diameter)
- [handrail](#handrail) - [handrail](#handrail)
- [induction-loop](#induction-loop)
- [tactile_writing_available](#tactile_writing_available) - [tactile_writing_available](#tactile_writing_available)
- [tactile_writing_language](#tactile_writing_language) - [tactile_writing_language](#tactile_writing_language)
- [speech_output_available](#speech_output_available) - [speech_output_available](#speech_output_available)
- [speech_output](#speech_output) - [speech_output](#speech_output)
- [induction-loop](#induction-loop)
- [leftover-questions](#leftover-questions) - [leftover-questions](#leftover-questions)
- [move-button](#move-button) - [move-button](#move-button)
- [lod](#lod) - [lod](#lod)
@ -65,9 +65,9 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/length#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/length/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [length](https://wiki.openstreetmap.org/wiki/Key:length) | [pfloat](../SpecialInputElements.md#pfloat) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/length#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/length/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [length](https://wiki.openstreetmap.org/wiki/Key:length) | [pfloat](../SpecialInputElements.md#pfloat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diameter#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diameter/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diameter](https://wiki.openstreetmap.org/wiki/Key:diameter) | [pfloat](../SpecialInputElements.md#pfloat) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/diameter#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/diameter/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [diameter](https://wiki.openstreetmap.org/wiki/Key:diameter) | [pfloat](../SpecialInputElements.md#pfloat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/handrail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/handrail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [handrail](https://wiki.openstreetmap.org/wiki/Key:handrail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/handrail#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/handrail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [handrail](https://wiki.openstreetmap.org/wiki/Key:handrail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/hearing_loop#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/hearing_loop/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [hearing_loop](https://wiki.openstreetmap.org/wiki/Key:hearing_loop) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/tactile_writing:braille#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/tactile_writing%3Abraille/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [tactile_writing:braille](https://wiki.openstreetmap.org/wiki/Key:tactile_writing:braille) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing:braille%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing:braille%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/tactile_writing:braille#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/tactile_writing%3Abraille/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [tactile_writing:braille](https://wiki.openstreetmap.org/wiki/Key:tactile_writing:braille) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing:braille%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing:braille%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/speech_output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/speech_output/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [speech_output](https://wiki.openstreetmap.org/wiki/Key:speech_output) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/speech_output#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/speech_output/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [speech_output](https://wiki.openstreetmap.org/wiki/Key:speech_output) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/hearing_loop#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/hearing_loop/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [hearing_loop](https://wiki.openstreetmap.org/wiki/Key:hearing_loop) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno) |
## Featureview elements and TagRenderings ## Featureview elements and TagRenderings
@ -82,11 +82,11 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| [elevator-depth](#elevator-depth) | What is the depth of this elevator?<br/>_This elevator has a depth of {canonical(length)}_ | | *[length](https://wiki.osm.org/wiki/Key:length)* ([pfloat](../SpecialInputElements.md#pfloat)) | | [elevator-depth](#elevator-depth) | What is the depth of this elevator?<br/>_This elevator has a depth of {canonical(length)}_ | | *[length](https://wiki.osm.org/wiki/Key:length)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [elevator-diameter](#elevator-diameter) | What is the diameter of this elevator?<br/>_This elevator has a diameter of {canonical(diameter)}_ | | *[diameter](https://wiki.osm.org/wiki/Key:diameter)* ([pfloat](../SpecialInputElements.md#pfloat)) | | [elevator-diameter](#elevator-diameter) | What is the diameter of this elevator?<br/>_This elevator has a diameter of {canonical(diameter)}_ | | *[diameter](https://wiki.osm.org/wiki/Key:diameter)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [handrail](#handrail) | Is there a handrail in the cabin?<br/>2 options | | _Multiple choice only_ | | [handrail](#handrail) | Is there a handrail in the cabin?<br/>2 options | | _Multiple choice only_ |
| [induction-loop](#induction-loop) <br/> _(Original in [questions](./BuiltinQuestions.md#induction-loop))_ | Does this place have an audio induction loop for people with reduced hearing?<br/>2 options | | _Multiple choice only_ |
| [tactile_writing_available](#tactile_writing_available) | Has this elevator tactile writing?<br/>2 options | | _Multiple choice only_ | | [tactile_writing_available](#tactile_writing_available) | Has this elevator tactile writing?<br/>2 options | | _Multiple choice only_ |
| [tactile_writing_language](#tactile_writing_language) | _{language_chooser(tactile_writing:braille,In which languages does this elevator have tactile writing &LPARENSbraille&RPARENS?,This elevator has tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This elevator has tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}_ | | _Multiple choice only_ | | [tactile_writing_language](#tactile_writing_language) | _{language_chooser(tactile_writing:braille,In which languages does this elevator have tactile writing &LPARENSbraille&RPARENS?,This elevator has tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This elevator has tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}_ | | _Multiple choice only_ |
| [speech_output_available](#speech_output_available) | Has this elevator speech output?<br/>2 options | | _Multiple choice only_ | | [speech_output_available](#speech_output_available) | Has this elevator speech output?<br/>2 options | | _Multiple choice only_ |
| [speech_output](#speech_output) | _{language_chooser(speech_output,In which languages does this elevator have speech output?,This elevator has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This elevator has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}_ | | _Multiple choice only_ | | [speech_output](#speech_output) | _{language_chooser(speech_output,In which languages does this elevator have speech output?,This elevator has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This elevator has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}_ | | _Multiple choice only_ |
| [induction-loop](#induction-loop) <br/> _(Original in [questions](./BuiltinQuestions.md#induction-loop))_ | Does this place have an audio induction loop for people with reduced hearing?<br/>2 options | | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ | | [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ | | [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ | | [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
@ -94,12 +94,14 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### multilevels ### multilevels
The question is `What levels does this elevator go to?` The question is `What levels does this elevator go to?`
*This elevator goes to floors {level}* is shown if `level` is set
*This elevator goes to floors {level}* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -119,7 +121,8 @@ The question is `Does this elevator work?`
### door-width ### door-width
The question is `What is the width of this elevator's entrance?` The question is `What is the width of this elevator's entrance?`
*This elevator's doors have a width of {canonical(door:width)}* is shown if `door:width` is set
*This elevator's doors have a width of {canonical(door:width)}* is shown if `door:width` is set.
### elevator-shape ### elevator-shape
@ -131,17 +134,20 @@ The question is `What shape does this elevator have?`
### elevator-width ### elevator-width
The question is `What is the width of this elevator?` The question is `What is the width of this elevator?`
*This elevator has a width of {canonical(width)}* is shown if `width` is set
*This elevator has a width of {canonical(width)}* is shown if `width` is set.
### elevator-depth ### elevator-depth
The question is `What is the depth of this elevator?` The question is `What is the depth of this elevator?`
*This elevator has a depth of {canonical(length)}* is shown if `length` is set
*This elevator has a depth of {canonical(length)}* is shown if `length` is set.
### elevator-diameter ### elevator-diameter
The question is `What is the diameter of this elevator?` The question is `What is the diameter of this elevator?`
*This elevator has a diameter of {canonical(diameter)}* is shown if `diameter` is set
*This elevator has a diameter of {canonical(diameter)}* is shown if `diameter` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shape' target='_blank'>shape</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shape%3Dcircular' target='_blank'>circular</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:shape' target='_blank'>shape</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shape%3Dcircular' target='_blank'>circular</a>
@ -152,13 +158,6 @@ The question is `Is there a handrail in the cabin?`
- *This elevator has a handrail in the cabin* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:handrail' target='_blank'>handrail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dyes' target='_blank'>yes</a> - *This elevator has a handrail in the cabin* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:handrail' target='_blank'>handrail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dyes' target='_blank'>yes</a>
- *This elevator does not have a handrail* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:handrail' target='_blank'>handrail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dno' target='_blank'>no</a> - *This elevator does not have a handrail* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:handrail' target='_blank'>handrail</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dno' target='_blank'>no</a>
### induction-loop
An accessibility feature: induction loops are for hard-hearing persons which have an FM-receiver.
The question is `Does this place have an audio induction loop for people with reduced hearing?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/audio_induction_loop.svg'> *This place has an audio induction loop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:hearing_loop' target='_blank'>hearing_loop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes' target='_blank'>yes</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/audio_induction_loop_missing.svg'> *This place <b>does not</b> have an audio induction loop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:hearing_loop' target='_blank'>hearing_loop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno' target='_blank'>no</a>
### tactile_writing_available ### tactile_writing_available
The question is `Has this elevator tactile writing?` The question is `Has this elevator tactile writing?`
@ -169,6 +168,7 @@ The question is `Has this elevator tactile writing?`
### tactile_writing_language ### tactile_writing_language
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{language_chooser(tactile_writing:braille,In which languages does this elevator have tactile writing &LPARENSbraille&RPARENS?,This elevator has tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This elevator has tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}* *{language_chooser(tactile_writing:braille,In which languages does this elevator have tactile writing &LPARENSbraille&RPARENS?,This elevator has tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This elevator has tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_writing:braille' target='_blank'>tactile_writing:braille</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_writing:braille%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:tactile_writing:braille' target='_blank'>tactile_writing:braille</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tactile_writing:braille%3Dyes' target='_blank'>yes</a>
@ -183,13 +183,24 @@ The question is `Has this elevator speech output?`
### speech_output ### speech_output
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{language_chooser(speech_output,In which languages does this elevator have speech output?,This elevator has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This elevator has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}* *{language_chooser(speech_output,In which languages does this elevator have speech output?,This elevator has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This elevator has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:speech_output' target='_blank'>speech_output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes' target='_blank'>yes</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:speech_output' target='_blank'>speech_output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes' target='_blank'>yes</a>
### induction-loop
An accessibility feature: induction loops are for hard-hearing persons which have an FM-receiver.
The question is `Does this place have an audio induction loop for people with reduced hearing?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/audio_induction_loop.svg'> *This place has an audio induction loop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:hearing_loop' target='_blank'>hearing_loop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes' target='_blank'>yes</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/audio_induction_loop_missing.svg'> *This place <b>does not</b> have an audio induction loop* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:hearing_loop' target='_blank'>hearing_loop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:speech_output' target='_blank'>speech_output</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes' target='_blank'>yes</a>
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -199,11 +210,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -97,12 +97,14 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### opening_hours_24_7 ### opening_hours_24_7
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -110,7 +112,8 @@ The question is `What are the opening hours of {title()}?`
### designs ### designs
The question is `How many designs are available?` The question is `How many designs are available?`
*This penny press has {coin:design_count} designs available.* is shown if `coin:design_count` is set
*This penny press has {coin:design_count} designs available.* is shown if `coin:design_count` is set.
- *This penny press has one design available.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:coin:design_count' target='_blank'>coin:design_count</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D1' target='_blank'>1</a> - *This penny press has one design available.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:coin:design_count' target='_blank'>coin:design_count</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D1' target='_blank'>1</a>
- *This penny press has two designs available.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:coin:design_count' target='_blank'>coin:design_count</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D2' target='_blank'>2</a> - *This penny press has two designs available.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:coin:design_count' target='_blank'>coin:design_count</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:coin:design_count%3D2' target='_blank'>2</a>
@ -140,7 +143,8 @@ The question is `Which methods of payment are accepted here?`
### coin ### coin
The question is `What coin is used for pressing?` The question is `What coin is used for pressing?`
*This penny press uses a {coin:type} coin for pressing.* is shown if `coin:type` is set
*This penny press uses a {coin:type} coin for pressing.* is shown if `coin:type` is set.
- *This penny press uses a 2 cent coin for pressing.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:coin:type' target='_blank'>coin:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D2cent' target='_blank'>2cent</a> - *This penny press uses a 2 cent coin for pressing.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:coin:type' target='_blank'>coin:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D2cent' target='_blank'>2cent</a>
- *This penny press uses a 5 cent coin for pressing.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:coin:type' target='_blank'>coin:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D5cent' target='_blank'>5cent</a> - *This penny press uses a 5 cent coin for pressing.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:coin:type' target='_blank'>coin:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:coin:type%3D5cent' target='_blank'>5cent</a>
@ -153,7 +157,8 @@ The question is `What coin is used for pressing?`
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -163,7 +168,8 @@ This tagrendering has labels
### charge ### charge
The question is `How much does it cost to press a penny?` The question is `How much does it cost to press a penny?`
*It costs {charge} to press a penny.* is shown if `charge` is set
*It costs {charge} to press a penny.* is shown if `charge` is set.
- *It costs 1 euro to press a penny.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D1 EUR' target='_blank'>1 EUR</a> - *It costs 1 euro to press a penny.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D1 EUR' target='_blank'>1 EUR</a>
- *It costs 2 euros to press a penny.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D2 EUR' target='_blank'>2 EUR</a> - *It costs 2 euros to press a penny.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:charge' target='_blank'>charge</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:charge%3D2 EUR' target='_blank'>2 EUR</a>
@ -202,6 +208,7 @@ The question is `Is the penny press indoors?`
### repeated ### repeated
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {repeat_on}.* *Multiple, identical objects can be found on floors {repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+
@ -211,7 +218,8 @@ This tagrendering has labels
### single_level ### single_level
The question is `On what level is this feature located?` The question is `On what level is this feature located?`
*Located on the {level}th floor* is shown if `level` is set
*Located on the {level}th floor* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -225,13 +233,15 @@ This tagrendering has labels
### check_date ### check_date
The question is `When was this object last checked?` The question is `When was this object last checked?`
*This object was last checked on <b>{check_date}</b>* is shown if `check_date` is set
*This object was last checked on <b>{check_date}</b>* is shown if `check_date` is set.
- *This object was last checked today* is shown if with check_date= - *This object was last checked today* is shown if with check_date=
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -241,16 +251,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -66,7 +66,7 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/door#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/door/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [door](https://wiki.openstreetmap.org/wiki/Key:door) | Multiple choice | [hinged](https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged) [revolving](https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving) [sliding](https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding) [overhead](https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead) [no](https://wiki.openstreetmap.org/wiki/Tag:door%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/door#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/door/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [door](https://wiki.openstreetmap.org/wiki/Key:door) | Multiple choice | [hinged](https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged) [revolving](https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving) [sliding](https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding) [overhead](https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead) [no](https://wiki.openstreetmap.org/wiki/Tag:door%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/automatic_door#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/automatic_door/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [automatic_door](https://wiki.openstreetmap.org/wiki/Key:automatic_door) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno) [motion](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion) [floor](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor) [button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton) [slowdown_button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button) [continuous](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous) [serviced_on_button_press](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press) [serviced_on_request](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/automatic_door#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/automatic_door/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [automatic_door](https://wiki.openstreetmap.org/wiki/Key:automatic_door) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno) [motion](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion) [floor](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor) [button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton) [slowdown_button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button) [continuous](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous) [serviced_on_button_press](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press) [serviced_on_request](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/width#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/width/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [width](https://wiki.openstreetmap.org/wiki/Key:width) | [pfloat](../SpecialInputElements.md#pfloat) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/width#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/width/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [width](https://wiki.openstreetmap.org/wiki/Key:width) | [pfloat](../SpecialInputElements.md#pfloat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/kerb:height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/kerb%3Aheight/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pnat](../SpecialInputElements.md#pnat) | [0](https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/kerb:height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/kerb%3Aheight/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pfloat](../SpecialInputElements.md#pfloat) | [0](https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/ref#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/ref/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:ref%3D) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/ref#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/ref/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:ref%3D) |
## Featureview elements and TagRenderings ## Featureview elements and TagRenderings
@ -80,7 +80,7 @@ Elements must match **any** of the following expressions:
| [Door_type](#Door_type) | What is the type of this door?<br/>6 options | accessibility | _Multiple choice only_ | | [Door_type](#Door_type) | What is the type of this door?<br/>6 options | accessibility | _Multiple choice only_ |
| [automatic_door](#automatic_door) | Is this door automated?<br/>9 options | accessibility | _Multiple choice only_ | | [automatic_door](#automatic_door) | Is this door automated?<br/>9 options | accessibility | _Multiple choice only_ |
| [width](#width) | What is the width of this door/entrance?<br/>_This door has a width of {canonical(width)}_ | accessibility | *[width](https://wiki.osm.org/wiki/Key:width)* ([pfloat](../SpecialInputElements.md#pfloat)) | | [width](#width) | What is the width of this door/entrance?<br/>_This door has a width of {canonical(width)}_ | accessibility | *[width](https://wiki.osm.org/wiki/Key:width)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [kerb-height](#kerb-height) | What is the height of this kerb?<br/>_The kerb height of this door is {kerb:height}_<br/>1 options | accessibility | *[kerb:height](https://wiki.osm.org/wiki/Key:kerb:height)* ([pnat](../SpecialInputElements.md#pnat)) | | [kerb-height](#kerb-height) | What is the height of this kerb?<br/>_The kerb height of this door is {kerb:height}_<br/>1 options | accessibility | *[kerb:height](https://wiki.osm.org/wiki/Key:kerb:height)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [ref](#ref) | Does this door have a reference number?<br/>_This door has <b>{ref}</b> as reference number_<br/>1 options | accessibility | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) | | [ref](#ref) | Does this door have a reference number?<br/>_This door has <b>{ref}</b> as reference number_<br/>1 options | accessibility | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ | | [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ | | [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
@ -89,6 +89,7 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
This tagrendering has labels This tagrendering has labels
@ -97,6 +98,7 @@ This tagrendering has labels
### repeated ### repeated
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {repeat_on}.* *Multiple, identical objects can be found on floors {repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+
@ -106,7 +108,8 @@ This tagrendering has labels
### single_level ### single_level
The question is `On what level is this feature located?` The question is `On what level is this feature located?`
*Located on the {level}th floor* is shown if `level` is set
*Located on the {level}th floor* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -168,7 +171,10 @@ This tagrendering has labels
### width ### width
The question is `What is the width of this door/entrance?` The question is `What is the width of this door/entrance?`
*This door has a width of {canonical(width)}* is shown if `width` is set
*This door has a width of {canonical(width)}* is shown if `width` is set.
The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7.
This tagrendering has labels This tagrendering has labels
`accessibility` `accessibility`
@ -176,7 +182,10 @@ This tagrendering has labels
### kerb-height ### kerb-height
The question is `What is the height of this kerb?` The question is `What is the height of this kerb?`
*The kerb height of this door is {kerb:height}* is shown if `kerb:height` is set
*The kerb height of this door is {kerb:height}* is shown if `kerb:height` is set.
The allowed input is of type pfloat and is in range -infinty until 0.5 (both inclusive). A warning will appear above 0.25.
- *This door does not have a kerb* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:kerb:height' target='_blank'>kerb:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0' target='_blank'>0</a> - *This door does not have a kerb* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:kerb:height' target='_blank'>kerb:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0' target='_blank'>0</a>
@ -186,7 +195,8 @@ This tagrendering has labels
### ref ### ref
The question is `Does this door have a reference number?` The question is `Does this door have a reference number?`
*This door has <b>{ref}</b> as reference number* is shown if `ref` is set
*This door has <b>{ref}</b> as reference number* is shown if `ref` is set.
- *No reference number* is shown if with ref= - *No reference number* is shown if with ref=
@ -196,6 +206,7 @@ This tagrendering has labels
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -205,11 +216,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -68,16 +68,19 @@ Elements must match **any** of the following expressions:
### etymology-images-from-wikipedia ### etymology-images-from-wikipedia
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel(name:etymology:wikidata)}* *{image_carousel(name:etymology:wikidata)}*
### wikipedia-etymology ### wikipedia-etymology
The question is `What is the Wikidata-item that this object is named after?` The question is `What is the Wikidata-item that this object is named after?`
*<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set
*<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set.
### zoeken op inventaris onroerend erfgoed ### zoeken op inventaris onroerend erfgoed
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*<a href='https://inventaris.onroerenderfgoed.be/erfgoedobjecten?tekst={name}' target='_blank'>Search on inventaris onroerend erfgoed</a>* *<a href='https://inventaris.onroerenderfgoed.be/erfgoedobjecten?tekst={name}' target='_blank'>Search on inventaris onroerend erfgoed</a>*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:_country' target='_blank'>_country</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_country%3Dbe' target='_blank'>be</a> This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:_country' target='_blank'>_country</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_country%3Dbe' target='_blank'>be</a>
@ -85,38 +88,45 @@ This tagrendering is only visible in the popup if the following condition is met
### simple etymology ### simple etymology
The question is `What is this object named after?` The question is `What is this object named after?`
*Named after {name:etymology}* is shown if `name:etymology` is set
*Named after {name:etymology}* is shown if `name:etymology` is set.
- *The origin of this name is unknown in all literature* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a> - *The origin of this name is unknown in all literature* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:name:etymology' target='_blank'>name:etymology</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown' target='_blank'>unknown</a>
### questions ### questions
Show the questions block at this location Show the questions block at this location
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions()}* *{questions()}*
### streetsign-image-carousel ### streetsign-image-carousel
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel(image:streetsign;panoramax:streetsign)}* *{image_carousel(image:streetsign;panoramax:streetsign)}*
### streetsign-upload ### streetsign-upload
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_upload(image:streetsign,Add image of a street name sign,)}* *{image_upload(image:streetsign,Add image of a street name sign,)}*
### minimap ### minimap
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{minimap(18, id, _same_name_ids):height:10rem}* *{minimap(18, id, _same_name_ids):height:10rem}*
### etymology_multi_apply ### etymology_multi_apply
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}*
### wikipedia ### wikipedia
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}* *A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}*
This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ This tagrendering is only visible in the popup if the following condition is met: wikidata~.+
@ -124,6 +134,7 @@ This tagrendering is only visible in the popup if the following condition is met
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -0,0 +1,104 @@
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
# excrement_bag_dispenser
Dispensers giving out bags for animal waste
- This layer is shown at zoomlevel **16** and higher
## Table of contents
1. [Themes using this layer](#themes-using-this-layer)
2. [Presets](#presets)
3. [Basic tags for this layer](#basic-tags-for-this-layer)
4. [Supported attributes](#supported-attributes)
5. [Featureview elements and TagRenderings](#featureview-elements-and-tagrenderings)
- [fee](#fee)
- [check_date](#check_date)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [lod](#lod)
## Themes using this layer
- [personal](https://mapcomplete.org/personal)
- [waste](https://mapcomplete.org/waste)
- [waste_basket](https://mapcomplete.org/waste_basket)
## Presets
The following options to create new points are included:
- **an excrement bag dispenser** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dvending_machine' target='_blank'>vending_machine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dexcrement_bags' target='_blank'>excrement_bags</a>
## Basic tags for this layer
Elements must match **all** of the following expressions:
0. <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dvending_machine' target='_blank'>vending_machine</a>
1. <a href='https://wiki.openstreetmap.org/wiki/Key:vending' target='_blank'>vending</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending%3Dexcrement_bags' target='_blank'>excrement_bags</a>
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22vending_machine%22%5D%5B%22vending%22%3D%22excrement_bags%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
## Supported attributes
**Warning:**: this quick overview is incomplete
| attribute | type | values which are supported by this layer |
-----|-----|----- |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/fee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:fee%3D) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/check_date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/check_date/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [check_date](https://wiki.openstreetmap.org/wiki/Key:check_date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:check_date%3D) |
## Featureview elements and TagRenderings
| id | question | labels | freeform key |
-----|-----|-----|----- |
| [fee](#fee) | Does it cost money to use this dispenser?<br/>3 options | | _Multiple choice only_ |
| [check_date](#check_date) <br/> _(Original in [questions](./BuiltinQuestions.md#check_date))_ | When was this object last checked?<br/>_This object was last checked on <b>{check_date}</b>_<br/>1 options | | *[check_date](https://wiki.osm.org/wiki/Key:check_date)* ([date](../SpecialInputElements.md#date)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
### fee
The question is `Does it cost money to use this dispenser?`
- *This dispenser probably gives out bags for free.* is shown if with fee=
- *This dispenser give out bags for a fee.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes' target='_blank'>yes</a>
- *This dispenser gives out bags for free.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fee' target='_blank'>fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno' target='_blank'>no</a>
### check_date
The question is `When was this object last checked?`
*This object was last checked on <b>{check_date}</b>* is shown if `check_date` is set.
- *This object was last checked today* is shown if with check_date=
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}*
This tagrendering has labels
`ignore-docs`
`added_by_default`
### move-button
_This tagrendering has no question and is thus read-only_
*{move_button()}*
### lod
_This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}*
This tagrendering has labels
`added_by_default`
This document is autogenerated from [assets/layers/excrement_bag_dispenser/excrement_bag_dispenser.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/excrement_bag_dispenser/excrement_bag_dispenser.json)

View file

@ -58,7 +58,8 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### extinguisher-location ### extinguisher-location
The question is `Where is it positioned?` The question is `Where is it positioned?`
*Location: {location}* is shown if `location` is set
*Location: {location}* is shown if `location` is set.
- *Found indoors.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor' target='_blank'>indoor</a> - *Found indoors.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor' target='_blank'>indoor</a>
- *Found outdoors.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor' target='_blank'>outdoor</a> - *Found outdoors.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor' target='_blank'>outdoor</a>
@ -66,11 +67,13 @@ The question is `Where is it positioned?`
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -80,11 +83,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -80,12 +80,14 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### facadegardens-direction ### facadegardens-direction
The question is `What is the orientation of the garden?` The question is `What is the orientation of the garden?`
*Orientation: {direction} (where 0=N and 90=O)* is shown if `direction` is set
*Orientation: {direction} (where 0=N and 90=O)* is shown if `direction` is set.
### facadegardens-sunshine ### facadegardens-sunshine
@ -105,7 +107,8 @@ The question is `Is there a water barrel installed for the garden?`
### facadegardens-start_date ### facadegardens-start_date
The question is `When was the garden constructed? (a year is sufficient)` The question is `When was the garden constructed? (a year is sufficient)`
*Construction date of the garden: {start_date}* is shown if `start_date` is set
*Construction date of the garden: {start_date}* is shown if `start_date` is set.
### facadegardens-edible ### facadegardens-edible
@ -126,11 +129,13 @@ The question is `What kinds of plants grow here?`
### facadegardens-description ### facadegardens-description
The question is `Extra describing info about the garden (if needed and not yet described above)` The question is `Extra describing info about the garden (if needed and not yet described above)`
*More details: {description}* is shown if `description` is set
*More details: {description}* is shown if `description` is set.
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -140,16 +145,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -70,29 +70,34 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### station-name ### station-name
The question is `What is the name of this fire station?` The question is `What is the name of this fire station?`
*This station is called {name}.* is shown if `name` is set
*This station is called {name}.* is shown if `name` is set.
### station-street ### station-street
The question is ` What is the street name where the station located?` The question is ` What is the street name where the station located?`
*This station is along a highway called {addr:street}.* is shown if `addr:street` is set
*This station is along a highway called {addr:street}.* is shown if `addr:street` is set.
### station-place ### station-place
The question is `Where is the station located? (e.g. name of neighborhood, villlage, or town)` The question is `Where is the station located? (e.g. name of neighborhood, villlage, or town)`
*This station is found within {addr:place}.* is shown if `addr:place` is set
*This station is found within {addr:place}.* is shown if `addr:place` is set.
### station-agency ### station-agency
The question is `What agency operates this station?` The question is `What agency operates this station?`
*This station is operated by {operator}.* is shown if `operator` is set
*This station is operated by {operator}.* is shown if `operator` is set.
- *Bureau of Fire Protection* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection' target='_blank'>Bureau of Fire Protection</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a> - *Bureau of Fire Protection* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator' target='_blank'>operator</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection' target='_blank'>Bureau of Fire Protection</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
### station-operator ### station-operator
The question is `How is the station operator classified?` The question is `How is the station operator classified?`
*The operator is a(n) {operator:type} entity.* is shown if `operator:type` is set
*The operator is a(n) {operator:type} entity.* is shown if `operator:type` is set.
- *The station is operated by the government.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a> - *The station is operated by the government.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment' target='_blank'>government</a>
- *The station is operated by a community-based, or informal organization.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a> - *The station is operated by a community-based, or informal organization.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:operator:type' target='_blank'>operator:type</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity' target='_blank'>community</a>
@ -102,11 +107,13 @@ The question is `How is the station operator classified?`
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -116,11 +123,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -63,6 +63,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### access ### access
@ -87,6 +88,7 @@ The question is `Is the firepit available all around the year?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -96,16 +98,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -82,19 +82,22 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### name ### name
The question is `What is the name of this fitness centre?` The question is `What is the name of this fitness centre?`
*This fitness centre is called {name}* is shown if `name` is set
*This fitness centre is called {name}* is shown if `name` is set.
- *This fitness centre has no name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a> - *This fitness centre has no name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -104,7 +107,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -115,7 +119,8 @@ This tagrendering has labels
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -125,7 +130,8 @@ This tagrendering has labels
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -141,6 +147,7 @@ The question is `Is this place accessible with a wheelchair?`
### repeated ### repeated
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {repeat_on}.* *Multiple, identical objects can be found on floors {repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+
@ -150,7 +157,8 @@ This tagrendering has labels
### single_level ### single_level
The question is `On what level is this feature located?` The question is `On what level is this feature located?`
*Located on the {level}th floor* is shown if `level` is set
*Located on the {level}th floor* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -164,11 +172,13 @@ This tagrendering has labels
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -178,11 +188,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -69,12 +69,14 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### name ### name
The question is `What is the name of this fitness station?` The question is `What is the name of this fitness station?`
*This fitness station is called {name}* is shown if `name` is set
*This fitness station is called {name}* is shown if `name` is set.
- *This fitness station doesn't have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a> - *This fitness station doesn't have a name* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:noname' target='_blank'>noname</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:noname%3Dyes' target='_blank'>yes</a>
@ -111,12 +113,14 @@ The question is `What kind of equipment does this fitness station have?`
### operator ### operator
The question is `Who maintains this fitness station?` The question is `Who maintains this fitness station?`
*The fitness station is maintained by {operator}.* is shown if `operator` is set
*The fitness station is maintained by {operator}.* is shown if `operator` is set.
### opening_hours_24_7 ### opening_hours_24_7
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/open24_7.svg'> *24/7 opened (including holidays)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7' target='_blank'>24/7</a>
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -124,6 +128,7 @@ The question is `What are the opening hours of {title()}?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -133,11 +138,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -53,13 +53,15 @@ Elements must match **any** of the following expressions:
### fixme ### fixme
The question is `What is wrong with this feature?` The question is `What is wrong with this feature?`
*Fixme Text: {fixme}* is shown if `fixme` is set
*Fixme Text: {fixme}* is shown if `fixme` is set.
- *This issue has been resolved* is shown if with fixme= - *This issue has been resolved* is shown if with fixme=
### note ### note
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Note Text: {note}* *Note Text: {note}*
This tagrendering is only visible in the popup if the following condition is met: note~.+ This tagrendering is only visible in the popup if the following condition is met: note~.+
@ -67,11 +69,13 @@ This tagrendering is only visible in the popup if the following condition is met
### all_tags ### all_tags
Shows a table with all the tags of the feature Shows a table with all the tags of the feature
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{all_tags()}* *{all_tags()}*
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -81,6 +85,7 @@ This tagrendering has labels
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -5,6 +5,7 @@
A layer showing restaurants and fast-food amenities (with a special rendering for friteries) A layer showing restaurants and fast-food amenities (with a special rendering for friteries)
- This layer is shown at zoomlevel **12** and higher - This layer is shown at zoomlevel **12** and higher
- This layer will automatically load [toilet](./toilet.md) into the layout as it depends on it: tagrendering has_toilets needs this layer (has_toilets)
## Table of contents ## Table of contents
@ -32,7 +33,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
- [show-menu-image](#show-menu-image) - [show-menu-image](#show-menu-image)
- [add-menu-image](#add-menu-image) - [add-menu-image](#add-menu-image)
- [menu-website](#menu-website) - [menu-website](#menu-website)
- [Reservation](#reservation) - [reservation](#reservation)
- [Takeaway](#takeaway) - [Takeaway](#takeaway)
- [delivery](#delivery) - [delivery](#delivery)
- [drive-through](#drive-through) - [drive-through](#drive-through)
@ -57,6 +58,43 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
- [internet](#internet) - [internet](#internet)
- [internet-fee](#internet-fee) - [internet-fee](#internet-fee)
- [internet-ssid](#internet-ssid) - [internet-ssid](#internet-ssid)
- [toilets-group](#toilets-group)
- [grouptitle](#grouptitle)
- [has_toilets](#has_toilets)
- [toilets_repeated](#toilets_repeated)
- [toilets_single_level](#toilets_single_level)
- [toilets_toilet-access](#toilets_toilet-access)
- [toilets_toilets-fee](#toilets_toilets-fee)
- [toilets_toilet-charge](#toilets_toilet-charge)
- [toilets_payment-options-split](#toilets_payment-options-split)
- [toilets_gender_segregated](#toilets_gender_segregated)
- [toilets_toilet-supervised](#toilets_toilet-supervised)
- [toilets_description](#toilets_description)
- [toilets_toilets-wheelchair](#toilets_toilets-wheelchair)
- [toilets-type](#toilets-type)
- [toilets-disposal](#toilets-disposal)
- [menstrual_products](#menstrual_products)
- [menstrual_products_location](#menstrual_products_location)
- [toilets-changing-table](#toilets-changing-table)
- [toilet-changing_table:location](#toilet-changing_tablelocation)
- [toilet-has-paper](#toilet-has-paper)
- [toilet-handwashing](#toilet-handwashing)
- [toilet-drying](#toilet-drying)
- [wheelchair-group](#wheelchair-group)
- [wheelchair-picture-carousel](#wheelchair-picture-carousel)
- [wheelchair-picture](#wheelchair-picture)
- [wheelchair-title](#wheelchair-title)
- [toilet-wheelchair-access](#toilet-wheelchair-access)
- [questions-wheelchair](#questions-wheelchair)
- [adult_changing_table_title](#adult_changing_table_title)
- [adult-changing-table](#adult-changing-table)
- [changing_table_adult_height](#changing_table_adult_height)
- [changing_table_adult_adult-changing-table-min_height](#changing_table_adult_adult-changing-table-min_height)
- [changing_table_adult_adult-changing-table-max_height](#changing_table_adult_adult-changing-table-max_height)
- [changing_table_adult_adult-changing-table-mechanism](#changing_table_adult_adult-changing-table-mechanism)
- [changing_table_adult_adult-changing-table-support](#changing_table_adult_adult-changing-table-support)
- [questions-adult-changing-table](#questions-adult-changing-table)
- [toilet-question-box](#toilet-question-box)
- [leftover-questions](#leftover-questions) - [leftover-questions](#leftover-questions)
- [move-button](#move-button) - [move-button](#move-button)
- [delete-button](#delete-button) - [delete-button](#delete-button)
@ -106,7 +144,7 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/phone#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/phone/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/phone#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/phone/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/level/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/level/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cuisine#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cuisine/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) [mexican ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dmexican ) [japanese ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Djapanese ) [chicken ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchicken ) [seafood ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dseafood ) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cuisine#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cuisine/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) [mexican ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dmexican ) [japanese ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Djapanese ) [chicken ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchicken ) [seafood ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dseafood ) [spanish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dspanish) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website:menu#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website%3Amenu/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website:menu](https://wiki.openstreetmap.org/wiki/Key:website:menu) | [url](../SpecialInputElements.md#url) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website:menu#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website%3Amenu/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website:menu](https://wiki.openstreetmap.org/wiki/Key:website:menu) | [url](../SpecialInputElements.md#url) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/reservation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/reservation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/reservation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/reservation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/takeaway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/takeaway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/takeaway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/takeaway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) |
@ -131,6 +169,32 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:ssid#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Assid/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:ssid#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Assid/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dseparate) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Alevel/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:level](https://wiki.openstreetmap.org/wiki/Key:toilets:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D-1) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Aaccess/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:access](https://wiki.openstreetmap.org/wiki/Key:toilets:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dcustomers) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dno) [key](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dkey) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:fee](https://wiki.openstreetmap.org/wiki/Key:toilets:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Acharge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:charge](https://wiki.openstreetmap.org/wiki/Key:toilets:charge) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:gender_segregated#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Agender_segregated/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:gender_segregated](https://wiki.openstreetmap.org/wiki/Key:toilets:gender_segregated) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:gender_segregated%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:gender_segregated%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:supervised#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Asupervised/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:supervised](https://wiki.openstreetmap.org/wiki/Key:toilets:supervised) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dyes) [interval](https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dinterval) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:description#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Adescription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:description](https://wiki.openstreetmap.org/wiki/Key:toilets:description) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Awheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:wheelchair](https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno) [designated](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:position#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Aposition/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:position](https://wiki.openstreetmap.org/wiki/Key:toilets:position) | Multiple choice | [seated](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated) [urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal) [squat](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat) [seated;urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated;urinal) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:disposal#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Adisposal/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:disposal](https://wiki.openstreetmap.org/wiki/Key:toilets:disposal) | Multiple choice | [flush](https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dflush) [pitlatrine](https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dpitlatrine) [bucket](https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dbucket) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:menstrual_products#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Amenstrual_products/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:menstrual_products](https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:menstrual_products:location#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Amenstrual_products%3Alocation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:menstrual_products:location](https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dwheelchair_toilet) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table](https://wiki.openstreetmap.org/wiki/Key:changing_table) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:location#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Alocation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet) [dedicated_room](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:paper_supplied#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Apaper_supplied/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:paper_supplied](https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:handwashing#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Ahandwashing/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:hands_drying#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Ahands_drying/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:hands_drying](https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying) | Multiple choice | [electric_hand_dryer](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Delectric_hand_dryer) [paper_towel](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dpaper_towel) [towel_cabinet](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel_cabinet) [towel](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult:height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult%3Aheight/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult:height](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height) | [pfloat](../SpecialInputElements.md#pfloat) | [adjustable](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height%3Dadjustable) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult:min_height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult%3Amin_height/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult:min_height](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:min_height) | [pfloat](../SpecialInputElements.md#pfloat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult:max_height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult%3Amax_height/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult:max_height](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:max_height) | [pfloat](../SpecialInputElements.md#pfloat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult:height:mechanism#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult%3Aheight%3Amechanism/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult:height:mechanism](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height:mechanism) | Multiple choice | [manual](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height:mechanism%3Dmanual) [electric](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height:mechanism%3Delectric) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult:support#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult%3Asupport/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult:support](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:support) | Multiple choice | [wall_mounted](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dwall_mounted) [legs](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dlegs) [wheels](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dwheels) |
## Featureview elements and TagRenderings ## Featureview elements and TagRenderings
@ -148,11 +212,11 @@ Elements must match **any** of the following expressions:
| [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ | | [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) | | [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [wheelchair-access](#wheelchair-access) <br/> _(Original in [questions](./BuiltinQuestions.md#wheelchair-access))_ | Is this place accessible with a wheelchair?<br/>4 options | | _Multiple choice only_ | | [wheelchair-access](#wheelchair-access) <br/> _(Original in [questions](./BuiltinQuestions.md#wheelchair-access))_ | Is this place accessible with a wheelchair?<br/>4 options | | _Multiple choice only_ |
| [Cuisine](#Cuisine) | What kind of food is served here?<br/>_This place mostly serves {cuisine}_<br/>19 options | | *[cuisine](https://wiki.osm.org/wiki/Key:cuisine)* ([string](../SpecialInputElements.md#string)) | | [Cuisine](#Cuisine) | What kind of food is served here?<br/>_This place mostly serves {cuisine}_<br/>20 options | | *[cuisine](https://wiki.osm.org/wiki/Key:cuisine)* ([string](../SpecialInputElements.md#string)) |
| [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ |
| [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ |
| [menu-website](#menu-website) | On what webpage is the menu published?<br/>_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | | [menu-website](#menu-website) | On what webpage is the menu published?<br/>_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) |
| [Reservation](#Reservation) | Is a reservation required for this place?<br/>4 options | | _Multiple choice only_ | | [reservation](#reservation) <br/> _(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?<br/>4 options | | _Multiple choice only_ |
| [Takeaway](#Takeaway) | Does this place offer take-away?<br/>3 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?<br/>3 options | | _Multiple choice only_ |
| [delivery](#delivery) | Does deliver food to your home?<br/>2 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?<br/>2 options | | _Multiple choice only_ |
| [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?<br/>2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?<br/>2 options | | _Multiple choice only_ |
@ -176,7 +240,44 @@ Elements must match **any** of the following expressions:
| [internet](#internet) <br/> _(Original in [questions](./BuiltinQuestions.md#internet))_ | Does this place offer internet access?<br/>6 options | internet-all | _Multiple choice only_ | | [internet](#internet) <br/> _(Original in [questions](./BuiltinQuestions.md#internet))_ | Does this place offer internet access?<br/>6 options | internet-all | _Multiple choice only_ |
| [internet-fee](#internet-fee) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-fee))_ | Is there a fee for internet access?<br/>3 options | internet-all | _Multiple choice only_ | | [internet-fee](#internet-fee) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-fee))_ | Is there a fee for internet access?<br/>3 options | internet-all | _Multiple choice only_ |
| [internet-ssid](#internet-ssid) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-ssid))_ | What is the network name for the wireless internet access?<br/>_The network name is <b>{internet_access:ssid}</b>_<br/>1 options | internet-all | *[internet_access:ssid](https://wiki.osm.org/wiki/Key:internet_access:ssid)* ([string](../SpecialInputElements.md#string)) | | [internet-ssid](#internet-ssid) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-ssid))_ | What is the network name for the wireless internet access?<br/>_The network name is <b>{internet_access:ssid}</b>_<br/>1 options | internet-all | *[internet_access:ssid](https://wiki.osm.org/wiki/Key:internet_access:ssid)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ | | [toilets-group](#toilets-group) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ |
| [grouptitle](#grouptitle) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_<br/>1 options | all, hidden | _Multiple choice only_ |
| [has_toilets](#has_toilets) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#has_toilets))_ | Has toilets?<br/>3 options | toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_repeated](#toilets_repeated) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_repeated))_ | _Multiple, identical objects can be found on floors {toilets:repeat_on}._ | level, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_single_level](#toilets_single_level) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_single_level))_ | On what level is this feature located?<br/>_Located on the {toilets:level}th floor_<br/>5 options | level, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | *[toilets:level](https://wiki.osm.org/wiki/Key:toilets:level)* ([float](../SpecialInputElements.md#float)) |
| [toilets_toilet-access](#toilets_toilet-access) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_toilet-access))_ | Are these toilets publicly accessible?<br/>_Access is {toilets:access}_<br/>4 options | relevant-questions, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | *[toilets:access](https://wiki.osm.org/wiki/Key:toilets:access)* ([string](../SpecialInputElements.md#string)) |
| [toilets_toilets-fee](#toilets_toilets-fee) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_toilets-fee))_ | Are these toilets free to use?<br/>2 options | relevant-questions, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_toilet-charge](#toilets_toilet-charge) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_toilet-charge))_ | How much does one have to pay for these toilets?<br/>_The fee is {toilets:charge}_ | relevant-questions, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | *[toilets:charge](https://wiki.osm.org/wiki/Key:toilets:charge)* ([string](../SpecialInputElements.md#string)) |
| [toilets_payment-options-split](#toilets_payment-options-split) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_payment-options-split))_ | Which methods of payment are accepted here?<br/>7 options | relevant-questions, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_gender_segregated](#toilets_gender_segregated) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_gender_segregated))_ | Are these toilets gender-segregated?<br/>2 options | relevant-questions, no-prefix, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_toilet-supervised](#toilets_toilet-supervised) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_toilet-supervised))_ | Is this toilets supervised by a person?<br/>3 options | relevant-questions, no-prefix, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_description](#toilets_description) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.<br/>_{toilets:description}_ | amenity-no-prefix, no-prefix, relevant-questions, relevant_questions, toilet-questions, hidden, all | *[toilets:description](https://wiki.osm.org/wiki/Key:toilets:description)* ([text](../SpecialInputElements.md#text)) |
| [toilets_toilets-wheelchair](#toilets_toilets-wheelchair) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_toilets-wheelchair))_ | Is there a dedicated toilet for wheelchair users?<br/>3 options | relevant-questions, wheelchair, hidden, no-prefix, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets-type](#toilets-type) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-type))_ | Which kind of toilets are these?<br/>4 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets-disposal](#toilets-disposal) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-disposal))_ | How is the waste handled?<br/>3 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [menstrual_products](#menstrual_products) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#menstrual_products))_ | Are free, menstrual products distributed here?<br/>3 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [menstrual_products_location](#menstrual_products_location) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#menstrual_products_location))_ | Where are the free menstrual products located?<br/>_The menstrual products are located in {toilets:menstrual_products:location}_<br/>3 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[toilets:menstrual_products:location](https://wiki.osm.org/wiki/Key:toilets:menstrual_products:location)* ([string](../SpecialInputElements.md#string)) |
| [toilets-changing-table](#toilets-changing-table) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-changing-table))_ | Is a changing table (to change diapers) available?<br/>2 options | relevant-questions, no-prefix, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilet-changing_table:location](#toilet-changing_table:location) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-changing_table:location))_ | Where is the changing table located?<br/>_A changing table is located at {changing_table:location}_<br/>4 options | relevant-questions, no-prefix, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[changing_table:location](https://wiki.osm.org/wiki/Key:changing_table:location)* ([string](../SpecialInputElements.md#string)) |
| [toilet-has-paper](#toilet-has-paper) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-has-paper))_ | Does one have to bring their own toilet paper to this toilet?<br/>2 options | relevant-questions, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilet-handwashing](#toilet-handwashing) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-handwashing))_ | Do these toilets have a sink to wash your hands?<br/>2 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilet-drying](#toilet-drying) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-drying))_ | Do these toilets have a device to dry your hands?<br/>5 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [wheelchair-group](#wheelchair-group) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#wheelchair-group))_ | _{group(wheelchair-title,wheelchair;adult-changing-table,)}_ | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [wheelchair-picture-carousel](#wheelchair-picture-carousel) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#wheelchair-picture-carousel))_ | _{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}_ | wheelchair, hidden, relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [wheelchair-picture](#wheelchair-picture) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#wheelchair-picture))_ | _{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}_ | wheelchair, hidden, relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [wheelchair-title](#wheelchair-title) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#wheelchair-title))_ | _Wheelchair accessible toilet_<br/>2 options | hidden, relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilet-wheelchair-access](#toilet-wheelchair-access) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-wheelchair-access))_ | Is the wheelchair-accessible toilet locked?<br/>5 options | hidden, wheelchair, relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [questions-wheelchair](#questions-wheelchair) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#questions-wheelchair))_ | _{questions(wheelchair,,)}_ | wheelchair, hidden, relevant-questions, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [adult_changing_table_title](#adult_changing_table_title) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#adult_changing_table_title))_ | _Adult changing table_ | hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [adult-changing-table](#adult-changing-table) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#adult-changing-table))_ | Does this toilet have an adult changing table?<br/>2 options | prefixed, hidden, relevant-questions, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [changing_table_adult_height](#changing_table_adult_height) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#changing_table_adult_height))_ | What is the height of the adult changing table?<br/>_The changing table is {canonical(changing_table:adult:height)} high_<br/>1 options | relevant_questions, hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[changing_table:adult:height](https://wiki.osm.org/wiki/Key:changing_table:adult:height)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [changing_table_adult_adult-changing-table-min_height](#changing_table_adult_adult-changing-table-min_height) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#changing_table_adult_adult-changing-table-min_height))_ | What is the lowest height the adult changing table can be moved to?<br/>_The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}_ | relevant_questions, hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[changing_table:adult:min_height](https://wiki.osm.org/wiki/Key:changing_table:adult:min_height)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [changing_table_adult_adult-changing-table-max_height](#changing_table_adult_adult-changing-table-max_height) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#changing_table_adult_adult-changing-table-max_height))_ | What is the highest height the adult changing table can be moved to?<br/>_The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}_ | relevant_questions, hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[changing_table:adult:max_height](https://wiki.osm.org/wiki/Key:changing_table:adult:max_height)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [changing_table_adult_adult-changing-table-mechanism](#changing_table_adult_adult-changing-table-mechanism) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#changing_table_adult_adult-changing-table-mechanism))_ | How is the height of the changing table adjusted?<br/>2 options | relevant_questions, hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [changing_table_adult_adult-changing-table-support](#changing_table_adult_adult-changing-table-support) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#changing_table_adult_adult-changing-table-support))_ | How is the adult changing table supported?<br/>3 options | relevant_questions, hidden, prefixed, adult-changing-table, hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [questions-adult-changing-table](#questions-adult-changing-table) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#questions-adult-changing-table))_ | _{questions(adult-changing-table,,yes)}_ | hidden, relevant-questions, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilet-question-box](#toilet-question-box) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-question-box))_ | _{questions(toilet-questions,,)}_ | toilet-questions, all, hidden | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ | | [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ | | [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ | | [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
@ -184,17 +285,20 @@ Elements must match **any** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### Name ### Name
The question is `What is the name of this business?` The question is `What is the name of this business?`
*The name of this business is {name}* is shown if `name` is set
*The name of this business is {name}* is shown if `name` is set.
### Fastfood vs restaurant ### Fastfood vs restaurant
@ -206,14 +310,16 @@ The question is `What type of business is this?`
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -223,7 +329,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -234,7 +341,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -252,6 +360,7 @@ The question is `Which methods of payment are accepted here?`
### repeated ### repeated
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {repeat_on}.* *Multiple, identical objects can be found on floors {repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+
@ -261,7 +370,8 @@ This tagrendering has labels
### single_level ### single_level
The question is `On what level is this feature located?` The question is `On what level is this feature located?`
*Located on the {level}th floor* is shown if `level` is set
*Located on the {level}th floor* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -284,7 +394,8 @@ The question is `Is this place accessible with a wheelchair?`
### Cuisine ### Cuisine
The question is `What kind of food is served here?` The question is `What kind of food is served here?`
*This place mostly serves {cuisine}* is shown if `cuisine` is set
*This place mostly serves {cuisine}* is shown if `cuisine` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🍕'> *Pizzeria* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/🍕'> *Pizzeria* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🍟'> *Friture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/🍟'> *Friture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>
@ -305,23 +416,27 @@ The question is `What kind of food is served here?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🇯🇵'> *Japanese dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Djapanese ' target='_blank'>japanese </a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/🇯🇵'> *Japanese dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Djapanese ' target='_blank'>japanese </a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🐔'> *Chicken based dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchicken ' target='_blank'>chicken </a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/🐔'> *Chicken based dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchicken ' target='_blank'>chicken </a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🐟'> *Seafood dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dseafood ' target='_blank'>seafood </a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/🐟'> *Seafood dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dseafood ' target='_blank'>seafood </a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🇪🇸'> *Spanish dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dspanish' target='_blank'>spanish</a>
### show-menu-image ### show-menu-image
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel(image:menu)}* *{image_carousel(image:menu)}*
### add-menu-image ### add-menu-image
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_upload(image:menu,Add an image from the menu,)}* *{image_upload(image:menu,Add an image from the menu,)}*
### menu-website ### menu-website
The question is `On what webpage is the menu published?` The question is `On what webpage is the menu published?`
*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set
### Reservation *{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set.
### reservation
The question is `Is a reservation required for this place?` The question is `Is a reservation required for this place?`
@ -357,7 +472,8 @@ This tagrendering is only visible in the popup if the following condition is met
### drive-through-opening_hours ### drive-through-opening_hours
The question is `What are the opening hours of the drive-through?` The question is `What are the opening hours of the drive-through?`
*<h3>Drive-through opening hours</h3>{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set
*<h3>Drive-through opening hours</h3>{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set.
- *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through=
@ -550,7 +666,8 @@ This tagrendering has labels
### internet-ssid ### internet-ssid
The question is `What is the network name for the wireless internet access?` The question is `What is the network name for the wireless internet access?`
*The network name is <b>{internet_access:ssid}</b>* is shown if `internet_access:ssid` is set
*The network name is <b>{internet_access:ssid}</b>* is shown if `internet_access:ssid` is set.
- *Telekom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid' target='_blank'>internet_access:ssid</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom' target='_blank'>Telekom</a> - *Telekom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid' target='_blank'>internet_access:ssid</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom' target='_blank'>Telekom</a>
@ -558,10 +675,669 @@ This tagrendering is only visible in the popup if the following condition is met
This tagrendering has labels This tagrendering has labels
`internet-all` `internet-all`
### toilets-group
_This tagrendering has no question and is thus read-only_
*{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}*
This tagrendering has labels
`all`
### grouptitle
_This tagrendering has no question and is thus read-only_
*Toilet information*
- *Does not have toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
This tagrendering has labels
`all`
`hidden`
### has_toilets
The question is `Has {title()} toilets?`
- *Has toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
- *Has no toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
- *The toilets are marked separately on the map* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dseparate' target='_blank'>separate</a>
This tagrendering has labels
`toilet-questions`
`hidden`
`all`
### toilets_repeated
_This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {toilets:repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & toilets:repeat_on~.+
This tagrendering has labels
`level`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_single_level
The question is `On what level is this feature located?`
*Located on the {toilets:level}th floor* is shown if `toilets:level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:location' target='_blank'>toilets:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:level' target='_blank'>toilets:level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D0' target='_blank'>0</a>
- *Located on the ground floor* is shown if with toilets:level=. _This option cannot be chosen as answer_
- *Located on the first floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:level' target='_blank'>toilets:level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D1' target='_blank'>1</a>
- *Located on the first basement level* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:level' target='_blank'>toilets:level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D-1' target='_blank'>-1</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & toilets:repeat_on=
This tagrendering has labels
`level`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_toilet-access
The question is `Are these toilets publicly accessible?`
*Access is {toilets:access}* is shown if `toilets:access` is set.
- *Public access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:access' target='_blank'>toilets:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dyes' target='_blank'>yes</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/key'> *Only access to customers* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:access' target='_blank'>toilets:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dcustomers' target='_blank'>customers</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/lock'> *Not accessible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:access' target='_blank'>toilets:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/key'> *Accessible, but one has to ask a key to enter* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:access' target='_blank'>toilets:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dkey' target='_blank'>key</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_toilets-fee
The question is `Are these toilets free to use?`
- *These are paid toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:fee' target='_blank'>toilets:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dyes' target='_blank'>yes</a>
- *Free to use* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:fee' target='_blank'>toilets:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & toilets:access!=no
This tagrendering has labels
`relevant-questions`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_toilet-charge
The question is `How much does one have to pay for these toilets?`
*The fee is {toilets:charge}* is shown if `toilets:charge` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:fee' target='_blank'>toilets:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_payment-options-split
The question is `Which methods of payment are accepted here?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/cash.svg'> *Cash is accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:cash' target='_blank'>toilets:payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:cash%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_. Unselecting this answer will add toilets:payment:cash=
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/payment_card.svg'> *Payment cards are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:cards' target='_blank'>toilets:payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:cards%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_. Unselecting this answer will add toilets:payment:cards=
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/qrcode.svg'> *Payment by QR-code is possible here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:qr_code' target='_blank'>toilets:payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:qr_code%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:qr_code' target='_blank'>toilets:payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:qr_code%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/coins.svg'> *Coins are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:coins' target='_blank'>toilets:payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:coins%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:coins' target='_blank'>toilets:payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:coins%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/notes.svg'> *Bank notes are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:notes' target='_blank'>toilets:payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:notes%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:notes' target='_blank'>toilets:payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:notes%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/payment_card.svg'> *Debit cards are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:debit_cards' target='_blank'>toilets:payment:debit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:debit_cards%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:debit_cards' target='_blank'>toilets:payment:debit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:debit_cards%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/payment_card.svg'> *Credit cards are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:credit_cards' target='_blank'>toilets:payment:credit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:credit_cards%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:credit_cards' target='_blank'>toilets:payment:credit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:credit_cards%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:fee' target='_blank'>toilets:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_gender_segregated
The question is `Are these toilets gender-segregated?`
- *There is a separate, signposted area for men and women* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:gender_segregated' target='_blank'>toilets:gender_segregated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:gender_segregated%3Dyes' target='_blank'>yes</a>
- *There is no separate, signposted area for men and women* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:gender_segregated' target='_blank'>toilets:gender_segregated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:gender_segregated%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & toilets:toilets:position!=urinal
This tagrendering has labels
`relevant-questions`
`no-prefix`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_toilet-supervised
The question is `Is this toilets supervised by a person?`
- *There is a person supervising these toilets during (most of) the opening hours* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:supervised' target='_blank'>toilets:supervised</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dyes' target='_blank'>yes</a>
- *There is a person supervising these toilets, but they are present only during certain times of the opening hours* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:supervised' target='_blank'>toilets:supervised</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dinterval' target='_blank'>interval</a>
- *These toilets are not supervised* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:supervised' target='_blank'>toilets:supervised</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:toilets:access' target='_blank'>toilets:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dyes' target='_blank'>yes</a> | toilets:access=)
This tagrendering has labels
`relevant-questions`
`no-prefix`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_description
The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.`
*{toilets:description}* is shown if `toilets:description` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`amenity-no-prefix`
`no-prefix`
`relevant-questions`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_toilets-wheelchair
The question is `Is there a dedicated toilet for wheelchair users?`
- *There is a dedicated toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes' target='_blank'>yes</a>
- *No wheelchair access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno' target='_blank'>no</a>
- *There is only a dedicated toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated' target='_blank'>designated</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`wheelchair`
`hidden`
`no-prefix`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets-type
The question is `Which kind of toilets are these?`
- *There are only seated toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:position' target='_blank'>toilets:position</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated' target='_blank'>seated</a>
- *There are only urinals here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:position' target='_blank'>toilets:position</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal' target='_blank'>urinal</a>
- *There are only squat toilets here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:position' target='_blank'>toilets:position</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat' target='_blank'>squat</a>
- *Both seated toilets and urinals are available here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:position' target='_blank'>toilets:position</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated;urinal' target='_blank'>seated;urinal</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets-disposal
The question is `How is the waste handled?`
- *The waste is moved away by flushing the toilet with water* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:disposal' target='_blank'>toilets:disposal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dflush' target='_blank'>flush</a>
- *The waste falls into a pit* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:disposal' target='_blank'>toilets:disposal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dpitlatrine' target='_blank'>pitlatrine</a>
- *The waste is collected in a bucket or similar container, which is regularly removed* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:disposal' target='_blank'>toilets:disposal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dbucket' target='_blank'>bucket</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### menstrual_products
The question is `Are free, menstrual products distributed here?`
- *Free menstrual products are available to all visitors of these toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products' target='_blank'>toilets:menstrual_products</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dyes' target='_blank'>yes</a>
- *Free menstrual products are available to some visitors of these toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products' target='_blank'>toilets:menstrual_products</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dlimited' target='_blank'>limited</a>
- *No free menstrual products are available here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products' target='_blank'>toilets:menstrual_products</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### menstrual_products_location
The question is `Where are the free menstrual products located?`
*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set.
- *The free, menstrual products are located in the toilet for women* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location' target='_blank'>toilets:menstrual_products:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dfemale_toilet' target='_blank'>female_toilet</a>
- *The free, menstrual products are located in the toilet for men* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location' target='_blank'>toilets:menstrual_products:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dmale_toilet' target='_blank'>male_toilet</a>
- *The free, menstrual products are located in the toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location' target='_blank'>toilets:menstrual_products:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dwheelchair_toilet' target='_blank'>wheelchair_toilet</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products' target='_blank'>toilets:menstrual_products</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dlimited' target='_blank'>limited</a> | toilets:menstrual_products:location~.+)
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets-changing-table
The question is `Is a changing table (to change diapers) available?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/toilet/baby.svg'> *A changing table is available* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table' target='_blank'>changing_table</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes' target='_blank'>yes</a>
- *No changing table is available* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table' target='_blank'>changing_table</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`no-prefix`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-changing_table:location
The question is `Where is the changing table located?`
*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set.
- *A changing table is in the toilet for women* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:location' target='_blank'>changing_table:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet' target='_blank'>female_toilet</a>
- *A changing table is in the toilet for men* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:location' target='_blank'>changing_table:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet' target='_blank'>male_toilet</a>
- *A changing table is in the toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:location' target='_blank'>changing_table:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet' target='_blank'>wheelchair_toilet</a>
- *A changing table is in a dedicated room* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:location' target='_blank'>changing_table:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room' target='_blank'>dedicated_room</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table' target='_blank'>changing_table</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`no-prefix`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-has-paper
The question is `Does one have to bring their own toilet paper to this toilet?`
- *This toilet is equipped with toilet paper* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied' target='_blank'>toilets:paper_supplied</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes' target='_blank'>yes</a>
- *You have to bring your own toilet paper to this toilet* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied' target='_blank'>toilets:paper_supplied</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & toilets:position!=urinal
This tagrendering has labels
`relevant-questions`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-handwashing
The question is `Do these toilets have a sink to wash your hands?`
- *These toilets have a sink to wash your hands* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing' target='_blank'>toilets:handwashing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes' target='_blank'>yes</a>
- *These toilets <b>don't</b> have a sink to wash your hands* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing' target='_blank'>toilets:handwashing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-drying
The question is `Do these toilets have a device to dry your hands?`
- *Electric hand dryers are available for drying hands.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying' target='_blank'>toilets:hands_drying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Delectric_hand_dryer' target='_blank'>electric_hand_dryer</a>
- *Paper towels are available for drying hands.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying' target='_blank'>toilets:hands_drying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dpaper_towel' target='_blank'>paper_towel</a>
- *A towel roll cabinet is available for drying hands* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying' target='_blank'>toilets:hands_drying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel_cabinet' target='_blank'>towel_cabinet</a>
- *A fabric towel available to dry your hands.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying' target='_blank'>toilets:hands_drying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel' target='_blank'>towel</a>
- *There are no hand drying facilities available.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying' target='_blank'>toilets:hands_drying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing' target='_blank'>toilets:handwashing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### wheelchair-group
_This tagrendering has no question and is thus read-only_
*{group(wheelchair-title,wheelchair;adult-changing-table,)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### wheelchair-picture-carousel
_This tagrendering has no question and is thus read-only_
*{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>)
This tagrendering has labels
`wheelchair`
`hidden`
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### wheelchair-picture
_This tagrendering has no question and is thus read-only_
*{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>)
This tagrendering has labels
`wheelchair`
`hidden`
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### wheelchair-title
_This tagrendering has no question and is thus read-only_
*Wheelchair accessible toilet*
- *Wheelchair accessibility features* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated' target='_blank'>designated</a>
- *No wheelchair accessible toilet* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`hidden`
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-wheelchair-access
The question is `Is the wheelchair-accessible toilet locked?`
- *The wheelchair accessible toilets are freely accessible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:access' target='_blank'>toilets:wheelchair:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:access%3Dyes' target='_blank'>yes</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/key'> *One needs to ask permission to access wheelchair-accessible toilet, e.g. by asking a key* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:access' target='_blank'>toilets:wheelchair:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:access%3Dkey' target='_blank'>key</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/toilet/MLAK.svg'> *One can use a <i>Master Locksmiths Access Key</i> <b>(MLAK)</b> to access this bathroom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:centralkey' target='_blank'>centralkey</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:centralkey%3Dmlak' target='_blank'>mlak</a>
- *One can use a <b>RADAR Key</b> to access this bathroom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:centralkey' target='_blank'>centralkey</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:centralkey%3Dnks' target='_blank'>nks</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/toilet/eurokey.svg'> *One can use a <b>EuroKey</b> to access this bathroom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:centralkey' target='_blank'>centralkey</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:centralkey%3Deurokey' target='_blank'>eurokey</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>) & (<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a> | access=)
This tagrendering has labels
`hidden`
`wheelchair`
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### questions-wheelchair
_This tagrendering has no question and is thus read-only_
*{questions(wheelchair,,)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`wheelchair`
`hidden`
`relevant-questions`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### adult_changing_table_title
_This tagrendering has no question and is thus read-only_
*Adult changing table*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### adult-changing-table
The question is `Does this toilet have an adult changing table?`
- *Has a changing table for adults* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a>
- *No changing table for adults* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`prefixed`
`hidden`
`relevant-questions`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### changing_table_adult_height
The question is `What is the height of the adult changing table?`
*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set.
The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7.
- *The changing table is <b>adjustable in height</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height' target='_blank'>changing_table:adult:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height%3Dadjustable' target='_blank'>adjustable</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### changing_table_adult_adult-changing-table-min_height
The question is `What is the lowest height the adult changing table can be moved to?`
*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set.
The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height' target='_blank'>changing_table:adult:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height%3Dadjustable' target='_blank'>adjustable</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### changing_table_adult_adult-changing-table-max_height
The question is `What is the highest height the adult changing table can be moved to?`
*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set.
The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height' target='_blank'>changing_table:adult:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height%3Dadjustable' target='_blank'>adjustable</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### changing_table_adult_adult-changing-table-mechanism
The question is `How is the height of the changing table adjusted?`
- *The height of the adult changing table is adjusted <b>manually</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height:mechanism' target='_blank'>changing_table:adult:height:mechanism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height:mechanism%3Dmanual' target='_blank'>manual</a>
- *The height of the adult changing table is adjusted <b>electrically</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height:mechanism' target='_blank'>changing_table:adult:height:mechanism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height:mechanism%3Delectric' target='_blank'>electric</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height' target='_blank'>changing_table:adult:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height%3Dadjustable' target='_blank'>adjustable</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### changing_table_adult_adult-changing-table-support
The question is `How is the adult changing table supported?`
- *The changing table is mounted to the wall* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:support' target='_blank'>changing_table:adult:support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dwall_mounted' target='_blank'>wall_mounted</a>
- *The changing table stands on table legs* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:support' target='_blank'>changing_table:adult:support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dlegs' target='_blank'>legs</a>
- *The changing table stands on table legs <b>with wheels</b> and can be moved* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:support' target='_blank'>changing_table:adult:support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dwheels' target='_blank'>wheels</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### questions-adult-changing-table
_This tagrendering has no question and is thus read-only_
*{questions(adult-changing-table,,yes)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`hidden`
`relevant-questions`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-question-box
_This tagrendering has no question and is thus read-only_
*{questions(toilet-questions,,)}*
This tagrendering has labels
`toilet-questions`
`all`
`hidden`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}*
*{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}*
This tagrendering has labels This tagrendering has labels
`ignore-docs` `ignore-docs`
@ -570,16 +1346,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels
@ -673,6 +1452,7 @@ This tagrendering has labels
| Cuisine.17 | Japanese dishes are served here | cuisine=japanese | | Cuisine.17 | Japanese dishes are served here | cuisine=japanese |
| Cuisine.18 | Chicken based dishes are served here | cuisine=chicken | | Cuisine.18 | Chicken based dishes are served here | cuisine=chicken |
| Cuisine.19 | Seafood dishes are served here | cuisine=seafood | | Cuisine.19 | Seafood dishes are served here | cuisine=seafood |
| Cuisine.20 | Spanish dishes are served here | cuisine=spanish |
| id | question | osmTags | | id | question | osmTags |
-----|-----|----- | -----|-----|----- |

View file

@ -71,22 +71,26 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
### name ### name
The question is `What is the name of this food court?` The question is `What is the name of this food court?`
*This food court is called <b>{name}</b>.* is shown if `name` is set
*This food court is called <b>{name}</b>.* is shown if `name` is set.
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
@ -102,7 +106,8 @@ The question is `Is this place accessible with a wheelchair?`
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -112,7 +117,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -130,6 +136,7 @@ The question is `Is smoking allowed at {title()}?`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}* *{questions( ,hidden)}*
This tagrendering has labels This tagrendering has labels
@ -139,11 +146,13 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels

View file

@ -7,6 +7,7 @@ This layer is based on [food](../Layers/food.md)
A layer showing restaurants and fast-food amenities (with a special rendering for friteries) A layer showing restaurants and fast-food amenities (with a special rendering for friteries)
- This layer is shown at zoomlevel **12** and higher - This layer is shown at zoomlevel **12** and higher
- This layer will automatically load [toilet](./toilet.md) into the layout as it depends on it: tagrendering has_toilets needs this layer (has_toilets)
## Table of contents ## Table of contents
@ -33,7 +34,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
- [show-menu-image](#show-menu-image) - [show-menu-image](#show-menu-image)
- [add-menu-image](#add-menu-image) - [add-menu-image](#add-menu-image)
- [menu-website](#menu-website) - [menu-website](#menu-website)
- [Reservation](#reservation) - [reservation](#reservation)
- [Takeaway](#takeaway) - [Takeaway](#takeaway)
- [delivery](#delivery) - [delivery](#delivery)
- [drive-through](#drive-through) - [drive-through](#drive-through)
@ -58,6 +59,43 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo
- [internet](#internet) - [internet](#internet)
- [internet-fee](#internet-fee) - [internet-fee](#internet-fee)
- [internet-ssid](#internet-ssid) - [internet-ssid](#internet-ssid)
- [toilets-group](#toilets-group)
- [grouptitle](#grouptitle)
- [has_toilets](#has_toilets)
- [toilets_repeated](#toilets_repeated)
- [toilets_single_level](#toilets_single_level)
- [toilets_toilet-access](#toilets_toilet-access)
- [toilets_toilets-fee](#toilets_toilets-fee)
- [toilets_toilet-charge](#toilets_toilet-charge)
- [toilets_payment-options-split](#toilets_payment-options-split)
- [toilets_gender_segregated](#toilets_gender_segregated)
- [toilets_toilet-supervised](#toilets_toilet-supervised)
- [toilets_description](#toilets_description)
- [toilets_toilets-wheelchair](#toilets_toilets-wheelchair)
- [toilets-type](#toilets-type)
- [toilets-disposal](#toilets-disposal)
- [menstrual_products](#menstrual_products)
- [menstrual_products_location](#menstrual_products_location)
- [toilets-changing-table](#toilets-changing-table)
- [toilet-changing_table:location](#toilet-changing_tablelocation)
- [toilet-has-paper](#toilet-has-paper)
- [toilet-handwashing](#toilet-handwashing)
- [toilet-drying](#toilet-drying)
- [wheelchair-group](#wheelchair-group)
- [wheelchair-picture-carousel](#wheelchair-picture-carousel)
- [wheelchair-picture](#wheelchair-picture)
- [wheelchair-title](#wheelchair-title)
- [toilet-wheelchair-access](#toilet-wheelchair-access)
- [questions-wheelchair](#questions-wheelchair)
- [adult_changing_table_title](#adult_changing_table_title)
- [adult-changing-table](#adult-changing-table)
- [changing_table_adult_height](#changing_table_adult_height)
- [changing_table_adult_adult-changing-table-min_height](#changing_table_adult_adult-changing-table-min_height)
- [changing_table_adult_adult-changing-table-max_height](#changing_table_adult_adult-changing-table-max_height)
- [changing_table_adult_adult-changing-table-mechanism](#changing_table_adult_adult-changing-table-mechanism)
- [changing_table_adult_adult-changing-table-support](#changing_table_adult_adult-changing-table-support)
- [questions-adult-changing-table](#questions-adult-changing-table)
- [toilet-question-box](#toilet-question-box)
- [leftover-questions](#leftover-questions) - [leftover-questions](#leftover-questions)
- [move-button](#move-button) - [move-button](#move-button)
- [delete-button](#delete-button) - [delete-button](#delete-button)
@ -91,7 +129,7 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/phone#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/phone/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/phone#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/phone/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/level/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/level/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cuisine#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cuisine/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) [mexican ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dmexican ) [japanese ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Djapanese ) [chicken ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchicken ) [seafood ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dseafood ) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cuisine#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cuisine/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) [mexican ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dmexican ) [japanese ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Djapanese ) [chicken ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchicken ) [seafood ](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dseafood ) [spanish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dspanish) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website:menu#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website%3Amenu/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website:menu](https://wiki.openstreetmap.org/wiki/Key:website:menu) | [url](../SpecialInputElements.md#url) | | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/website:menu#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/website%3Amenu/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [website:menu](https://wiki.openstreetmap.org/wiki/Key:website:menu) | [url](../SpecialInputElements.md#url) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/reservation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/reservation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/reservation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/reservation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/takeaway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/takeaway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/takeaway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/takeaway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) |
@ -116,6 +154,32 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) [terminal](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal) [wired](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwired) [terminal;wlan](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dterminal;wlan) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) [customers](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dcustomers) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:ssid#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Assid/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) | | <a target="_blank" href='https://taginfo.openstreetmap.org/keys/internet_access:ssid#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/internet_access%3Assid/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [internet_access:ssid](https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid) | [string](../SpecialInputElements.md#string) | [Telekom](https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dseparate) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Alevel/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:level](https://wiki.openstreetmap.org/wiki/Key:toilets:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D-1) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:access#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Aaccess/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:access](https://wiki.openstreetmap.org/wiki/Key:toilets:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dcustomers) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dno) [key](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dkey) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:fee#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Afee/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:fee](https://wiki.openstreetmap.org/wiki/Key:toilets:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:charge#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Acharge/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:charge](https://wiki.openstreetmap.org/wiki/Key:toilets:charge) | [string](../SpecialInputElements.md#string) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:gender_segregated#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Agender_segregated/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:gender_segregated](https://wiki.openstreetmap.org/wiki/Key:toilets:gender_segregated) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:gender_segregated%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:gender_segregated%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:supervised#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Asupervised/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:supervised](https://wiki.openstreetmap.org/wiki/Key:toilets:supervised) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dyes) [interval](https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dinterval) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:description#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Adescription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:description](https://wiki.openstreetmap.org/wiki/Key:toilets:description) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Awheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:wheelchair](https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno) [designated](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:position#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Aposition/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:position](https://wiki.openstreetmap.org/wiki/Key:toilets:position) | Multiple choice | [seated](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated) [urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal) [squat](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat) [seated;urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated;urinal) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:disposal#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Adisposal/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:disposal](https://wiki.openstreetmap.org/wiki/Key:toilets:disposal) | Multiple choice | [flush](https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dflush) [pitlatrine](https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dpitlatrine) [bucket](https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dbucket) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:menstrual_products#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Amenstrual_products/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:menstrual_products](https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:menstrual_products:location#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Amenstrual_products%3Alocation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:menstrual_products:location](https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dwheelchair_toilet) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table](https://wiki.openstreetmap.org/wiki/Key:changing_table) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:location#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Alocation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet) [dedicated_room](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:paper_supplied#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Apaper_supplied/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:paper_supplied](https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:handwashing#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Ahandwashing/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:hands_drying#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Ahands_drying/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:hands_drying](https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying) | Multiple choice | [electric_hand_dryer](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Delectric_hand_dryer) [paper_towel](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dpaper_towel) [towel_cabinet](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel_cabinet) [towel](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wheelchair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wheelchair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult:height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult%3Aheight/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult:height](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height) | [pfloat](../SpecialInputElements.md#pfloat) | [adjustable](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height%3Dadjustable) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult:min_height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult%3Amin_height/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult:min_height](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:min_height) | [pfloat](../SpecialInputElements.md#pfloat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult:max_height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult%3Amax_height/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult:max_height](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:max_height) | [pfloat](../SpecialInputElements.md#pfloat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult:height:mechanism#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult%3Aheight%3Amechanism/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult:height:mechanism](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height:mechanism) | Multiple choice | [manual](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height:mechanism%3Dmanual) [electric](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height:mechanism%3Delectric) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:adult:support#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Aadult%3Asupport/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:adult:support](https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:support) | Multiple choice | [wall_mounted](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dwall_mounted) [legs](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dlegs) [wheels](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dwheels) |
## Featureview elements and TagRenderings ## Featureview elements and TagRenderings
@ -133,11 +197,11 @@ Elements must match **all** of the following expressions:
| [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ | | [repeated](#repeated) <br/> _(Original in [questions](./BuiltinQuestions.md#repeated))_ | _Multiple, identical objects can be found on floors {repeat_on}._ | level | _Multiple choice only_ |
| [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) | | [single_level](#single_level) <br/> _(Original in [questions](./BuiltinQuestions.md#single_level))_ | On what level is this feature located?<br/>_Located on the {level}th floor_<br/>5 options | level | *[level](https://wiki.osm.org/wiki/Key:level)* ([float](../SpecialInputElements.md#float)) |
| [wheelchair-access](#wheelchair-access) <br/> _(Original in [questions](./BuiltinQuestions.md#wheelchair-access))_ | Is this place accessible with a wheelchair?<br/>4 options | | _Multiple choice only_ | | [wheelchair-access](#wheelchair-access) <br/> _(Original in [questions](./BuiltinQuestions.md#wheelchair-access))_ | Is this place accessible with a wheelchair?<br/>4 options | | _Multiple choice only_ |
| [Cuisine](#Cuisine) | What kind of food is served here?<br/>_This place mostly serves {cuisine}_<br/>19 options | | *[cuisine](https://wiki.osm.org/wiki/Key:cuisine)* ([string](../SpecialInputElements.md#string)) | | [Cuisine](#Cuisine) | What kind of food is served here?<br/>_This place mostly serves {cuisine}_<br/>20 options | | *[cuisine](https://wiki.osm.org/wiki/Key:cuisine)* ([string](../SpecialInputElements.md#string)) |
| [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ |
| [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ |
| [menu-website](#menu-website) | On what webpage is the menu published?<br/>_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | | [menu-website](#menu-website) | On what webpage is the menu published?<br/>_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) |
| [Reservation](#Reservation) | Is a reservation required for this place?<br/>4 options | | _Multiple choice only_ | | [reservation](#reservation) <br/> _(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?<br/>4 options | | _Multiple choice only_ |
| [Takeaway](#Takeaway) | Does this place offer take-away?<br/>3 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?<br/>3 options | | _Multiple choice only_ |
| [delivery](#delivery) | Does deliver food to your home?<br/>2 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?<br/>2 options | | _Multiple choice only_ |
| [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?<br/>2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?<br/>2 options | | _Multiple choice only_ |
@ -161,7 +225,44 @@ Elements must match **all** of the following expressions:
| [internet](#internet) <br/> _(Original in [questions](./BuiltinQuestions.md#internet))_ | Does this place offer internet access?<br/>6 options | internet-all | _Multiple choice only_ | | [internet](#internet) <br/> _(Original in [questions](./BuiltinQuestions.md#internet))_ | Does this place offer internet access?<br/>6 options | internet-all | _Multiple choice only_ |
| [internet-fee](#internet-fee) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-fee))_ | Is there a fee for internet access?<br/>3 options | internet-all | _Multiple choice only_ | | [internet-fee](#internet-fee) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-fee))_ | Is there a fee for internet access?<br/>3 options | internet-all | _Multiple choice only_ |
| [internet-ssid](#internet-ssid) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-ssid))_ | What is the network name for the wireless internet access?<br/>_The network name is <b>{internet_access:ssid}</b>_<br/>1 options | internet-all | *[internet_access:ssid](https://wiki.osm.org/wiki/Key:internet_access:ssid)* ([string](../SpecialInputElements.md#string)) | | [internet-ssid](#internet-ssid) <br/> _(Original in [questions](./BuiltinQuestions.md#internet-ssid))_ | What is the network name for the wireless internet access?<br/>_The network name is <b>{internet_access:ssid}</b>_<br/>1 options | internet-all | *[internet_access:ssid](https://wiki.osm.org/wiki/Key:internet_access:ssid)* ([string](../SpecialInputElements.md#string)) |
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ | | [toilets-group](#toilets-group) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ |
| [grouptitle](#grouptitle) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_<br/>1 options | all, hidden | _Multiple choice only_ |
| [has_toilets](#has_toilets) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#has_toilets))_ | Has toilets?<br/>3 options | toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_repeated](#toilets_repeated) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_repeated))_ | _Multiple, identical objects can be found on floors {toilets:repeat_on}._ | level, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_single_level](#toilets_single_level) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_single_level))_ | On what level is this feature located?<br/>_Located on the {toilets:level}th floor_<br/>5 options | level, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | *[toilets:level](https://wiki.osm.org/wiki/Key:toilets:level)* ([float](../SpecialInputElements.md#float)) |
| [toilets_toilet-access](#toilets_toilet-access) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_toilet-access))_ | Are these toilets publicly accessible?<br/>_Access is {toilets:access}_<br/>4 options | relevant-questions, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | *[toilets:access](https://wiki.osm.org/wiki/Key:toilets:access)* ([string](../SpecialInputElements.md#string)) |
| [toilets_toilets-fee](#toilets_toilets-fee) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_toilets-fee))_ | Are these toilets free to use?<br/>2 options | relevant-questions, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_toilet-charge](#toilets_toilet-charge) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_toilet-charge))_ | How much does one have to pay for these toilets?<br/>_The fee is {toilets:charge}_ | relevant-questions, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | *[toilets:charge](https://wiki.osm.org/wiki/Key:toilets:charge)* ([string](../SpecialInputElements.md#string)) |
| [toilets_payment-options-split](#toilets_payment-options-split) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_payment-options-split))_ | Which methods of payment are accepted here?<br/>7 options | relevant-questions, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_gender_segregated](#toilets_gender_segregated) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_gender_segregated))_ | Are these toilets gender-segregated?<br/>2 options | relevant-questions, no-prefix, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_toilet-supervised](#toilets_toilet-supervised) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_toilet-supervised))_ | Is this toilets supervised by a person?<br/>3 options | relevant-questions, no-prefix, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets_description](#toilets_description) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.<br/>_{toilets:description}_ | amenity-no-prefix, no-prefix, relevant-questions, relevant_questions, toilet-questions, hidden, all | *[toilets:description](https://wiki.osm.org/wiki/Key:toilets:description)* ([text](../SpecialInputElements.md#text)) |
| [toilets_toilets-wheelchair](#toilets_toilets-wheelchair) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_toilets-wheelchair))_ | Is there a dedicated toilet for wheelchair users?<br/>3 options | relevant-questions, wheelchair, hidden, no-prefix, amenity-no-prefix, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets-type](#toilets-type) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-type))_ | Which kind of toilets are these?<br/>4 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilets-disposal](#toilets-disposal) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-disposal))_ | How is the waste handled?<br/>3 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [menstrual_products](#menstrual_products) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#menstrual_products))_ | Are free, menstrual products distributed here?<br/>3 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [menstrual_products_location](#menstrual_products_location) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#menstrual_products_location))_ | Where are the free menstrual products located?<br/>_The menstrual products are located in {toilets:menstrual_products:location}_<br/>3 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[toilets:menstrual_products:location](https://wiki.osm.org/wiki/Key:toilets:menstrual_products:location)* ([string](../SpecialInputElements.md#string)) |
| [toilets-changing-table](#toilets-changing-table) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-changing-table))_ | Is a changing table (to change diapers) available?<br/>2 options | relevant-questions, no-prefix, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilet-changing_table:location](#toilet-changing_table:location) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-changing_table:location))_ | Where is the changing table located?<br/>_A changing table is located at {changing_table:location}_<br/>4 options | relevant-questions, no-prefix, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[changing_table:location](https://wiki.osm.org/wiki/Key:changing_table:location)* ([string](../SpecialInputElements.md#string)) |
| [toilet-has-paper](#toilet-has-paper) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-has-paper))_ | Does one have to bring their own toilet paper to this toilet?<br/>2 options | relevant-questions, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilet-handwashing](#toilet-handwashing) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-handwashing))_ | Do these toilets have a sink to wash your hands?<br/>2 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilet-drying](#toilet-drying) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-drying))_ | Do these toilets have a device to dry your hands?<br/>5 options | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [wheelchair-group](#wheelchair-group) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#wheelchair-group))_ | _{group(wheelchair-title,wheelchair;adult-changing-table,)}_ | relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [wheelchair-picture-carousel](#wheelchair-picture-carousel) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#wheelchair-picture-carousel))_ | _{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}_ | wheelchair, hidden, relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [wheelchair-picture](#wheelchair-picture) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#wheelchair-picture))_ | _{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}_ | wheelchair, hidden, relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [wheelchair-title](#wheelchair-title) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#wheelchair-title))_ | _Wheelchair accessible toilet_<br/>2 options | hidden, relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilet-wheelchair-access](#toilet-wheelchair-access) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-wheelchair-access))_ | Is the wheelchair-accessible toilet locked?<br/>5 options | hidden, wheelchair, relevant-questions, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [questions-wheelchair](#questions-wheelchair) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#questions-wheelchair))_ | _{questions(wheelchair,,)}_ | wheelchair, hidden, relevant-questions, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [adult_changing_table_title](#adult_changing_table_title) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#adult_changing_table_title))_ | _Adult changing table_ | hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [adult-changing-table](#adult-changing-table) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#adult-changing-table))_ | Does this toilet have an adult changing table?<br/>2 options | prefixed, hidden, relevant-questions, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [changing_table_adult_height](#changing_table_adult_height) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#changing_table_adult_height))_ | What is the height of the adult changing table?<br/>_The changing table is {canonical(changing_table:adult:height)} high_<br/>1 options | relevant_questions, hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[changing_table:adult:height](https://wiki.osm.org/wiki/Key:changing_table:adult:height)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [changing_table_adult_adult-changing-table-min_height](#changing_table_adult_adult-changing-table-min_height) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#changing_table_adult_adult-changing-table-min_height))_ | What is the lowest height the adult changing table can be moved to?<br/>_The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}_ | relevant_questions, hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[changing_table:adult:min_height](https://wiki.osm.org/wiki/Key:changing_table:adult:min_height)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [changing_table_adult_adult-changing-table-max_height](#changing_table_adult_adult-changing-table-max_height) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#changing_table_adult_adult-changing-table-max_height))_ | What is the highest height the adult changing table can be moved to?<br/>_The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}_ | relevant_questions, hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[changing_table:adult:max_height](https://wiki.osm.org/wiki/Key:changing_table:adult:max_height)* ([pfloat](../SpecialInputElements.md#pfloat)) |
| [changing_table_adult_adult-changing-table-mechanism](#changing_table_adult_adult-changing-table-mechanism) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#changing_table_adult_adult-changing-table-mechanism))_ | How is the height of the changing table adjusted?<br/>2 options | relevant_questions, hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [changing_table_adult_adult-changing-table-support](#changing_table_adult_adult-changing-table-support) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#changing_table_adult_adult-changing-table-support))_ | How is the adult changing table supported?<br/>3 options | relevant_questions, hidden, prefixed, adult-changing-table, hidden, prefixed, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [questions-adult-changing-table](#questions-adult-changing-table) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#questions-adult-changing-table))_ | _{questions(adult-changing-table,,yes)}_ | hidden, relevant-questions, adult-changing-table, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
| [toilet-question-box](#toilet-question-box) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilet-question-box))_ | _{questions(toilet-questions,,)}_ | toilet-questions, all, hidden | _Multiple choice only_ |
| [leftover-questions](#leftover-questions) | _{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ | | [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ | | [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ | | [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
@ -169,17 +270,20 @@ Elements must match **all** of the following expressions:
### images ### images
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel()}{image_upload()}* *{image_carousel()}{image_upload()}*
### reviews ### reviews
Shows the reviews module (including the possibility to leave a review) Shows the reviews module (including the possibility to leave a review)
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{create_review()}{list_reviews()}* *{create_review()}{list_reviews()}*
### Name ### Name
The question is `What is the name of this business?` The question is `What is the name of this business?`
*The name of this business is {name}* is shown if `name` is set
*The name of this business is {name}* is shown if `name` is set.
### Fastfood vs restaurant ### Fastfood vs restaurant
@ -191,14 +295,16 @@ The question is `What type of business is this?`
### opening_hours ### opening_hours
The question is `What are the opening hours of {title()}?` The question is `What are the opening hours of {title()}?`
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set
*<h3>Opening hours</h3>{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set.
- *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_ - *Marked as closed for an unspecified time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:opening_hours' target='_blank'>opening_hours</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dclosed' target='_blank'>closed</a>. _This option cannot be chosen as answer_
### website ### website
The question is `What is the website of {title()}?` The question is `What is the website of {title()}?`
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set
*<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>* is shown if `website` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/icons/website.svg'> *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* is shown if with contact:website~.+. _This option cannot be chosen as answer_
@ -208,7 +314,8 @@ This tagrendering has labels
### email ### email
The question is `What is the email address of {title()}?` The question is `What is the email address of {title()}?`
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set
*<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>* is shown if `email` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>* is shown if with contact:email~.+. _This option cannot be chosen as answer_
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/envelope.svg'> *<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>* is shown if with operator:email~.+. _This option cannot be chosen as answer_
@ -219,7 +326,8 @@ This tagrendering has labels
### phone ### phone
The question is `What is the phone number of {title()}?` The question is `What is the phone number of {title()}?`
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set
*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ - <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/phone.svg'> *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_
@ -237,6 +345,7 @@ The question is `Which methods of payment are accepted here?`
### repeated ### repeated
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {repeat_on}.* *Multiple, identical objects can be found on floors {repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+
@ -246,7 +355,8 @@ This tagrendering has labels
### single_level ### single_level
The question is `On what level is this feature located?` The question is `On what level is this feature located?`
*Located on the {level}th floor* is shown if `level` is set
*Located on the {level}th floor* is shown if `level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_ - *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:location' target='_blank'>location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a> - *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D0' target='_blank'>0</a>
@ -269,7 +379,8 @@ The question is `Is this place accessible with a wheelchair?`
### Cuisine ### Cuisine
The question is `What kind of food is served here?` The question is `What kind of food is served here?`
*This place mostly serves {cuisine}* is shown if `cuisine` is set
*This place mostly serves {cuisine}* is shown if `cuisine` is set.
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🍕'> *Pizzeria* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/🍕'> *Pizzeria* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza' target='_blank'>pizza</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🍟'> *Friture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/🍟'> *Friture* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture' target='_blank'>friture</a>
@ -290,23 +401,27 @@ The question is `What kind of food is served here?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🇯🇵'> *Japanese dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Djapanese ' target='_blank'>japanese </a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/🇯🇵'> *Japanese dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Djapanese ' target='_blank'>japanese </a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🐔'> *Chicken based dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchicken ' target='_blank'>chicken </a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/🐔'> *Chicken based dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchicken ' target='_blank'>chicken </a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🐟'> *Seafood dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dseafood ' target='_blank'>seafood </a> - <img width='38px' height='38px' src='https://dev.mapcomplete.org/🐟'> *Seafood dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dseafood ' target='_blank'>seafood </a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/🇪🇸'> *Spanish dishes are served here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cuisine' target='_blank'>cuisine</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dspanish' target='_blank'>spanish</a>
### show-menu-image ### show-menu-image
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_carousel(image:menu)}* *{image_carousel(image:menu)}*
### add-menu-image ### add-menu-image
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{image_upload(image:menu,Add an image from the menu,)}* *{image_upload(image:menu,Add an image from the menu,)}*
### menu-website ### menu-website
The question is `On what webpage is the menu published?` The question is `On what webpage is the menu published?`
*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set
### Reservation *{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set.
### reservation
The question is `Is a reservation required for this place?` The question is `Is a reservation required for this place?`
@ -342,7 +457,8 @@ This tagrendering is only visible in the popup if the following condition is met
### drive-through-opening_hours ### drive-through-opening_hours
The question is `What are the opening hours of the drive-through?` The question is `What are the opening hours of the drive-through?`
*<h3>Drive-through opening hours</h3>{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set
*<h3>Drive-through opening hours</h3>{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set.
- *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through=
@ -535,7 +651,8 @@ This tagrendering has labels
### internet-ssid ### internet-ssid
The question is `What is the network name for the wireless internet access?` The question is `What is the network name for the wireless internet access?`
*The network name is <b>{internet_access:ssid}</b>* is shown if `internet_access:ssid` is set
*The network name is <b>{internet_access:ssid}</b>* is shown if `internet_access:ssid` is set.
- *Telekom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid' target='_blank'>internet_access:ssid</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom' target='_blank'>Telekom</a> - *Telekom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:ssid' target='_blank'>internet_access:ssid</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:ssid%3DTelekom' target='_blank'>Telekom</a>
@ -543,10 +660,669 @@ This tagrendering is only visible in the popup if the following condition is met
This tagrendering has labels This tagrendering has labels
`internet-all` `internet-all`
### toilets-group
_This tagrendering has no question and is thus read-only_
*{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}*
This tagrendering has labels
`all`
### grouptitle
_This tagrendering has no question and is thus read-only_
*Toilet information*
- *Does not have toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
This tagrendering has labels
`all`
`hidden`
### has_toilets
The question is `Has {title()} toilets?`
- *Has toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
- *Has no toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno' target='_blank'>no</a>
- *The toilets are marked separately on the map* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dseparate' target='_blank'>separate</a>
This tagrendering has labels
`toilet-questions`
`hidden`
`all`
### toilets_repeated
_This tagrendering has no question and is thus read-only_
*Multiple, identical objects can be found on floors {toilets:repeat_on}.*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & toilets:repeat_on~.+
This tagrendering has labels
`level`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_single_level
The question is `On what level is this feature located?`
*Located on the {toilets:level}th floor* is shown if `toilets:level` is set.
- *Located underground* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:location' target='_blank'>toilets:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:location%3Dunderground' target='_blank'>underground</a>. _This option cannot be chosen as answer_
- *Located on the ground floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:level' target='_blank'>toilets:level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D0' target='_blank'>0</a>
- *Located on the ground floor* is shown if with toilets:level=. _This option cannot be chosen as answer_
- *Located on the first floor* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:level' target='_blank'>toilets:level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D1' target='_blank'>1</a>
- *Located on the first basement level* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:level' target='_blank'>toilets:level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D-1' target='_blank'>-1</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & toilets:repeat_on=
This tagrendering has labels
`level`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_toilet-access
The question is `Are these toilets publicly accessible?`
*Access is {toilets:access}* is shown if `toilets:access` is set.
- *Public access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:access' target='_blank'>toilets:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dyes' target='_blank'>yes</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/key'> *Only access to customers* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:access' target='_blank'>toilets:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dcustomers' target='_blank'>customers</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/lock'> *Not accessible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:access' target='_blank'>toilets:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/key'> *Accessible, but one has to ask a key to enter* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:access' target='_blank'>toilets:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dkey' target='_blank'>key</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_toilets-fee
The question is `Are these toilets free to use?`
- *These are paid toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:fee' target='_blank'>toilets:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dyes' target='_blank'>yes</a>
- *Free to use* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:fee' target='_blank'>toilets:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & toilets:access!=no
This tagrendering has labels
`relevant-questions`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_toilet-charge
The question is `How much does one have to pay for these toilets?`
*The fee is {toilets:charge}* is shown if `toilets:charge` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:fee' target='_blank'>toilets:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_payment-options-split
The question is `Which methods of payment are accepted here?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/cash.svg'> *Cash is accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:cash' target='_blank'>toilets:payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:cash%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_. Unselecting this answer will add toilets:payment:cash=
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/payment_card.svg'> *Payment cards are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:cards' target='_blank'>toilets:payment:cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:cards%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_. Unselecting this answer will add toilets:payment:cards=
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/qrcode.svg'> *Payment by QR-code is possible here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:qr_code' target='_blank'>toilets:payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:qr_code%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:qr_code' target='_blank'>toilets:payment:qr_code</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:qr_code%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/coins.svg'> *Coins are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:coins' target='_blank'>toilets:payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:coins%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:coins' target='_blank'>toilets:payment:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:coins%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/notes.svg'> *Bank notes are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:notes' target='_blank'>toilets:payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:notes%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:notes' target='_blank'>toilets:payment:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:notes%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/payment_card.svg'> *Debit cards are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:debit_cards' target='_blank'>toilets:payment:debit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:debit_cards%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:debit_cards' target='_blank'>toilets:payment:debit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:debit_cards%3Dno' target='_blank'>no</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/payment_card.svg'> *Credit cards are accepted here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:credit_cards' target='_blank'>toilets:payment:credit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:credit_cards%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:payment:credit_cards' target='_blank'>toilets:payment:credit_cards</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:payment:credit_cards%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:fee' target='_blank'>toilets:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_gender_segregated
The question is `Are these toilets gender-segregated?`
- *There is a separate, signposted area for men and women* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:gender_segregated' target='_blank'>toilets:gender_segregated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:gender_segregated%3Dyes' target='_blank'>yes</a>
- *There is no separate, signposted area for men and women* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:gender_segregated' target='_blank'>toilets:gender_segregated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:gender_segregated%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & toilets:toilets:position!=urinal
This tagrendering has labels
`relevant-questions`
`no-prefix`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_toilet-supervised
The question is `Is this toilets supervised by a person?`
- *There is a person supervising these toilets during (most of) the opening hours* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:supervised' target='_blank'>toilets:supervised</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dyes' target='_blank'>yes</a>
- *There is a person supervising these toilets, but they are present only during certain times of the opening hours* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:supervised' target='_blank'>toilets:supervised</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dinterval' target='_blank'>interval</a>
- *These toilets are not supervised* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:supervised' target='_blank'>toilets:supervised</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:toilets:access' target='_blank'>toilets:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dyes' target='_blank'>yes</a> | toilets:access=)
This tagrendering has labels
`relevant-questions`
`no-prefix`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_description
The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.`
*{toilets:description}* is shown if `toilets:description` is set.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`amenity-no-prefix`
`no-prefix`
`relevant-questions`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets_toilets-wheelchair
The question is `Is there a dedicated toilet for wheelchair users?`
- *There is a dedicated toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes' target='_blank'>yes</a>
- *No wheelchair access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno' target='_blank'>no</a>
- *There is only a dedicated toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated' target='_blank'>designated</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`wheelchair`
`hidden`
`no-prefix`
`amenity-no-prefix`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets-type
The question is `Which kind of toilets are these?`
- *There are only seated toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:position' target='_blank'>toilets:position</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated' target='_blank'>seated</a>
- *There are only urinals here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:position' target='_blank'>toilets:position</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal' target='_blank'>urinal</a>
- *There are only squat toilets here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:position' target='_blank'>toilets:position</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat' target='_blank'>squat</a>
- *Both seated toilets and urinals are available here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:position' target='_blank'>toilets:position</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated;urinal' target='_blank'>seated;urinal</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets-disposal
The question is `How is the waste handled?`
- *The waste is moved away by flushing the toilet with water* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:disposal' target='_blank'>toilets:disposal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dflush' target='_blank'>flush</a>
- *The waste falls into a pit* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:disposal' target='_blank'>toilets:disposal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dpitlatrine' target='_blank'>pitlatrine</a>
- *The waste is collected in a bucket or similar container, which is regularly removed* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:disposal' target='_blank'>toilets:disposal</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dbucket' target='_blank'>bucket</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### menstrual_products
The question is `Are free, menstrual products distributed here?`
- *Free menstrual products are available to all visitors of these toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products' target='_blank'>toilets:menstrual_products</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dyes' target='_blank'>yes</a>
- *Free menstrual products are available to some visitors of these toilets* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products' target='_blank'>toilets:menstrual_products</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dlimited' target='_blank'>limited</a>
- *No free menstrual products are available here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products' target='_blank'>toilets:menstrual_products</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### menstrual_products_location
The question is `Where are the free menstrual products located?`
*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set.
- *The free, menstrual products are located in the toilet for women* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location' target='_blank'>toilets:menstrual_products:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dfemale_toilet' target='_blank'>female_toilet</a>
- *The free, menstrual products are located in the toilet for men* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location' target='_blank'>toilets:menstrual_products:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dmale_toilet' target='_blank'>male_toilet</a>
- *The free, menstrual products are located in the toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location' target='_blank'>toilets:menstrual_products:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dwheelchair_toilet' target='_blank'>wheelchair_toilet</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products' target='_blank'>toilets:menstrual_products</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dlimited' target='_blank'>limited</a> | toilets:menstrual_products:location~.+)
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilets-changing-table
The question is `Is a changing table (to change diapers) available?`
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/toilet/baby.svg'> *A changing table is available* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table' target='_blank'>changing_table</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes' target='_blank'>yes</a>
- *No changing table is available* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table' target='_blank'>changing_table</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`no-prefix`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-changing_table:location
The question is `Where is the changing table located?`
*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set.
- *A changing table is in the toilet for women* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:location' target='_blank'>changing_table:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet' target='_blank'>female_toilet</a>
- *A changing table is in the toilet for men* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:location' target='_blank'>changing_table:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet' target='_blank'>male_toilet</a>
- *A changing table is in the toilet for wheelchair users* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:location' target='_blank'>changing_table:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet' target='_blank'>wheelchair_toilet</a>
- *A changing table is in a dedicated room* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:location' target='_blank'>changing_table:location</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room' target='_blank'>dedicated_room</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table' target='_blank'>changing_table</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`no-prefix`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-has-paper
The question is `Does one have to bring their own toilet paper to this toilet?`
- *This toilet is equipped with toilet paper* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied' target='_blank'>toilets:paper_supplied</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes' target='_blank'>yes</a>
- *You have to bring your own toilet paper to this toilet* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied' target='_blank'>toilets:paper_supplied</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & toilets:position!=urinal
This tagrendering has labels
`relevant-questions`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-handwashing
The question is `Do these toilets have a sink to wash your hands?`
- *These toilets have a sink to wash your hands* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing' target='_blank'>toilets:handwashing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes' target='_blank'>yes</a>
- *These toilets <b>don't</b> have a sink to wash your hands* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing' target='_blank'>toilets:handwashing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-drying
The question is `Do these toilets have a device to dry your hands?`
- *Electric hand dryers are available for drying hands.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying' target='_blank'>toilets:hands_drying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Delectric_hand_dryer' target='_blank'>electric_hand_dryer</a>
- *Paper towels are available for drying hands.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying' target='_blank'>toilets:hands_drying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dpaper_towel' target='_blank'>paper_towel</a>
- *A towel roll cabinet is available for drying hands* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying' target='_blank'>toilets:hands_drying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel_cabinet' target='_blank'>towel_cabinet</a>
- *A fabric towel available to dry your hands.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying' target='_blank'>toilets:hands_drying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel' target='_blank'>towel</a>
- *There are no hand drying facilities available.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying' target='_blank'>toilets:hands_drying</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing' target='_blank'>toilets:handwashing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### wheelchair-group
_This tagrendering has no question and is thus read-only_
*{group(wheelchair-title,wheelchair;adult-changing-table,)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### wheelchair-picture-carousel
_This tagrendering has no question and is thus read-only_
*{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>)
This tagrendering has labels
`wheelchair`
`hidden`
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### wheelchair-picture
_This tagrendering has no question and is thus read-only_
*{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>)
This tagrendering has labels
`wheelchair`
`hidden`
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### wheelchair-title
_This tagrendering has no question and is thus read-only_
*Wheelchair accessible toilet*
- *Wheelchair accessibility features* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated' target='_blank'>designated</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Ddesignated' target='_blank'>designated</a>
- *No wheelchair accessible toilet* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno' target='_blank'>no</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`hidden`
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-wheelchair-access
The question is `Is the wheelchair-accessible toilet locked?`
- *The wheelchair accessible toilets are freely accessible* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:access' target='_blank'>toilets:wheelchair:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:access%3Dyes' target='_blank'>yes</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/key'> *One needs to ask permission to access wheelchair-accessible toilet, e.g. by asking a key* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:access' target='_blank'>toilets:wheelchair:access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:access%3Dkey' target='_blank'>key</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/toilet/MLAK.svg'> *One can use a <i>Master Locksmiths Access Key</i> <b>(MLAK)</b> to access this bathroom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:centralkey' target='_blank'>centralkey</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:centralkey%3Dmlak' target='_blank'>mlak</a>
- *One can use a <b>RADAR Key</b> to access this bathroom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:centralkey' target='_blank'>centralkey</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:centralkey%3Dnks' target='_blank'>nks</a>
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/toilet/eurokey.svg'> *One can use a <b>EuroKey</b> to access this bathroom* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:centralkey' target='_blank'>centralkey</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:centralkey%3Deurokey' target='_blank'>eurokey</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a> & (<a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair' target='_blank'>toilets:wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:wheelchair' target='_blank'>wheelchair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes' target='_blank'>yes</a>) & (<a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic' target='_blank'>public</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:access' target='_blank'>access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers' target='_blank'>customers</a> | access=)
This tagrendering has labels
`hidden`
`wheelchair`
`relevant-questions`
`prefixed`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### questions-wheelchair
_This tagrendering has no question and is thus read-only_
*{questions(wheelchair,,)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`wheelchair`
`hidden`
`relevant-questions`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### adult_changing_table_title
_This tagrendering has no question and is thus read-only_
*Adult changing table*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### adult-changing-table
The question is `Does this toilet have an adult changing table?`
- *Has a changing table for adults* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a>
- *No changing table for adults* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dno' target='_blank'>no</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`prefixed`
`hidden`
`relevant-questions`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### changing_table_adult_height
The question is `What is the height of the adult changing table?`
*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set.
The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7.
- *The changing table is <b>adjustable in height</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height' target='_blank'>changing_table:adult:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height%3Dadjustable' target='_blank'>adjustable</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### changing_table_adult_adult-changing-table-min_height
The question is `What is the lowest height the adult changing table can be moved to?`
*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set.
The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height' target='_blank'>changing_table:adult:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height%3Dadjustable' target='_blank'>adjustable</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### changing_table_adult_adult-changing-table-max_height
The question is `What is the highest height the adult changing table can be moved to?`
*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set.
The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7.
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height' target='_blank'>changing_table:adult:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height%3Dadjustable' target='_blank'>adjustable</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### changing_table_adult_adult-changing-table-mechanism
The question is `How is the height of the changing table adjusted?`
- *The height of the adult changing table is adjusted <b>manually</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height:mechanism' target='_blank'>changing_table:adult:height:mechanism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height:mechanism%3Dmanual' target='_blank'>manual</a>
- *The height of the adult changing table is adjusted <b>electrically</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height:mechanism' target='_blank'>changing_table:adult:height:mechanism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height:mechanism%3Delectric' target='_blank'>electric</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:height' target='_blank'>changing_table:adult:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height%3Dadjustable' target='_blank'>adjustable</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### changing_table_adult_adult-changing-table-support
The question is `How is the adult changing table supported?`
- *The changing table is mounted to the wall* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:support' target='_blank'>changing_table:adult:support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dwall_mounted' target='_blank'>wall_mounted</a>
- *The changing table stands on table legs* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:support' target='_blank'>changing_table:adult:support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dlegs' target='_blank'>legs</a>
- *The changing table stands on table legs <b>with wheels</b> and can be moved* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult:support' target='_blank'>changing_table:adult:support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dwheels' target='_blank'>wheels</a>
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:changing_table:adult' target='_blank'>changing_table:adult</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`relevant_questions`
`hidden`
`prefixed`
`adult-changing-table`
`hidden`
`prefixed`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### questions-adult-changing-table
_This tagrendering has no question and is thus read-only_
*{questions(adult-changing-table,,yes)}*
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:toilets' target='_blank'>toilets</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes' target='_blank'>yes</a>
This tagrendering has labels
`hidden`
`relevant-questions`
`adult-changing-table`
`amenity-prefixed`
`relevant_questions`
`toilet-questions`
`hidden`
`all`
### toilet-question-box
_This tagrendering has no question and is thus read-only_
*{questions(toilet-questions,,)}*
This tagrendering has labels
`toilet-questions`
`all`
`hidden`
### leftover-questions ### leftover-questions
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{questions( ,hidden)}*
*{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}*
This tagrendering has labels This tagrendering has labels
`ignore-docs` `ignore-docs`
@ -555,16 +1331,19 @@ This tagrendering has labels
### move-button ### move-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{move_button()}* *{move_button()}*
### delete-button ### delete-button
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{delete_button()}* *{delete_button()}*
### lod ### lod
_This tagrendering has no question and is thus read-only_ _This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}* *{linked_data_from_website()}*
This tagrendering has labels This tagrendering has labels
@ -658,6 +1437,7 @@ This tagrendering has labels
| Cuisine.17 | Japanese dishes are served here | cuisine=japanese | | Cuisine.17 | Japanese dishes are served here | cuisine=japanese |
| Cuisine.18 | Chicken based dishes are served here | cuisine=chicken | | Cuisine.18 | Chicken based dishes are served here | cuisine=chicken |
| Cuisine.19 | Seafood dishes are served here | cuisine=seafood | | Cuisine.19 | Seafood dishes are served here | cuisine=seafood |
| Cuisine.20 | Spanish dishes are served here | cuisine=spanish |
| id | question | osmTags | | id | question | osmTags |
-----|-----|----- | -----|-----|----- |

Some files were not shown because too many files have changed in this diff Show more