forked from MapComplete/MapComplete
Compare commits
25 commits
develop
...
feature/tr
| Author | SHA1 | Date | |
|---|---|---|---|
| d63d48a5d7 | |||
| c6e70da598 | |||
| 24013c65e8 | |||
| 9282e0c89b | |||
| 70e4b44d76 | |||
| d408858976 | |||
| 85fdc7abd4 | |||
| 06eeffc4b6 | |||
| 6d8c0d17dc | |||
| e0447c3428 | |||
| 4b5f01c74f | |||
| cab14ae5c2 | |||
| bd854b37af | |||
| b19dac2bf6 | |||
| 35d540bf29 | |||
| 2097f3aaa4 | |||
| 2ecdee9245 | |||
| e3939f1086 | |||
| 476d236575 | |||
| f9079e137c | |||
| 73cfc23cd9 | |||
| 02a25ff4dd | |||
| fba0ff5101 | |||
| 59a8f5879c | |||
| ecb1bd5046 |
5527 changed files with 332552 additions and 1668056 deletions
|
|
@ -1,3 +0,0 @@
|
||||||
src/test.ts
|
|
||||||
android/*
|
|
||||||
src/assets/generated/*
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
/* eslint-env node */
|
|
||||||
module.exports = {
|
|
||||||
extends: [
|
|
||||||
"eslint:recommended",
|
|
||||||
"plugin:@typescript-eslint/recommended",
|
|
||||||
"plugin:svelte/recommended",
|
|
||||||
],
|
|
||||||
parser: "@typescript-eslint/parser",
|
|
||||||
parserOptions: {
|
|
||||||
extraFileExtensions: [".svelte"],
|
|
||||||
},
|
|
||||||
overrides: [
|
|
||||||
{
|
|
||||||
files: ["*.svelte"],
|
|
||||||
parser: "svelte-eslint-parser",
|
|
||||||
parserOptions: {
|
|
||||||
parser: "@typescript-eslint/parser",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
plugins: ["@typescript-eslint"],
|
|
||||||
root: true,
|
|
||||||
env: {
|
|
||||||
browser: true,
|
|
||||||
node: true,
|
|
||||||
},
|
|
||||||
rules:{
|
|
||||||
'@typescript-eslint/no-explicit-any': 'off'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
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
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
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"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,36 +0,0 @@
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: "0 2 * * *"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
create_community_index:
|
|
||||||
runs-on: [ hetzner-access ]
|
|
||||||
steps:
|
|
||||||
- uses: https://source.mapcomplete.org/actions/checkout@v4
|
|
||||||
- uses: ./.forgejo/setup
|
|
||||||
|
|
||||||
- name: create community index files
|
|
||||||
shell: bash
|
|
||||||
run: npm run download:community-index -- -- community-index/
|
|
||||||
|
|
||||||
- name: upload community index
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
zip community-index.zip community-index/*
|
|
||||||
scp community-index.zip hetzner:data/
|
|
||||||
ssh hetzner "cd data && rm -rf community-index/ && unzip community-index.zip && rm community-index.zip"
|
|
||||||
|
|
||||||
update_statistics:
|
|
||||||
runs-on: [ hetzner-access ]
|
|
||||||
steps:
|
|
||||||
- uses: https://source.mapcomplete.org/actions/checkout@v4
|
|
||||||
- uses: ./.forgejo/setup
|
|
||||||
|
|
||||||
- name: Update statistics
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
scp -r hetzner:~/data/changeset-metadata/ .
|
|
||||||
npm run download:stats -- -- ./
|
|
||||||
scp -r ./changeset-metadata/* hetzner:~/data/changeset-metadata/
|
|
||||||
|
|
||||||
|
|
@ -1,76 +0,0 @@
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
push:
|
|
||||||
branches-ignore:
|
|
||||||
- build/*
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy_on_hosted:
|
|
||||||
runs-on: [ hetzner-access ]
|
|
||||||
steps:
|
|
||||||
- uses: https://source.mapcomplete.org/actions/checkout@v4
|
|
||||||
- uses: ./.forgejo/setup
|
|
||||||
|
|
||||||
- name: create generated dir
|
|
||||||
run: mkdir -p ./assets/generated
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: create dependencies
|
|
||||||
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
|
|
||||||
|
|
||||||
- name: Prepare build
|
|
||||||
run: npm run generate:service-worker && ./scripts/prepare-build.sh
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
run: |
|
|
||||||
export NODE_OPTIONS="--max-old-space-size=8192"
|
|
||||||
npm run test
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Build files
|
|
||||||
run: npm run build
|
|
||||||
|
|
||||||
- name: Zipping dist file
|
|
||||||
run: |
|
|
||||||
BRANCH=$(echo ${{ github.ref_name }} | sed 's/\//-/g')
|
|
||||||
rm -rf /tmp/${BRANCH}
|
|
||||||
mv dist /tmp/${BRANCH}
|
|
||||||
cd /tmp
|
|
||||||
zip ${BRANCH}.zip -r ${BRANCH}/*
|
|
||||||
cd -
|
|
||||||
|
|
||||||
- name: uploading file
|
|
||||||
run: |
|
|
||||||
BRANCH=$(echo ${{ github.ref_name }} | sed 's/\//-/g')
|
|
||||||
scp /tmp/${BRANCH}.zip hetzner:/root/staging/
|
|
||||||
|
|
||||||
- name: cleanup files
|
|
||||||
run: |
|
|
||||||
BRANCH=$(echo ${{ github.ref_name }} | sed 's/\//-/g')
|
|
||||||
rm /tmp/${BRANCH}.zip && rm -rf /tmp/${BRANCH}/
|
|
||||||
|
|
||||||
- name: unzipping remote file
|
|
||||||
run: |
|
|
||||||
BRANCH=$(echo ${{ github.ref_name }} | sed 's/\//-/g')
|
|
||||||
ssh hetzner "cd /root/staging && rm -rf ${BRANCH} && unzip ${BRANCH}.zip && rm -rf /root/public/${BRANCH} && mv /root/staging/${BRANCH}/ /root/public/ && date --iso > /root/public/${BRANCH}/date.txt && rm ${BRANCH}.zip"
|
|
||||||
|
|
||||||
- name: Comment on the PR
|
|
||||||
run: |
|
|
||||||
BRANCH=$(echo ${{ github.ref_name }} | sed 's/\//-/g')
|
|
||||||
PR_NUMBER=$(echo ${{ github.event.pull_request.number || github.event.issue.number }})
|
|
||||||
if [[ -n "$PR_NUMBER" ]]
|
|
||||||
then
|
|
||||||
echo "Found a pull request or issue number, will post to $PR_NUMBER ..."
|
|
||||||
MSG=$(echo "Congratulations! This PR been successfully built and has been deployed. It is (temporarily) available on https://builds.mapcomplete.org/${BRANCH}")
|
|
||||||
BODY="{\"body\": \"$MSG\"}"
|
|
||||||
# Token must have following permissions: issue > read and write
|
|
||||||
curl -X POST "https://source.mapcomplete.org/api/v1/repos/${GITHUB_REPOSITORY}/issues/${PR_NUMBER}/comments" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-H "Authorization: token $FORGEJO_TOKEN" \
|
|
||||||
-d "$BODY"
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }}
|
|
||||||
|
|
@ -1,46 +0,0 @@
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- build/*
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy_single_theme:
|
|
||||||
runs-on: [ hetzner-access ]
|
|
||||||
steps:
|
|
||||||
- uses: https://source.mapcomplete.org/actions/checkout@v4
|
|
||||||
- uses: ./.forgejo/setup
|
|
||||||
|
|
||||||
- name: create generated dir
|
|
||||||
run: mkdir ./assets/generated
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: create dependencies
|
|
||||||
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
|
|
||||||
|
|
||||||
- name: sync translations
|
|
||||||
run: npm run generate:translations
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Prepare build
|
|
||||||
run: |
|
|
||||||
BRANCH=${{ github.ref_name }}
|
|
||||||
THEME=${BRANCH:6}
|
|
||||||
npm run generate:service-worker && ./scripts/single_build.sh $THEME
|
|
||||||
shell: bash
|
|
||||||
|
|
||||||
- name: Zipping dist file
|
|
||||||
run: |
|
|
||||||
BRANCH=${{ github.ref_name }}
|
|
||||||
THEME=${BRANCH:6}
|
|
||||||
mv "dist_$THEME" ${{ github.ref_name }}
|
|
||||||
zip ${{ github.ref_name }}.zip -r ${{ github.ref_name }}/*
|
|
||||||
|
|
||||||
- name: uploading file
|
|
||||||
run: scp ${{ github.ref_name }}.zip hetzner:/root/staging/
|
|
||||||
|
|
||||||
- name: unzipping remote file
|
|
||||||
run: ssh hetzner "cd /root/staging && unzip ${{ github.ref_name }}.zip && rm -rf /root/single_theme_builds/${{ github.ref_name }} && mv /root/staging/${{ github.ref_name }}/ /root/single_theme_builds/ && rm ${{ github.ref_name }}.zip"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
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"
|
|
||||||
|
|
||||||
|
|
@ -1,84 +0,0 @@
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- 'v*'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_android:
|
|
||||||
runs-on: hetzner-access
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: https://source.mapcomplete.org/actions/checkout@v4
|
|
||||||
with:
|
|
||||||
persist-credentials: true
|
|
||||||
|
|
||||||
- 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: clone submodule
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo -e "[submodule \"android\"]\n\tpath = android\n\turl = https://source.mapcomplete.org/MapComplete/android-wrapper" > .gitmodules
|
|
||||||
cat .gitmodules
|
|
||||||
git submodule init
|
|
||||||
git submodule update --init --recursive
|
|
||||||
cd android
|
|
||||||
git config --global --add safe.directory $(pwd)
|
|
||||||
git remote -v
|
|
||||||
git pull origin main
|
|
||||||
|
|
||||||
- name: install deps
|
|
||||||
run: npm ci
|
|
||||||
|
|
||||||
|
|
||||||
- run: |
|
|
||||||
npm run init
|
|
||||||
npm run generate:layeroverview -- --print-needed-assets
|
|
||||||
|
|
||||||
- name: Move dependency (@capacitor) into android repo
|
|
||||||
run: |
|
|
||||||
cd android
|
|
||||||
cp -r ../node_modules/@capacitor ./
|
|
||||||
sed "s/..\/node_modules\///g" -i capacitor.settings.gradle
|
|
||||||
cat capacitor.settings.gradle
|
|
||||||
git add capacitor.settings.gradle
|
|
||||||
|
|
||||||
- name: set android version number
|
|
||||||
run: |
|
|
||||||
cd android/app
|
|
||||||
# We assign the version code simply based on the date
|
|
||||||
new_version_code=$(( ( $(date +%s) - $(date -d "2025-07-01" +%s) ) / 86400 ))
|
|
||||||
versionname="${{ github.ref_name }}"
|
|
||||||
versionname="${versionname:1}"
|
|
||||||
sed -i "s/versionCode $version_code/versionCode $new_version_code/" "build.gradle"
|
|
||||||
sed -i "s/versionName \".*\"/versionName \"$versionname\"/" "build.gradle"
|
|
||||||
cat build.gradle | grep "versionName"
|
|
||||||
cat build.gradle | grep "versionCode"
|
|
||||||
if grep -q 'versionName ""' build.gradle; then
|
|
||||||
echo "Error: Empty versionName found in build.gradle"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
git add build.gradle
|
|
||||||
|
|
||||||
- name: prepare android build
|
|
||||||
run: npm run android:prepare
|
|
||||||
|
|
||||||
- name: Update android repo
|
|
||||||
run: |
|
|
||||||
cd android
|
|
||||||
git remote set-url origin "https://Bot:${{ secrets.BOT_PASSWORD }}@source.mapcomplete.org/MapComplete/android-wrapper"
|
|
||||||
git config user.name "Bot"
|
|
||||||
git config user.email "info@mapcomplete.org"
|
|
||||||
git add -f app/src/main/assets/public/*
|
|
||||||
git add capacitor.settings.gradle
|
|
||||||
git commit -am "Add files for release ${{ github.ref_name }}"
|
|
||||||
git tag "${{ github.ref_name }}"
|
|
||||||
git push origin refs/heads/main --verbose
|
|
||||||
git push origin --tags
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: "0 0 1 */2 *"
|
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update_database:
|
|
||||||
concurrency:
|
|
||||||
group: update-database
|
|
||||||
cancel-in-progress: false
|
|
||||||
runs-on: [ osm-cache ]
|
|
||||||
steps:
|
|
||||||
- uses: https://source.mapcomplete.org/actions/checkout@v4
|
|
||||||
- uses: ./.forgejo/setup
|
|
||||||
|
|
||||||
- name: Init all dependencies and layers
|
|
||||||
shell: bash
|
|
||||||
run: npm run init
|
|
||||||
|
|
||||||
- name: Create export script
|
|
||||||
shell: bash
|
|
||||||
run: npm run build:dbscript # output: build_db.lua
|
|
||||||
|
|
||||||
|
|
||||||
- name: Create and fill database
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
# LAIN has a weekly updated planet file in /data/planet-latest.osm.pbf
|
|
||||||
# See https://source.mapcomplete.org/MapComplete/planet-file-updater
|
|
||||||
TIMESTAMP=$(osmium fileinfo /data/planet-latest.osm.pbf -g header.option.timestamp)
|
|
||||||
DATE=$(echo $TIMESTAMP | sed "s/T.*//")
|
|
||||||
echo $DATE
|
|
||||||
# Create a new database in postgres
|
|
||||||
npm run create:database -- -- $DATE
|
|
||||||
echo "Seeding database '$DATE'"
|
|
||||||
osm2pgsql --cache 100000 -O flex -S build_db.lua -d postgresql://user:password@localhost:5444/osm-poi.${DATE} /data/planet-latest.osm.pbf
|
|
||||||
npm run delete:database:old
|
|
||||||
|
|
||||||
|
|
||||||
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
liberapay: pietervdvn
|
||||||
23
.github/actions/setup-and-validate/action.yml
vendored
Normal file
23
.github/actions/setup-and-validate/action.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
name: "Theme Validation"
|
||||||
|
description: "Validate the themes"
|
||||||
|
runs:
|
||||||
|
using: "composite"
|
||||||
|
steps:
|
||||||
|
- name: Set up Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: "16"
|
||||||
|
cache: "npm"
|
||||||
|
cache-dependency-path: package-lock.json
|
||||||
|
|
||||||
|
- name: install deps
|
||||||
|
run: npm ci
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: create generated dir
|
||||||
|
run: mkdir ./assets/generated
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Prepare deploy
|
||||||
|
run: npm run prepare-deploy
|
||||||
|
shell: bash
|
||||||
|
|
@ -13,5 +13,5 @@ To making merging smooth, please make sure that each of the following conditions
|
||||||
|
|
||||||
- [ ] The codebase is GPL-licensed. By opening a pull request, the new theme will be GPL too
|
- [ ] The codebase is GPL-licensed. By opening a pull request, the new theme will be GPL too
|
||||||
- [ ] All images are included in the pull request and no images are loaded from an external service (e.g. Wikipedia)
|
- [ ] All images are included in the pull request and no images are loaded from an external service (e.g. Wikipedia)
|
||||||
- [ ] The [guidelines on how to make your own theme](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/master/Docs/Making_Your_Own_Theme.md)
|
- [ ] The [guidelines on how to make your own theme](https://github.com/pietervdvn/MapComplete/blob/master/Docs/Making_Your_Own_Theme.md)
|
||||||
are read and followed
|
are read and followed
|
||||||
65
.github/workflows/codeql-analysis.yml
vendored
Normal file
65
.github/workflows/codeql-analysis.yml
vendored
Normal file
|
|
@ -0,0 +1,65 @@
|
||||||
|
# For most projects, this workflow file will not need changing; you simply need
|
||||||
|
# to commit it to your repository.
|
||||||
|
#
|
||||||
|
# You may wish to alter this file to override the set of languages analyzed,
|
||||||
|
# or to provide custom queries or build logic.
|
||||||
|
#
|
||||||
|
# ******** NOTE ********
|
||||||
|
# We have attempted to detect the languages in your repository. Please check
|
||||||
|
# the `language` matrix defined below to confirm you have the correct set of
|
||||||
|
# supported CodeQL languages.
|
||||||
|
#
|
||||||
|
name: "CodeQL"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
analyze:
|
||||||
|
name: Analyze
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
actions: read
|
||||||
|
contents: read
|
||||||
|
security-events: write
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
language: [ 'javascript' ]
|
||||||
|
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
||||||
|
# Learn more about CodeQL language support at https://git.io/codeql-language-support
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
# Initializes the CodeQL tools for scanning.
|
||||||
|
- name: Initialize CodeQL
|
||||||
|
uses: github/codeql-action/init@v1
|
||||||
|
with:
|
||||||
|
languages: ${{ matrix.language }}
|
||||||
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||||
|
# By default, queries listed here will override any specified in a config file.
|
||||||
|
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||||
|
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
||||||
|
|
||||||
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
|
- name: Autobuild
|
||||||
|
uses: github/codeql-action/autobuild@v1
|
||||||
|
|
||||||
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
|
# 📚 https://git.io/JvXDl
|
||||||
|
|
||||||
|
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
||||||
|
# and modify them (or add more) to build your code if your project
|
||||||
|
# uses a compiled language
|
||||||
|
|
||||||
|
#- run: |
|
||||||
|
# make bootstrap
|
||||||
|
# make release
|
||||||
|
|
||||||
|
- name: Perform CodeQL Analysis
|
||||||
|
uses: github/codeql-action/analyze@v1
|
||||||
61
.github/workflows/deploy_pietervdvn.yml
vendored
Normal file
61
.github/workflows/deploy_pietervdvn.yml
vendored
Normal file
|
|
@ -0,0 +1,61 @@
|
||||||
|
name: Deployment on pietervdvn
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- develop
|
||||||
|
- feature/*
|
||||||
|
- theme/*
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Setup and validate themes
|
||||||
|
uses: ./.github/actions/setup-and-validate
|
||||||
|
|
||||||
|
- name: Clone deployment repo
|
||||||
|
env:
|
||||||
|
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
||||||
|
run: |
|
||||||
|
echo "Cloning destination repo"
|
||||||
|
git config --global user.email "pietervdvn@posteo.net"
|
||||||
|
git config --global user.name "pietervdvn"
|
||||||
|
git clone --depth 1 --single-branch --branch master "https://x-access-token:$DEPLOY_KEY_PIETERVDVN@github.com/pietervdvn/pietervdvn.github.io.git"
|
||||||
|
echo "Destination repo is cloned"
|
||||||
|
|
||||||
|
- name: Sync repo
|
||||||
|
env:
|
||||||
|
DEPLOY_KEY_PIETERVDVN: ${{ secrets.DEPLOY_KEY_PIETERVDVN }}
|
||||||
|
run: |
|
||||||
|
cd pietervdvn.github.io
|
||||||
|
git pull
|
||||||
|
|
||||||
|
- name: get branch name
|
||||||
|
run: echo TARGET_BRANCH=${GITHUB_REF:11} >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: "Copying files"
|
||||||
|
run: |
|
||||||
|
echo "Deploying"
|
||||||
|
rm -rf pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/*
|
||||||
|
mkdir -p pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/
|
||||||
|
cp -r dist/* pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }}/
|
||||||
|
cd pietervdvn.github.io/
|
||||||
|
git add *
|
||||||
|
if git status | grep -q "Changes to be committed"
|
||||||
|
then
|
||||||
|
git commit -am "Deploying a new version of mapcomplete"
|
||||||
|
git push
|
||||||
|
else
|
||||||
|
echo "No changes to commit"
|
||||||
|
fi
|
||||||
|
env:
|
||||||
|
TARGET_BRANCH: ${{ env.TARGET_BRANCH }}
|
||||||
|
|
||||||
|
- uses: mshick/add-pr-comment@v1
|
||||||
|
name: Comment the PR with the review URL
|
||||||
|
if: ${{ success() && github.ref != 'refs/heads/develop' && github.ref != 'refs/heads/master' }}
|
||||||
|
with:
|
||||||
|
message: |
|
||||||
|
[🚀 Preview Branch](https://pietervdvn.github.io/mc/${{ env.TARGET_BRANCH }})
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
40
.github/workflows/theme_validation_and_deploy.yml
vendored
Normal file
40
.github/workflows/theme_validation_and_deploy.yml
vendored
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
name: Theme Validation and deployment
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Setup and validate themes
|
||||||
|
uses: ./.github/actions/setup-and-validate
|
||||||
|
|
||||||
|
- name: Clone deployment repo
|
||||||
|
env:
|
||||||
|
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
|
||||||
|
run: |
|
||||||
|
echo "Cloning destination repo"
|
||||||
|
git config --global user.email "pietervdvn@posteo.net"
|
||||||
|
git config --global user.name "MapComplete"
|
||||||
|
git clone --depth 1 --single-branch --branch main "https://x-access-token:$DEPLOY_KEY@github.com/MapComplete/mapcomplete.github.io.git"
|
||||||
|
echo "Destination repo is cloned"
|
||||||
|
|
||||||
|
- name: "Copying files"
|
||||||
|
run: |
|
||||||
|
echo "Deploying"
|
||||||
|
rm -rf mapcomplete.github.io/*
|
||||||
|
cp -r dist/* mapcomplete.github.io/
|
||||||
|
cd mapcomplete.github.io/
|
||||||
|
echo "mapcomplete.osm.be" > CNAME
|
||||||
|
git add *
|
||||||
|
if git status | grep -q "Changes to be committed"
|
||||||
|
then
|
||||||
|
git commit -am "Deploying a new version"
|
||||||
|
git push
|
||||||
|
else
|
||||||
|
echo "No changes to commit"
|
||||||
|
fi
|
||||||
12
.github/workflows/validate-pr.yml
vendored
Normal file
12
.github/workflows/validate-pr.yml
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
name: Build and validate PR
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Setup and validate themes
|
||||||
|
uses: ./.github/actions/setup-and-validate
|
||||||
21
.gitignore
vendored
21
.gitignore
vendored
|
|
@ -1,16 +1,12 @@
|
||||||
dist/*
|
dist/*
|
||||||
dist_*/*
|
|
||||||
node_modules
|
node_modules
|
||||||
.cache/*
|
.cache/*
|
||||||
.idea/*
|
.idea/*
|
||||||
scratch
|
scratch
|
||||||
src/assets/editor-layer-index.json
|
|
||||||
src/assets/generated/
|
|
||||||
assets/editor-layer-index.json
|
assets/editor-layer-index.json
|
||||||
assets/generated/*
|
assets/generated/*
|
||||||
assets/layers/favourite/favourite.json
|
assets/generated/images/*
|
||||||
public/*.webmanifest
|
public/*.webmanifest
|
||||||
public/service-worker/tsconfig.tsbuildinfo
|
|
||||||
/*.html
|
/*.html
|
||||||
!/index.html
|
!/index.html
|
||||||
!/customGenerator.html
|
!/customGenerator.html
|
||||||
|
|
@ -22,17 +18,11 @@ missing_translations.txt
|
||||||
.DS_Store
|
.DS_Store
|
||||||
Svg.ts
|
Svg.ts
|
||||||
data/
|
data/
|
||||||
src/service-worker/.rollup.cache
|
|
||||||
|
|
||||||
Folder.DotSettings.user
|
Folder.DotSettings.user
|
||||||
index_*.ts
|
index_*.ts
|
||||||
.~lock.*
|
.~lock.*
|
||||||
*.doctest.ts
|
*.doctest.ts
|
||||||
service-worker.js
|
service-worker.js
|
||||||
.env
|
|
||||||
|
|
||||||
error_changeset_*
|
|
||||||
|
|
||||||
|
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/settings.json
|
!.vscode/settings.json
|
||||||
|
|
@ -46,12 +36,5 @@ error_changeset_*
|
||||||
|
|
||||||
# Built Visual Studio Code Extensions
|
# Built Visual Studio Code Extensions
|
||||||
*.vsix
|
*.vsix
|
||||||
|
public/*.webmanifest
|
||||||
public/assets/generated/
|
public/assets/generated/
|
||||||
public/assets/langs/*
|
|
||||||
android/
|
|
||||||
dist-full/
|
|
||||||
public/assets/icons/*.webp
|
|
||||||
uploaded_images.json
|
|
||||||
/app/dist/
|
|
||||||
src/assets/bing.json
|
|
||||||
needed_assets.csv
|
|
||||||
|
|
|
||||||
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -1,3 +0,0 @@
|
||||||
[submodule "android"]
|
|
||||||
path = android
|
|
||||||
url = forgejo@source.mapcomplete.org:MapComplete/android-wrapper.git
|
|
||||||
20
.gitpod.yml
Normal file
20
.gitpod.yml
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
tasks:
|
||||||
|
- init: npm run init
|
||||||
|
command: npm run start
|
||||||
|
name: Initialize and start MapComplete
|
||||||
|
- name: Generate Layeroverview
|
||||||
|
command: npm run generate:layeroverview
|
||||||
|
|
||||||
|
ports:
|
||||||
|
- name: MapComplete Website
|
||||||
|
port: 1234
|
||||||
|
onOpen: open-browser
|
||||||
|
|
||||||
|
vscode:
|
||||||
|
extensions:
|
||||||
|
- "esbenp.prettier-vscode"
|
||||||
|
- "eamodio.gitlens"
|
||||||
|
- "github.vscode-pull-request-github"
|
||||||
|
- "svelte.svelte-vscode"
|
||||||
|
- "bradlc.vscode-tailwindcss"
|
||||||
|
- "editorconfig.editorconfig"
|
||||||
2
.nvmrc
2
.nvmrc
|
|
@ -1 +1 @@
|
||||||
20.17.0
|
nodejs 16.9.1
|
||||||
|
|
@ -11,6 +11,3 @@ Docs/Tools/stats/
|
||||||
Docs/Layers/
|
Docs/Layers/
|
||||||
Docs/Schemas/
|
Docs/Schemas/
|
||||||
Docs/TagInfo/
|
Docs/TagInfo/
|
||||||
src/assets/generated
|
|
||||||
src/assets/svg
|
|
||||||
android/
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,6 @@
|
||||||
{
|
{
|
||||||
"semi": false,
|
"semi": false,
|
||||||
"printWidth": 100,
|
"printWidth": 100,
|
||||||
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
|
"plugins": ["prettier-plugin-svelte"],
|
||||||
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }],
|
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
|
||||||
"bracketSameLine": false,
|
|
||||||
"htmlWhitespaceSensitivity": "ignore"
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
49
.reuse/dep5
49
.reuse/dep5
|
|
@ -1,49 +0,0 @@
|
||||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
|
||||||
Upstream-Name: MapComplete
|
|
||||||
Upstream-Contact: Pieter Vander Vennet <pietervdvn@posteo.net>
|
|
||||||
Source: https://source.mapcomplete.org/MapComplete/MapComplete/
|
|
||||||
|
|
||||||
Files: scripts/* src/* *.html Docs/* langs/* test/* ublic/css/* CODE_OF_CONDUCT.md CONTRIBUTING.md README.md package.json
|
|
||||||
Copyright: MapComplete contributors
|
|
||||||
License: GPL-3.0-or-later
|
|
||||||
|
|
||||||
Files: assets/*/*/*.json assets/*/*/*.css assets/*/*/*.csv assets/*/*/*.protojson assets/*/*/*.md assets/*/*/*.ts assets/*/*/*.txt public/css/*
|
|
||||||
Copyright: MapComplete contributors
|
|
||||||
Comment: various assets, mostly layers and themes
|
|
||||||
License: GPL-3.0-or-later
|
|
||||||
|
|
||||||
Files: assets/**/license_info.json public/*/license_info.json
|
|
||||||
Copyright: MapComplete contributors
|
|
||||||
Comment: Various files detailing the license info of a file
|
|
||||||
License: GPL-3.0-or-later
|
|
||||||
|
|
||||||
Files: *.config.* .vscode/* .tool-versions .prettierrc.json .prettierignore .nvmrc .gitpod .gitignore .github/* .editorconfig .git-blame-ignore-revs tsconfig.json tslint.json package-lock.json
|
|
||||||
Copyright: MapComplete contributors
|
|
||||||
Comment: Miscellaneous config files, no real 'creative work' but still a pain to get right
|
|
||||||
License: CC0-1.0
|
|
||||||
|
|
||||||
Files: public/assets/templates/*.svg
|
|
||||||
Copyright: MapComplete contributors
|
|
||||||
Comment: export templates
|
|
||||||
License: GPL-3.0-or-later
|
|
||||||
|
|
||||||
Files: public/assets/templates/*.js public/assets/fonts/*.js
|
|
||||||
Copyright: MapComplete contributors
|
|
||||||
Comment: fonts for exports
|
|
||||||
License: LicenseRef-UBUNTU-FONT-LICENSE
|
|
||||||
|
|
||||||
|
|
||||||
Files: public/assets/*.svg public/assets/*.png public/apple_touch_icon.png
|
|
||||||
Copyright: MapComplete contributors
|
|
||||||
Comment: various MapComplete logos
|
|
||||||
License: GPL-3.0-or-later
|
|
||||||
|
|
||||||
Files: public/maplibre-gl.css
|
|
||||||
Copyright: MapLibre-gl
|
|
||||||
Comment: https://www.npmjs.com/package/maplibre-gl
|
|
||||||
License: BSD-3-Clause
|
|
||||||
|
|
||||||
Files: LICENSES/*.txt
|
|
||||||
Copyright: License author
|
|
||||||
Comment: under what license falls a license text?
|
|
||||||
License: CC0-1.0
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
{
|
|
||||||
"types": [
|
|
||||||
{
|
|
||||||
"type": "feat",
|
|
||||||
"section": "Features"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "feature",
|
|
||||||
"section": "Features"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "fix",
|
|
||||||
"section": "Bug Fixes"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "themes",
|
|
||||||
"section": "Theme improvements"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "UX",
|
|
||||||
"section": "User experience improvements"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "UI",
|
|
||||||
"section": "User interface improvements"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "Search",
|
|
||||||
"section": "Search related features"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "chore",
|
|
||||||
"hidden": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "docs",
|
|
||||||
"hidden": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "style",
|
|
||||||
"hidden": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "refactor",
|
|
||||||
"hidden": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "perf",
|
|
||||||
"hidden": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "test",
|
|
||||||
"hidden": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"commitUrlFormat": "https://source.mapcomplete.org/MapComplete/MapComplete/commits/{{hash}}",
|
|
||||||
"compareUrlFormat": "https://source.mapcomplete.org/MapComplete/MapComplete/compare/{{previousTag}}...{{currentTag}}"
|
|
||||||
}
|
|
||||||
5
.vscode/extensions.json
vendored
5
.vscode/extensions.json
vendored
|
|
@ -2,10 +2,9 @@
|
||||||
"recommendations": [
|
"recommendations": [
|
||||||
"esbenp.prettier-vscode",
|
"esbenp.prettier-vscode",
|
||||||
"eamodio.gitlens",
|
"eamodio.gitlens",
|
||||||
|
"github.vscode-pull-request-github",
|
||||||
"svelte.svelte-vscode",
|
"svelte.svelte-vscode",
|
||||||
"bradlc.vscode-tailwindcss",
|
"bradlc.vscode-tailwindcss",
|
||||||
"editorconfig.editorconfig",
|
"editorconfig.editorconfig"
|
||||||
"dbaeumer.vscode-eslint",
|
|
||||||
"robin-van-der-linde.mapcompletevscode"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
44
.vscode/settings.json
vendored
44
.vscode/settings.json
vendored
|
|
@ -7,41 +7,6 @@
|
||||||
{
|
{
|
||||||
"fileMatch": ["/assets/themes/*/*.json", "!/assets/themes/*/license_info.json"],
|
"fileMatch": ["/assets/themes/*/*.json", "!/assets/themes/*/license_info.json"],
|
||||||
"url": "./Docs/Schemas/LayoutConfigJson.schema.json"
|
"url": "./Docs/Schemas/LayoutConfigJson.schema.json"
|
||||||
},
|
|
||||||
{
|
|
||||||
"fileMatch": ["/assets/themes/*/license_info.json", "/assets/layers/*/license_info.json"],
|
|
||||||
"schema": {
|
|
||||||
"type": "array",
|
|
||||||
"title": "License Info",
|
|
||||||
"items": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"path": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "Path to the file"
|
|
||||||
},
|
|
||||||
"authors": {
|
|
||||||
"type": "array",
|
|
||||||
"description": "Authors of the file",
|
|
||||||
"items": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"license": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "License of the file"
|
|
||||||
},
|
|
||||||
"sources": {
|
|
||||||
"type": "array",
|
|
||||||
"description": "Sources of the file",
|
|
||||||
"items": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"required": ["path", "authors", "license", "sources"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"editor.tabSize": 2,
|
"editor.tabSize": 2,
|
||||||
|
|
@ -53,12 +18,7 @@
|
||||||
"[svelte]": {
|
"[svelte]": {
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
},
|
},
|
||||||
"editor.formatOnSave": true,
|
"files.associations": {
|
||||||
"gitlens.remotes": [
|
"*.protojson": "json"
|
||||||
{
|
|
||||||
"domain": "source.mapcomplete.org",
|
|
||||||
"type": "Gitea",
|
|
||||||
"name": "MapComplete Forgejo"
|
|
||||||
}
|
}
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
28
404.html
28
404.html
|
|
@ -3,19 +3,16 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta content="width=device-width, initial-scale=1.0, user-scalable=no" name="viewport">
|
<meta content="width=device-width, initial-scale=1.0, user-scalable=no" name="viewport">
|
||||||
<meta http-equiv="Content-Security-Policy"
|
<link href="./css/mobile.css" rel="stylesheet"/>
|
||||||
content="default-src 'self'; script-src 'self' ; img-src *; connect-src 'self' https://www.openstreetmap.org/ https://api.openstreetmap.org/;">
|
<link href="./css/tagrendering.css" rel="stylesheet"/>
|
||||||
<link href="./css/mobile.css" rel="stylesheet" />
|
<link href="./css/index-tailwind-output.css" rel="stylesheet"/>
|
||||||
<link href="./css/tagrendering.css" rel="stylesheet" />
|
|
||||||
<link href="./css/index-tailwind-output.css" rel="stylesheet" />
|
|
||||||
<meta content="website" property="og:type">
|
<meta content="website" property="og:type">
|
||||||
|
|
||||||
<title>MapComplete - page not found</title>
|
<title>MapComplete - page not found</title>
|
||||||
<link href="./index.manifest" rel="manifest">
|
<link href="./index.manifest" rel="manifest">
|
||||||
<link href="./assets/svg/add.svg" rel="icon" sizes="any" type="image/svg+xml">
|
<link href="./assets/svg/add.svg" rel="icon" sizes="any" type="image/svg+xml">
|
||||||
<meta content="MapComplete - Page not found" property="og:title">
|
<meta content="MapComplete - Page not found" property="og:title">
|
||||||
<meta
|
<meta content="MapComplete is a platform to visualize OpenStreetMap on a specific topic and to easily contribute data back to it."
|
||||||
content="MapComplete is a platform to visualize OpenStreetMap on a specific topic and to easily contribute data back to it."
|
|
||||||
property="og:description">
|
property="og:description">
|
||||||
|
|
||||||
<link href="./assets/generated/images/assets_svg_mapcomplete_logo512.png" rel="apple-touch-icon" sizes="512x512">
|
<link href="./assets/generated/images/assets_svg_mapcomplete_logo512.png" rel="apple-touch-icon" sizes="512x512">
|
||||||
|
|
@ -39,8 +36,21 @@
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="maindiv" class="h-screen"></div>
|
|
||||||
<script type="module" src="./src/notfound.ts"></script>
|
<div id="decoration-desktop" style="position: fixed; left: 1em; bottom: 1em; width:35vh; height:35vh;">
|
||||||
|
<!-- A nice decoration while loading or on errors -->
|
||||||
|
<!-- DECORATION 0 START -->
|
||||||
|
<img src="./assets/svg/add.svg"/>
|
||||||
|
<!-- DECORATION 0 END -->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="clutter absolute h-24 left-24 right-24 top-56 text-xl text-center"
|
||||||
|
id="maindiv" style="z-index: 4000">
|
||||||
|
Not found...
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="module" src="./notfound.ts"></script>
|
||||||
|
<script async data-goatcounter="https://pietervdvn.goatcounter.com/count" src="//gc.zgo.at/count.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
2046
CHANGELOG.md
2046
CHANGELOG.md
File diff suppressed because it is too large
Load diff
|
|
@ -6,32 +6,31 @@ Hi! Thanks for checking out how to contribute to MapComplete!
|
||||||
There are multiple ways to contribute:
|
There are multiple ways to contribute:
|
||||||
|
|
||||||
- Translating MapComplete to your own language can be done
|
- Translating MapComplete to your own language can be done
|
||||||
on [the Weblate website](https://translate.mapcomplete.org/projects/mapcomplete/)
|
on [this website](https://hosted.weblate.org/projects/mapcomplete/)
|
||||||
- If you encounter a bug, the [issue tracker](https://source.mapcomplete.org/MapComplete/MapComplete/issues) is the place to be
|
- If you encounter a bug, the [issue tracker](https://github.com/pietervdvn/MapComplete/issues) is the place to be
|
||||||
- A good start to contribute is to create a single map layer showing features which interest you. Read more about [making your own theme](/Docs/Making_Your_Own_Theme.md).
|
- A good start to contribute is to create a single map layer showing features which interest you. Read more about [making your own theme](/Docs/Making_Your_Own_Theme.md).
|
||||||
- Feel free to hop in [our chat channel on matrix](https://app.element.io/#/room/#MapComplete:matrix.org)
|
|
||||||
- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request.
|
- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request.
|
||||||
|
|
||||||
People who stick around and contribute in a meaningful way, _might_ be granted write access to the repository (except the branches *master* and *develop*). This is
|
People who stick around and contribute in a meaningful way, _might_ be granted write access to the repository (except . This is
|
||||||
done on a purely subjective basis, e.g. after a few pull requests and if you are a member of the OSM community.
|
done on a purely subjective basis, e.g. after a few pull requests and if you are a member of the OSM community.
|
||||||
|
|
||||||
Rights of contributors
|
Rights of contributors
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
If you have write access to the repository, you can make a fork of an already existing branch and push this new branch
|
If you have write access to the repository, you can make a fork of an already existing branch and push this new branch
|
||||||
to Forgejo. This means that this branch will be _automatically built_ and be **deployed**
|
to github. This means that this branch will be _automatically built_ and be **deployed**
|
||||||
to `https://builds.mapcomplete.org/<branchname>`. You can see the deploy process
|
to `https://pietervdvn.github.io/mc/<branchname>`. You can see the deploy process
|
||||||
on [Forgejo Actions](https://source.mapcomplete.org/MapComplete/MapComplete/actions). Don't worry about pushing too much. These
|
on [Github Actions](https://github.com/pietervdvn/MapComplete/actions). Don't worry about pushing too much. These
|
||||||
deploys are free and totally automatic. They might fail if something is wrong, but this will hinder no one.
|
deploys are free and totally automatic. They might fail if something is wrong, but this will hinder no-one.
|
||||||
|
|
||||||
Additionally, some other maintainer might step in and merge the latest develop with your branch, making later pull
|
Additionaly, some other maintainer might step in and merge the latest develop with your branch, making later pull
|
||||||
requests easier.
|
requests easier.
|
||||||
|
|
||||||
Don't worry about bugs
|
Don't worry about bugs
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
As a non-admin contributor, you can _not_ make changes to the `master` nor to the `develop` branch. This is because, as
|
As a non-admin contributor, you can _not_ make changes to the `master` nor to the `develop` branch. This is because, as
|
||||||
soon as master is changed, this is built and deployed on `mapcomplete.org`, which a lot of people use. An error there
|
soon as master is changed, this is built and deployed on `mapcomplete.osm.be`, which a lot of people use. An error there
|
||||||
will cause a lot of grieve.
|
will cause a lot of grieve.
|
||||||
|
|
||||||
A push on `develop` is automatically deployed to [pietervdvn.github.io/mc/develop] which is used by quite some
|
A push on `develop` is automatically deployed to [pietervdvn.github.io/mc/develop] which is used by quite some
|
||||||
|
|
@ -59,6 +58,6 @@ again to start fresh.
|
||||||
What not to contribute
|
What not to contribute
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
I'm currently _not_ accepting files for integration with some text editor. There are hundreds of editors out there, if every single one of them needs a file in the repo, this ends up as a mess.
|
I'm currently _not_ accepting files for integration with some editor. There are hundreds of editors out there, if every single one of them needs a file in the repo, this ends up as a mess.
|
||||||
Furthermore, MapComplete doesn't want to encourage or discourage some text editors.
|
Furthermore, MapComplete doesn't want to encourage or discourage some editors.
|
||||||
At last, these files are hard to maintain and are hard to detect if they have fallen out of use.
|
At last, these files are hard to maintain and are hard to detect if they have fallen out of use.
|
||||||
|
|
|
||||||
52
Customizations/AllKnownLayouts.ts
Normal file
52
Customizations/AllKnownLayouts.ts
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
import known_themes from "../assets/generated/known_themes.json"
|
||||||
|
import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"
|
||||||
|
import { LayoutConfigJson } from "../Models/ThemeConfig/Json/LayoutConfigJson"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Somewhat of a dictionary, which lazily parses needed themes
|
||||||
|
*/
|
||||||
|
export class AllKnownLayoutsLazy {
|
||||||
|
private readonly dict: Map<string, { data: LayoutConfig } | { func: () => LayoutConfig }> =
|
||||||
|
new Map()
|
||||||
|
constructor() {
|
||||||
|
for (const layoutConfigJson of known_themes["themes"]) {
|
||||||
|
this.dict.set(layoutConfigJson.id, {
|
||||||
|
func: () => {
|
||||||
|
const layout = new LayoutConfig(<LayoutConfigJson>layoutConfigJson, true)
|
||||||
|
for (let i = 0; i < layout.layers.length; i++) {
|
||||||
|
let layer = layout.layers[i]
|
||||||
|
if (typeof layer === "string") {
|
||||||
|
throw "Layer " + layer + " was not expanded in " + layout.id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return layout
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public get(key: string): LayoutConfig {
|
||||||
|
const thunk = this.dict.get(key)
|
||||||
|
if (thunk === undefined) {
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
if (thunk["data"]) {
|
||||||
|
return thunk["data"]
|
||||||
|
}
|
||||||
|
const layout = thunk["func"]()
|
||||||
|
this.dict.set(key, { data: layout })
|
||||||
|
return layout
|
||||||
|
}
|
||||||
|
|
||||||
|
public keys() {
|
||||||
|
return this.dict.keys()
|
||||||
|
}
|
||||||
|
|
||||||
|
public values() {
|
||||||
|
return Array.from(this.keys()).map((k) => this.get(k))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export class AllKnownLayouts {
|
||||||
|
public static allKnownLayouts: AllKnownLayoutsLazy = new AllKnownLayoutsLazy()
|
||||||
|
}
|
||||||
69
Customizations/AllSharedLayers.ts
Normal file
69
Customizations/AllSharedLayers.ts
Normal file
|
|
@ -0,0 +1,69 @@
|
||||||
|
import LayerConfig from "../Models/ThemeConfig/LayerConfig"
|
||||||
|
import { Utils } from "../Utils"
|
||||||
|
import known_themes from "../assets/generated/known_layers.json"
|
||||||
|
import { LayerConfigJson } from "../Models/ThemeConfig/Json/LayerConfigJson"
|
||||||
|
import { ALL } from "dns"
|
||||||
|
import { AllKnownLayouts } from "./AllKnownLayouts"
|
||||||
|
export class AllSharedLayers {
|
||||||
|
public static sharedLayers: Map<string, LayerConfig> = AllSharedLayers.getSharedLayers()
|
||||||
|
public static getSharedLayersConfigs(): Map<string, LayerConfigJson> {
|
||||||
|
const sharedLayers = new Map<string, LayerConfigJson>()
|
||||||
|
for (const layer of known_themes.layers) {
|
||||||
|
// @ts-ignore
|
||||||
|
sharedLayers.set(layer.id, layer)
|
||||||
|
}
|
||||||
|
|
||||||
|
return sharedLayers
|
||||||
|
}
|
||||||
|
private static getSharedLayers(): Map<string, LayerConfig> {
|
||||||
|
const sharedLayers = new Map<string, LayerConfig>()
|
||||||
|
for (const layer of known_themes.layers) {
|
||||||
|
try {
|
||||||
|
// @ts-ignore
|
||||||
|
const parsed = new LayerConfig(layer, "shared_layers")
|
||||||
|
sharedLayers.set(layer.id, parsed)
|
||||||
|
} catch (e) {
|
||||||
|
if (!Utils.runningFromConsole) {
|
||||||
|
console.error(
|
||||||
|
"CRITICAL: Could not parse a layer configuration!",
|
||||||
|
layer.id,
|
||||||
|
" due to",
|
||||||
|
e
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return sharedLayers
|
||||||
|
}
|
||||||
|
|
||||||
|
public static AllPublicLayers(options?: {
|
||||||
|
includeInlineLayers: true | boolean
|
||||||
|
}): LayerConfig[] {
|
||||||
|
const allLayers: LayerConfig[] = []
|
||||||
|
const seendIds = new Set<string>()
|
||||||
|
AllSharedLayers.sharedLayers.forEach((layer, key) => {
|
||||||
|
seendIds.add(key)
|
||||||
|
allLayers.push(layer)
|
||||||
|
})
|
||||||
|
if (options?.includeInlineLayers ?? true) {
|
||||||
|
const publicLayouts = Array.from(AllKnownLayouts.allKnownLayouts.values()).filter(
|
||||||
|
(l) => !l.hideFromOverview
|
||||||
|
)
|
||||||
|
for (const layout of publicLayouts) {
|
||||||
|
if (layout.hideFromOverview) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
for (const layer of layout.layers) {
|
||||||
|
if (seendIds.has(layer.id)) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
seendIds.add(layer.id)
|
||||||
|
allLayers.push(layer)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return allLayers
|
||||||
|
}
|
||||||
|
}
|
||||||
104
Customizations/SharedTagRenderings.ts
Normal file
104
Customizations/SharedTagRenderings.ts
Normal file
|
|
@ -0,0 +1,104 @@
|
||||||
|
import questions from "../assets/tagRenderings/questions.json"
|
||||||
|
import { Utils } from "../Utils"
|
||||||
|
import TagRenderingConfig from "../Models/ThemeConfig/TagRenderingConfig"
|
||||||
|
import { TagRenderingConfigJson } from "../Models/ThemeConfig/Json/TagRenderingConfigJson"
|
||||||
|
import BaseUIElement from "../UI/BaseUIElement"
|
||||||
|
import Combine from "../UI/Base/Combine"
|
||||||
|
import Title from "../UI/Base/Title"
|
||||||
|
import { FixedUiElement } from "../UI/Base/FixedUiElement"
|
||||||
|
import List from "../UI/Base/List"
|
||||||
|
|
||||||
|
export default class SharedTagRenderings {
|
||||||
|
public static SharedTagRendering: Map<string, TagRenderingConfig> =
|
||||||
|
SharedTagRenderings.generatedSharedFields()
|
||||||
|
public static SharedTagRenderingJson: Map<string, TagRenderingConfigJson> =
|
||||||
|
SharedTagRenderings.generatedSharedFieldsJsons()
|
||||||
|
|
||||||
|
private static generatedSharedFields(): Map<string, TagRenderingConfig> {
|
||||||
|
const configJsons = SharedTagRenderings.generatedSharedFieldsJsons()
|
||||||
|
const d = new Map<string, TagRenderingConfig>()
|
||||||
|
for (const key of Array.from(configJsons.keys())) {
|
||||||
|
try {
|
||||||
|
d.set(
|
||||||
|
key,
|
||||||
|
new TagRenderingConfig(configJsons.get(key), `SharedTagRenderings.${key}`)
|
||||||
|
)
|
||||||
|
} catch (e) {
|
||||||
|
if (!Utils.runningFromConsole) {
|
||||||
|
console.error(
|
||||||
|
"BUG: could not parse",
|
||||||
|
key,
|
||||||
|
" from questions.json - this error happened during the build step of the SharedTagRenderings",
|
||||||
|
e
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return d
|
||||||
|
}
|
||||||
|
|
||||||
|
private static generatedSharedFieldsJsons(): Map<string, TagRenderingConfigJson> {
|
||||||
|
const dict = new Map<string, TagRenderingConfigJson>()
|
||||||
|
|
||||||
|
for (const key in questions) {
|
||||||
|
if (key === "id") {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
dict.set(key, <TagRenderingConfigJson>questions[key])
|
||||||
|
}
|
||||||
|
|
||||||
|
dict.forEach((value, key) => {
|
||||||
|
if (key === "id") {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
value.id = value.id ?? key
|
||||||
|
if (value["builtin"] !== undefined) {
|
||||||
|
if (value["override"] == undefined) {
|
||||||
|
throw (
|
||||||
|
"HUH? Why whould you want to reuse a builtin if one doesn't override? In questions.json/" +
|
||||||
|
key
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (typeof value["builtin"] !== "string") {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// This is a really funny situation: we extend another tagRendering!
|
||||||
|
const parent = Utils.Clone(dict.get(value["builtin"]))
|
||||||
|
delete parent.id
|
||||||
|
Utils.Merge(value["override"], parent)
|
||||||
|
delete value["builtin"]
|
||||||
|
delete value["override"]
|
||||||
|
for (const pkey in parent) {
|
||||||
|
value[pkey] = parent[pkey]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
return dict
|
||||||
|
}
|
||||||
|
|
||||||
|
public static HelpText(): BaseUIElement {
|
||||||
|
return new Combine([
|
||||||
|
new Combine([
|
||||||
|
new Title("Builtin questions", 1),
|
||||||
|
|
||||||
|
"The following items can be easily reused in your layers",
|
||||||
|
]).SetClass("flex flex-col"),
|
||||||
|
|
||||||
|
...Array.from(SharedTagRenderings.SharedTagRendering.keys()).map((key) => {
|
||||||
|
const tr = SharedTagRenderings.SharedTagRendering.get(key)
|
||||||
|
let mappings: BaseUIElement = undefined
|
||||||
|
if (tr.mappings?.length > 0) {
|
||||||
|
mappings = new List(tr.mappings.map((m) => m.then.textFor("en")))
|
||||||
|
}
|
||||||
|
return new Combine([
|
||||||
|
new Title(key),
|
||||||
|
tr.render?.textFor("en"),
|
||||||
|
tr.question?.textFor("en") ??
|
||||||
|
new FixedUiElement("Read-only tagrendering").SetClass("font-bold"),
|
||||||
|
mappings,
|
||||||
|
]).SetClass("flex flex-col")
|
||||||
|
}),
|
||||||
|
]).SetClass("flex flex-col")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
# Creating an APK from the code
|
|
||||||
|
|
||||||
We are using capacitor. This is a tool which packages some files into an Android shell.
|
|
||||||
|
|
||||||
## Developing
|
|
||||||
|
|
||||||
0. `nvm use` to make sure your using the correct android version
|
|
||||||
1. Build all the necessary files.
|
|
||||||
a. If no layer/theme changes were made, `npm run build` is sufficient
|
|
||||||
b. Otherwise, run `npm run prepare-deploy`.
|
|
||||||
2. All the web assets will now be in `dist/`
|
|
||||||
3. Run `scripts/prepareAndroid.sh`
|
|
||||||
4. Switch to Android Studio, open the subproject "Android" in it
|
|
||||||
221
Docs/Architecture.md
Normal file
221
Docs/Architecture.md
Normal file
|
|
@ -0,0 +1,221 @@
|
||||||
|
Architecture
|
||||||
|
============
|
||||||
|
|
||||||
|
This document aims to give an architectural overview of how MapCompelte is built. It should give some feeling on how
|
||||||
|
everything fits together.
|
||||||
|
|
||||||
|
Servers?
|
||||||
|
--------
|
||||||
|
|
||||||
|
There are no servers for MapComplete, all services are configured by third parties.
|
||||||
|
|
||||||
|
Minimal HTML - Minimal CSS
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
There is quasi no HTML. Most of the components are generated by TypeScript and attached dynamically. The HTML is a
|
||||||
|
barebones skeleton which serves every theme.
|
||||||
|
|
||||||
|
|
||||||
|
The UIEventSource
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
Most (but not all) objects in MapComplete get all the state they need as a parameter in the constructor. However, as is
|
||||||
|
the case with most graphical applications, there are quite some dynamical values.
|
||||||
|
|
||||||
|
All values which change regularly are wrapped into
|
||||||
|
a [`UIEventSource`](../Logic/UIEventSource.ts). A `UIEventSource` is a
|
||||||
|
wrapper containing a value and offers the possibility to add a callback function which is called every time the value is
|
||||||
|
changed (with `setData`)
|
||||||
|
|
||||||
|
Furthermore, there are various helper functions, the most widely used one being `map` - generating a new event source
|
||||||
|
with the new value applied. Note that `map` will also absorb some changes,
|
||||||
|
e.g. `const someEventSource : UIEventSource<string[]> = ... ; someEventSource.map(list = list.length)` will only trigger
|
||||||
|
when the length of the list has changed.
|
||||||
|
|
||||||
|
An object which receives a `UIEventSource` is responsible of responding to changes of this object. This is especially
|
||||||
|
true for UI-components.
|
||||||
|
|
||||||
|
UI
|
||||||
|
--
|
||||||
|
```typescript
|
||||||
|
|
||||||
|
export default class MyComponent {
|
||||||
|
|
||||||
|
constructor(neededParameters, neededUIEventSources) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
The Graphical User Interface is composed of various UI-elements. For every UI-element, there is a `BaseUIElement` which creates the actual `HTMLElement` when needed.
|
||||||
|
|
||||||
|
There are some basic elements, such as:
|
||||||
|
|
||||||
|
- `FixedUIElement` which shows a fixed, unchangeble element
|
||||||
|
- `Img` to show an image
|
||||||
|
- `Combine` which wraps everything given (strings and other elements) in a div
|
||||||
|
- `List`
|
||||||
|
|
||||||
|
There is one special component: the `VariableUIElement`
|
||||||
|
The `VariableUIElement` takes a `UIEventSource<string|BaseUIElement>` and will dynamicaly show whatever the `UIEventSource` contains at the moment.
|
||||||
|
|
||||||
|
For example:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
|
||||||
|
const src : UIEventSource<string> = ... // E.g. user input, data that will be updated... new VariableUIElement(src)
|
||||||
|
.AttachTo('some-id') // attach it to the html
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that every component offers support for `onClick( someCallBack)`
|
||||||
|
|
||||||
|
### Translations
|
||||||
|
|
||||||
|
To add a translation:
|
||||||
|
|
||||||
|
1. Open `langs/en.json`
|
||||||
|
2. Find a correct spot for your translation in the tree
|
||||||
|
3. run `npm run generate:translations`
|
||||||
|
4. `import Translations`
|
||||||
|
5. `Translations.t.<your-translation>.Clone()` is the `UIElement` offering your translation
|
||||||
|
|
||||||
|
### Input elements
|
||||||
|
|
||||||
|
Input elements are a special kind of BaseElement which offer a piece of a form to the user, e.g. a TextField, a Radio button, a dropdown, ...
|
||||||
|
|
||||||
|
The constructor will ask all the parameters to configure them. The actual value can be obtained via `inputElement.GetValue()`, which is a `UIEventSource` that will be triggered every time the user changes the input.
|
||||||
|
|
||||||
|
### Advanced elements
|
||||||
|
|
||||||
|
There are some components which offer useful functionality:
|
||||||
|
|
||||||
|
|
||||||
|
- The `subtleButton` which is a friendly, big button
|
||||||
|
- The Toggle: `const t = new Toggle( componentA, componentB, source)` is a `UIEventSource` which shows `componentA` as long as `source` contains `true` and will show `componentB` otherwise.
|
||||||
|
|
||||||
|
|
||||||
|
### Styling
|
||||||
|
|
||||||
|
Styling is done as much as possible with [TailwindCSS](https://tailwindcss.com/). It contains a ton of utility classes, each of them containing a few rules.
|
||||||
|
|
||||||
|
For example: ` someBaseUIElement.SetClass("flex flex-col border border-black rounded-full")` will set the component to be a flex object, as column, with a black border and pill-shaped.
|
||||||
|
|
||||||
|
If Tailwind is not enough, use `baseUiElement.SetStyle("background: red; someOtherCssRule: abc;")`.
|
||||||
|
|
||||||
|
### An example
|
||||||
|
|
||||||
|
For example: the user should input wether or not a shop is closed during public holidays. There are three options:
|
||||||
|
|
||||||
|
1. closed
|
||||||
|
2. opened as usual
|
||||||
|
3. opened with different hours as usual
|
||||||
|
|
||||||
|
In the case of different hours, input hours should be too.
|
||||||
|
|
||||||
|
This can be constructed as following:
|
||||||
|
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
|
||||||
|
// We construct the dropdown element with values and labelshttps://tailwindcss.com/
|
||||||
|
const isOpened = new Dropdown<string>(Translations.t.is_this_shop_opened_during_holidays,
|
||||||
|
[
|
||||||
|
{ value: "closed", Translation.t.shop_closed_during_holidays.Clone()},
|
||||||
|
{ value: "open", Translations.t.shop_opened_as_usual.Clone()},
|
||||||
|
{ value: "hours", Translations.t.shop_opened_with_other_hours.Clone()}
|
||||||
|
] )
|
||||||
|
|
||||||
|
const startHour = new DateInput(...)drop
|
||||||
|
const endHour = new DateInput( ... )
|
||||||
|
// We construct a toggle which'll only show the extra questions if needed
|
||||||
|
const extraQuestion = new Toggle(
|
||||||
|
new Combine([Translations.t.openFrom, startHour, Translations.t.openTill, endHour]),
|
||||||
|
undefined,
|
||||||
|
isOpened.GetValue().map(isopened => isopened === "hours")
|
||||||
|
)
|
||||||
|
|
||||||
|
return new Combine([isOpened, extraQuestion])
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
### Constructing a special class
|
||||||
|
|
||||||
|
If you make a specialized class to offer a certain functionality, you can organize it as following:
|
||||||
|
|
||||||
|
1. Create a new class:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
|
||||||
|
export default class MyComponent {
|
||||||
|
|
||||||
|
constructor(neededParameters, neededUIEventSources) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Construct the needed UI in the constructor
|
||||||
|
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
|
||||||
|
export default class MyComponent {
|
||||||
|
|
||||||
|
constructor(neededParameters, neededUIEventSources) {
|
||||||
|
|
||||||
|
|
||||||
|
const component = ...
|
||||||
|
const toggle = ...
|
||||||
|
... other components ...
|
||||||
|
|
||||||
|
toggle.GetValue.AddCallbackAndRun(isSelected => { .. some actions ... }
|
||||||
|
|
||||||
|
new Combine([everything, ...] )
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
3. You'll notice that you'll end up with one certain component (in this example the combine) to wrap it all together. Change the class to extend this type of component and use `super()` to wrap it all up:
|
||||||
|
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
|
||||||
|
export default class MyComponent extends Combine {
|
||||||
|
|
||||||
|
constructor(...) {
|
||||||
|
|
||||||
|
...
|
||||||
|
super([everything, ...])
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
Assets
|
||||||
|
------
|
||||||
|
|
||||||
|
### Themes
|
||||||
|
|
||||||
|
Theme and layer configuration files go into `assets/layers` and `assets/themes`.
|
||||||
|
|
||||||
|
### Images
|
||||||
|
|
||||||
|
Other files (mostly images that are part of the core of MapComplete) go into `assets/svg` and are usable with `Svg.image_file_ui()`. Run `npm run generate:images` if you added a new image.
|
||||||
|
|
||||||
|
|
||||||
|
Logic
|
||||||
|
-----
|
||||||
|
|
||||||
|
The last part is the business logic of the application, found in the directory [Logic](../Logic). Actors are small objects which react to `UIEventSources` to update other eventSources.
|
||||||
|
|
||||||
|
`State.state` is a big singleton object containing a lot of the state of the entire application. That one is a bit of a mess.
|
||||||
|
|
||||||
1176
Docs/BuiltinIndex.md
1176
Docs/BuiltinIndex.md
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
|
|
@ -1,144 +1,254 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# Metatags
|
Metatags
|
||||||
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Table of contents
|
||||||
|
|
||||||
|
1. [Metatags](#metatags)
|
||||||
|
- [Metatags calculated by MapComplete](#metatags-calculated-by-mapcomplete)
|
||||||
|
+ [_lat, _lon](#_lat,-_lon)
|
||||||
|
+ [_layer](#_layer)
|
||||||
|
+ [_surface, _surface:ha](#_surface,-_surfaceha)
|
||||||
|
+ [_length, _length:km](#_length,-_lengthkm)
|
||||||
|
+ [Theme-defined keys](#theme-defined-keys)
|
||||||
|
+ [_country](#_country)
|
||||||
|
+ [_isOpen](#_isopen)
|
||||||
|
+ [_direction:numerical, _direction:leftright](#_directionnumerical,-_direction:leftright)
|
||||||
|
+ [_direction:centerpoint](#_directioncenterpoint)
|
||||||
|
+ [_now:date, _now:datetime, _loaded:date, _loaded:_datetime](#_nowdate,-_now:datetime,-_loaded:date,-_loaded:_datetime)
|
||||||
|
+ [_last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend](#_last_editcontributor,-_last_edit:contributor:uid,-_last_edit:changeset,-_last_edit:timestamp,-_version_number,-_backend)
|
||||||
|
+ [sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property](#sidewalkleft,-sidewalk:right,-generic_key:left:property,-generic_key:right:property)
|
||||||
|
+ [_geometry:type](#_geometrytype)
|
||||||
|
+ [_level](#_level)
|
||||||
|
+ [_referencing_ways](#_referencing_ways)
|
||||||
|
+ [distanceTo](#distanceto)
|
||||||
|
+ [overlapWith](#overlapwith)
|
||||||
|
+ [enclosingFeatures](#enclosingfeatures)
|
||||||
|
+ [intersectionsWith](#intersectionswith)
|
||||||
|
+ [closest](#closest)
|
||||||
|
+ [closestn](#closestn)
|
||||||
|
+ [memberships](#memberships)
|
||||||
|
+ [get](#get)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Metatags are extra tags available, in order to display more data or to give better questions.
|
Metatags are extra tags available, in order to display more data or to give better questions.
|
||||||
|
|
||||||
They are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags.
|
They are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags.
|
||||||
|
|
||||||
**Hint:** when using metatags, add the [query parameter](URL_Parameters.md) `debug=true` to the URL. This will include a box in the popup for features which shows all the properties of the object
|
**Hint:** when using metatags, add the [query parameter](URL_Parameters.md) `debug=true` to the URL. This will include a box in the popup for features which shows all the properties of the object
|
||||||
|
|
||||||
## Metatags calculated by MapComplete
|
|
||||||
|
|
||||||
|
Metatags calculated by MapComplete
|
||||||
|
------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The following values are always calculated, by default, by MapComplete and are available automatically on all elements in every theme
|
The following values are always calculated, by default, by MapComplete and are available automatically on all elements in every theme
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _lat, _lon
|
### _lat, _lon
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The latitude and longitude of the point (or centerpoint in the case of a way/area)
|
The latitude and longitude of the point (or centerpoint in the case of a way/area)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _layer
|
### _layer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The layer-id to which this feature belongs. Note that this might be return any applicable if `passAllFeatures` is defined.
|
The layer-id to which this feature belongs. Note that this might be return any applicable if `passAllFeatures` is defined.
|
||||||
|
|
||||||
### _surface
|
|
||||||
|
|
||||||
The surface area of the feature in square meters. Not set on points and ways
|
|
||||||
|
|
||||||
|
|
||||||
|
### _surface, _surface:ha
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The surface area of the feature, in square meters and in hectare. Not set on points and ways
|
||||||
|
|
||||||
This is a lazy metatag and is only calculated when needed
|
This is a lazy metatag and is only calculated when needed
|
||||||
|
|
||||||
### _surface:ha
|
|
||||||
|
|
||||||
The surface area of the feature in hectare. Not set on points and ways
|
|
||||||
|
|
||||||
This is a lazy metatag and is only calculated when needed
|
|
||||||
|
|
||||||
### _length, _length:km
|
### _length, _length:km
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
The total length of a feature in meters (and in kilometers, rounded to one decimal for '_length:km'). For a surface, the length of the perimeter
|
The total length of a feature in meters (and in kilometers, rounded to one decimal for '_length:km'). For a surface, the length of the perimeter
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Theme-defined keys
|
### Theme-defined keys
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If 'units' is defined in the layoutConfig, then this metatagger will rewrite the specified keys to have the canonical form (e.g. `1meter` will be rewritten to `1m`; `1` will be rewritten to `1m` as well)
|
If 'units' is defined in the layoutConfig, then this metatagger will rewrite the specified keys to have the canonical form (e.g. `1meter` will be rewritten to `1m`; `1` will be rewritten to `1m` as well)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _country
|
### _country
|
||||||
|
|
||||||
The country codes of the of the country/countries that the feature is located in (with latlon2country). Might contain _multiple_ countries, separated by a `;`
|
|
||||||
|
|
||||||
|
The country code of the property (with latlon2country)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _isOpen
|
### _isOpen
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If 'opening_hours' is present, it will add the current state of the feature (being 'yes' or 'no')
|
If 'opening_hours' is present, it will add the current state of the feature (being 'yes' or 'no')
|
||||||
|
|
||||||
This is a lazy metatag and is only calculated when needed
|
This is a lazy metatag and is only calculated when needed
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _direction:numerical, _direction:leftright
|
### _direction:numerical, _direction:leftright
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_direction:numerical is a normalized, numerical direction based on 'camera:direction' or on 'direction'; it is only present if a valid direction is found (e.g. 38.5 or NE). _direction:leftright is either 'left' or 'right', which is left-looking on the map or 'right-looking' on the map
|
_direction:numerical is a normalized, numerical direction based on 'camera:direction' or on 'direction'; it is only present if a valid direction is found (e.g. 38.5 or NE). _direction:leftright is either 'left' or 'right', which is left-looking on the map or 'right-looking' on the map
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _direction:centerpoint
|
### _direction:centerpoint
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_direction:centerpoint is the direction of the linestring (in degrees) if one were standing at the projected centerpoint.
|
_direction:centerpoint is the direction of the linestring (in degrees) if one were standing at the projected centerpoint.
|
||||||
|
|
||||||
This is a lazy metatag and is only calculated when needed
|
This is a lazy metatag and is only calculated when needed
|
||||||
|
|
||||||
### _now:date, _now:datetime
|
|
||||||
|
|
||||||
|
### _now:date, _now:datetime, _loaded:date, _loaded:_datetime
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Adds the time that the data got loaded - pretty much the time of downloading from overpass. The format is YYYY-MM-DD hh:mm, aka 'sortable' aka ISO-8601-but-not-entirely
|
Adds the time that the data got loaded - pretty much the time of downloading from overpass. The format is YYYY-MM-DD hh:mm, aka 'sortable' aka ISO-8601-but-not-entirely
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend
|
### _last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend
|
||||||
|
|
||||||
Information about the last edit of this object. This object will actually _rewrite_ some tags for features coming from overpass
|
|
||||||
|
|
||||||
|
Information about the last edit of this object.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property
|
### sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Rewrites tags from 'generic_key:both:property' as 'generic_key:left:property' and 'generic_key:right:property' (and similar for sidewalk tagging). Note that this rewritten tags _will be reuploaded on a change_. To prevent to much unrelated retagging, this is only enabled if the layer has at least some lineRenderings with offset defined
|
Rewrites tags from 'generic_key:both:property' as 'generic_key:left:property' and 'generic_key:right:property' (and similar for sidewalk tagging). Note that this rewritten tags _will be reuploaded on a change_. To prevent to much unrelated retagging, this is only enabled if the layer has at least some lineRenderings with offset defined
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _geometry:type
|
### _geometry:type
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Adds the geometry type as property. This is identical to the GoeJson geometry type and is one of `Point`,`LineString`, `Polygon` and exceptionally `MultiPolygon` or `MultiLineString`
|
Adds the geometry type as property. This is identical to the GoeJson geometry type and is one of `Point`,`LineString`, `Polygon` and exceptionally `MultiPolygon` or `MultiLineString`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _level
|
### _level
|
||||||
|
|
||||||
Extract the 'level'-tag into a normalized, ';'-separated value called '_level' (which also includes 'repeat_on'). The `level` tag (without underscore) will be normalized with only the value of `level`.
|
|
||||||
|
|
||||||
|
Extract the 'level'-tag into a normalized, ';'-separated value
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### _referencing_ways
|
### _referencing_ways
|
||||||
|
|
||||||
_referencing_ways contains - for a node - which ways use this node as point in their geometry.
|
|
||||||
|
|
||||||
|
_referencing_ways contains - for a node - which ways use this this node as point in their geometry. If the preset has 'snapToLayer' defined, the icon will be calculated based on the preset tags with `_referencing_ways=["way/-1"]` added.
|
||||||
|
|
||||||
This is a lazy metatag and is only calculated when needed
|
This is a lazy metatag and is only calculated when needed
|
||||||
|
|
||||||
### _last_edit:passed_time
|
|
||||||
|
|
||||||
Gives the number of seconds since the last edit. Note that this will _not_ update, but rather be the number of seconds elapsed at the moment this tag is read first
|
|
||||||
|
|
||||||
This is a lazy metatag and is only calculated when needed
|
Calculating tags with Javascript
|
||||||
|
----------------------------------
|
||||||
|
|
||||||
### _currency
|
|
||||||
|
|
||||||
Adds the currency valid for the object, based on country or explicit tagging. Can be a single currency or a semicolon-separated list of currencies. Empty if no currency is found.
|
|
||||||
|
|
||||||
This is a lazy metatag and is only calculated when needed
|
|
||||||
|
|
||||||
### panoramax
|
|
||||||
|
|
||||||
Converts a `panoramax=hash1;hash2;hash3;...` into `panoramax=hash1`,`panoramax:0=hash1`...
|
|
||||||
|
|
||||||
## Calculating tags with Javascript
|
|
||||||
|
|
||||||
In some cases, it is useful to have some tags calculated based on other properties. Some useful tags are available by default (e.g. `lat`, `lon`, `_country`), as detailed above.
|
In some cases, it is useful to have some tags calculated based on other properties. Some useful tags are available by default (e.g. `lat`, `lon`, `_country`), as detailed above.
|
||||||
|
|
||||||
It is also possible to calculate your own tags - but this requires some javascript knowledge.
|
It is also possible to calculate your own tags - but this requires some javascript knowledge.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Before proceeding, some warnings:
|
Before proceeding, some warnings:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- DO NOT DO THIS AS BEGINNER
|
- DO NOT DO THIS AS BEGINNER
|
||||||
- **Only do this if all other techniques fail** This should _not_ be done to create a rendering effect, only to calculate a specific value
|
- **Only do this if all other techniques fail** This should _not_ be done to create a rendering effect, only to calculate a specific value
|
||||||
- **THIS MIGHT BE DISABLED WITHOUT ANY NOTICE ON UNOFFICIAL THEMES** As unofficial themes might be loaded from the internet, this is the equivalent of injecting arbitrary code into the client. It'll be disabled if abuse occurs.
|
- **THIS MIGHT BE DISABLED WITHOUT ANY NOTICE ON UNOFFICIAL THEMES** As unofficial themes might be loaded from the internet, this is the equivalent of injecting arbitrary code into the client. It'll be disabled if abuse occurs.
|
||||||
|
|
||||||
|
|
||||||
To enable this feature, add a field `calculatedTags` in the layer object, e.g.:
|
To enable this feature, add a field `calculatedTags` in the layer object, e.g.:
|
||||||
|
|
||||||
````
|
````
|
||||||
|
|
||||||
"calculatedTags": [
|
"calculatedTags": [
|
||||||
|
|
||||||
"_someKey=javascript-expression (lazy execution)",
|
"_someKey=javascript-expression",
|
||||||
|
|
||||||
"_some_other_key:=javascript expression (strict execution)
|
|
||||||
|
|
||||||
"name=feat.properties.name ?? feat.properties.ref ?? feat.properties.operator",
|
"name=feat.properties.name ?? feat.properties.ref ?? feat.properties.operator",
|
||||||
|
|
||||||
"_distanceCloserThen3Km=distanceTo(feat)( some_lon, some_lat) < 3 ? 'yes' : 'no'"
|
"_distanceCloserThen3Km=feat.distanceTo( some_lon, some_lat) < 3 ? 'yes' : 'no'"
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
````
|
````
|
||||||
|
|
||||||
By using `:=` as separator, the attribute will be calculated as soon as the data is loaded (strict evaluation)
|
|
||||||
|
|
||||||
The default behaviour, using `=` as separator, is lazy loading
|
|
||||||
|
|
||||||
The above code will be executed for every feature in the layer. The feature is accessible as `feat` and is an amended geojson object:
|
The above code will be executed for every feature in the layer. The feature is accessible as `feat` and is an amended geojson object:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- `area` contains the surface area (in square meters) of the object
|
- `area` contains the surface area (in square meters) of the object
|
||||||
- `lat` and `lon` contain the latitude and longitude
|
- `lat` and `lon` contain the latitude and longitude
|
||||||
|
|
||||||
Some advanced functions are available as well. Due to technical reasons, they should be used as `funcname(feat)(arguments)`.
|
|
||||||
|
Some advanced functions are available on **feat** as well:
|
||||||
|
|
||||||
- [distanceTo](#distanceTo)
|
- [distanceTo](#distanceTo)
|
||||||
- [overlapWith](#overlapWith)
|
- [overlapWith](#overlapWith)
|
||||||
|
|
@ -146,65 +256,88 @@ Some advanced functions are available as well. Due to technical reasons, they sh
|
||||||
- [intersectionsWith](#intersectionsWith)
|
- [intersectionsWith](#intersectionsWith)
|
||||||
- [closest](#closest)
|
- [closest](#closest)
|
||||||
- [closestn](#closestn)
|
- [closestn](#closestn)
|
||||||
|
- [memberships](#memberships)
|
||||||
- [get](#get)
|
- [get](#get)
|
||||||
|
|
||||||
### distanceTo
|
|
||||||
Calculates the distance between the feature and a specified point in meter. The input should either be a pair of coordinates, a geojson feature or the ID of an object
|
|
||||||
|
|
||||||
- feature OR featureID OR longitude
|
### distanceTo
|
||||||
- undefined OR latitude
|
|
||||||
|
Calculates the distance between the feature and a specified point in meter. The input should either be a pair of coordinates, a geojson feature or the ID of an object
|
||||||
|
|
||||||
|
0. feature OR featureID OR longitude
|
||||||
|
1. undefined OR latitude
|
||||||
|
|
||||||
|
|
||||||
### overlapWith
|
### overlapWith
|
||||||
Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well.
|
|
||||||
|
Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well.
|
||||||
If the current feature is a point, all features that this point is embeded in are given.
|
If the current feature is a point, all features that this point is embeded in are given.
|
||||||
|
|
||||||
The returned value is `{ feat: GeoJSONFeature, overlap: number}[]` where `overlap` is the overlapping surface are (in m²) for areas, the overlapping length (in meter) if the current feature is a line or `undefined` if the current feature is a point.
|
The returned value is `{ feat: GeoJSONFeature, overlap: number}[]` where `overlap` is the overlapping surface are (in m²) for areas, the overlapping length (in meter) if the current feature is a line or `undefined` if the current feature is a point.
|
||||||
The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list.
|
The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list.
|
||||||
|
|
||||||
For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=overlapWith(feat)('climbing_route')`
|
For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')`
|
||||||
|
|
||||||
Also see [enclosingFeatures](#enclosingFeatures) which can be used to get all objects which fully contain this feature
|
Also see [enclosingFeatures](#enclosingFeatures) which can be used to get all objects which fully contain this feature
|
||||||
|
|
||||||
- ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)
|
0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)
|
||||||
|
|
||||||
|
|
||||||
### enclosingFeatures
|
### enclosingFeatures
|
||||||
Gives a list of all features in the specified layers which fully contain this object. Returned features will always be (multi)polygons. (LineStrings and Points from the other layers are ignored)
|
|
||||||
|
Gives a list of all features in the specified layers which fully contain this object. Returned features will always be (multi)polygons. (LineStrings and Points from the other layers are ignored)
|
||||||
|
|
||||||
The result is a list of features: `{feat: Polygon}[]`
|
The result is a list of features: `{feat: Polygon}[]`
|
||||||
This function will never return the feature itself.
|
This function will never return the feature itself.
|
||||||
|
|
||||||
- ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)
|
0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)
|
||||||
|
|
||||||
|
|
||||||
### intersectionsWith
|
### intersectionsWith
|
||||||
Gives the intersection points with selected features. Only works with (Multi)Polygons and LineStrings.
|
|
||||||
|
Gives the intersection points with selected features. Only works with (Multi)Polygons and LineStrings.
|
||||||
|
|
||||||
Returns a `{feat: GeoJson, intersections: [number,number][]}` where `feat` is the full, original feature. This list is in random order.
|
Returns a `{feat: GeoJson, intersections: [number,number][]}` where `feat` is the full, original feature. This list is in random order.
|
||||||
|
|
||||||
If the current feature is a point, this function will return an empty list.
|
If the current feature is a point, this function will return an empty list.
|
||||||
Points from other layers are ignored - even if the points are parts of the current linestring.
|
Points from other layers are ignored - even if the points are parts of the current linestring.
|
||||||
|
|
||||||
- ...layerIds - one or more layer ids of the layer from which every feature is checked for intersection)
|
0. ...layerIds - one or more layer ids of the layer from which every feature is checked for intersection)
|
||||||
|
|
||||||
|
|
||||||
### closest
|
### closest
|
||||||
Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet loaded)
|
|
||||||
|
|
||||||
- list of features or a layer name or '*' to get all features
|
Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet loaded)
|
||||||
|
|
||||||
|
0. list of features or a layer name or '*' to get all features
|
||||||
|
|
||||||
|
|
||||||
### closestn
|
### closestn
|
||||||
Given either a list of geojson features or a single layer name, gives the n closest objects which are nearest to the feature (excluding the feature itself). In the case of ways/polygons, only the centerpoint is considered. Returns a list of `{feat: geojson, distance:number}` the empty list if nothing is found (or not yet loaded)
|
|
||||||
|
Given either a list of geojson features or a single layer name, gives the n closest objects which are nearest to the feature (excluding the feature itself). In the case of ways/polygons, only the centerpoint is considered. Returns a list of `{feat: geojson, distance:number}` the empty list if nothing is found (or not yet loaded)
|
||||||
|
|
||||||
If a 'unique tag key' is given, the tag with this key will only appear once (e.g. if 'name' is given, all features will have a different name)
|
If a 'unique tag key' is given, the tag with this key will only appear once (e.g. if 'name' is given, all features will have a different name)
|
||||||
|
|
||||||
- list of features or layer name or '*' to get all features
|
0. list of features or layer name or '*' to get all features
|
||||||
- amount of features
|
1. amount of features
|
||||||
- unique tag key (optional)
|
2. unique tag key (optional)
|
||||||
- maxDistanceInMeters (optional)
|
3. maxDistanceInMeters (optional)
|
||||||
|
|
||||||
### get
|
|
||||||
Gets the property of the feature, parses it (as JSON) and returns it. Might return 'undefined' if not defined, null, ...
|
|
||||||
|
|
||||||
- key
|
### memberships
|
||||||
|
|
||||||
|
Gives a list of `{role: string, relation: Relation}`-objects, containing all the relations that this feature is part of.
|
||||||
|
|
||||||
|
For example: `_part_of_walking_routes=feat.memberships().map(r => r.relation.tags.name).join(';')`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [src/Logic/SimpleMetaTagger.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/Logic/SimpleMetaTagger.ts), [src/Logic/ExtraFunctions.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/Logic/ExtraFunctions.ts)
|
### get
|
||||||
|
|
||||||
|
Gets the property of the feature, parses it (as JSON) and returns it. Might return 'undefined' if not defined, null, ...
|
||||||
|
|
||||||
|
0. key
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [Logic/SimpleMetaTagger.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Logic/SimpleMetaTagger.ts), [Logic/ExtraFunctions.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Logic/ExtraFunctions.ts)
|
||||||
|
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# Metatags on a changeset
|
|
||||||
|
|
||||||
You might encounter the following metatags on a changeset:
|
|
||||||
|
|
||||||
| key | value | explanation | source |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| comment | | The changeset comment. Will be a fixed string, mentioning the theme
|
|
||||||
| default |
|
|
||||||
| theme | | The name of the theme that was used to create this change.
|
|
||||||
| default |
|
|
||||||
| source | survey | The contributor had their geolocation enabled while making changes
|
|
||||||
| default |
|
|
||||||
| change_within_{distance} | | If the contributor enabled their geolocation, this will hint how far away they were from the objects they edited. This gives an indication of proximity and if they truly surveyed or were armchair-mapping
|
|
||||||
| default |
|
|
||||||
| change_over_{distance} | | If the contributor enabled their geolocation, this will hint how far away they were from the objects they edited. If they were over 5000m away, the might have been armchair-mapping
|
|
||||||
| default |
|
|
||||||
| created_by | MapComplete <version> | The piece of software used to create this changeset; will always start with MapComplete, followed by the version number
|
|
||||||
| default |
|
|
||||||
| locale | en|nl|de|... | The code of the language that the contributor used MapComplete in. Hints what language the user speaks.
|
|
||||||
| default |
|
|
||||||
| host | https://mapcomplete.org/<theme> | The URL that the contributor used to make changes. One can see the used instance with this
|
|
||||||
| default |
|
|
||||||
| imagery | | The identifier of the used background layer, this will probably be an identifier from the [editor layer index](https://github.com/osmlab/editor-layer-index)
|
|
||||||
| default |
|
|
||||||
| answer | | Indicates the number of questions that have been answered
|
|
||||||
| ChangeTag |
|
|
||||||
| soft-delete | | Indicates the number of soft-deleted items
|
|
||||||
| ChangeTag |
|
|
||||||
| add-image | | Indicates the number of images that have been added in this changeset
|
|
||||||
| ChangeTag |
|
|
||||||
| link-image | | Indicates the number of images that have been linked in this changeset
|
|
||||||
| ChangeTag |
|
|
||||||
| move | relocated|improve_accuraccy|... | Will appear if the point has been moved
|
|
||||||
This might give a reason per modified node or way | ChangeLocation |
|
|
||||||
| deletion | | Will appear if the object was deleted
|
|
||||||
This might give a reason per modified node or way | DeleteAction |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [src/Logic/Osm/Changes.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/Logic/Osm/Changes.ts), [src/Logic/Osm/ChangesetHandler.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/Logic/Osm/ChangesetHandler.ts)
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
Development and deployment
|
Development and deployment
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
There are various scripts to help set up MapComplete for developing and for deployment.
|
There are various scripts to help setup MapComplete for deployment and develop-deployment.
|
||||||
|
|
||||||
This documents attempts to shed some light on these scripts.
|
This documents attempts to shed some light on these scripts.
|
||||||
|
|
||||||
Note: these scripts change every now and then - if the documentation here is incorrect or you run into troubles, do
|
Note: these scripts change every now and then - if the documentation here is incorrect or you run into troubles, do
|
||||||
leave a message in [the issue tracker](https://source.mapcomplete.org/MapComplete/MapComplete/issues)
|
leave a message in [the issue tracker](https://github.com/pietervdvn/MapComplete/issues)
|
||||||
|
|
||||||
Architecture overview
|
Architecture overview
|
||||||
---------------------
|
---------------------
|
||||||
|
|
@ -16,85 +16,87 @@ At its core, MapComplete is a static (!) website. There are no servers to host.
|
||||||
The data is fetched from Overpass/OSM/Wikidata/Wikipedia/Mapillary/... and written there directly. This means that any
|
The data is fetched from Overpass/OSM/Wikidata/Wikipedia/Mapillary/... and written there directly. This means that any
|
||||||
static file server will do to create a self-hosted version of MapComplete.
|
static file server will do to create a self-hosted version of MapComplete.
|
||||||
|
|
||||||
Dependencies
|
Development
|
||||||
------------
|
-----------
|
||||||
|
|
||||||
`make` , `python3`, `g++`
|
**Windows users**: All scripts are made for linux devices. Use the Ubuntu terminal for Windows (or even better - make
|
||||||
|
the switch ;) ). If you are using Visual Studio Code you can use
|
||||||
|
a [WSL Remote](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-wsl) window, or use the
|
||||||
|
Devcontainer (see more details later).
|
||||||
|
|
||||||
(Nix users may run `nix-env -iA nixos.gnumake nixos.gdc nixos.python3`)
|
You need at least 3Gb RAM available to run MapComplete, but you'll preferably have 8GB of free RAM available.
|
||||||
|
|
||||||
Development using *NIX
|
|
||||||
----------------------
|
|
||||||
|
|
||||||
You need at least 3GB RAM available to run MapComplete, but you'll preferably have 8GB of free RAM available.
|
|
||||||
|
|
||||||
To develop and build MapComplete, you
|
To develop and build MapComplete, you
|
||||||
|
|
||||||
0. Make a fork and clone the repository. (We recommend a shallow clone with `git clone --filter=blob:none <repo>`)
|
0. Make a fork and clone the repository. (We recommend a shallow clone with `git clone --filter=blob:none <repo>`)
|
||||||
1. Install `python3` if you do not have it already - On Linux: `sudo apt install python3` or `sudo dnf install python3`
|
1. Install `python3` if you do not have it already - On linux: `sudo apt install python3`
|
||||||
2. Install `nvm` to easily install node:
|
2. Install `nvm` to easily install node:
|
||||||
- `wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash`
|
- `wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash`
|
||||||
- Restart your terminal
|
- Restart your terminal
|
||||||
- Run `nvm install` and `nvm use` to install and use the correct version of node. (_Note: nvm might complain that the relevant version is not yet installed. It'll have it installed only for the current user account but not system-wide - which is fine)
|
- Run `nvm install` and `nvm use` to install and use the correct version of node. (_Note: nvm might complain that the relevant version is not yet installed. It'll have it installed only for the current user account but not system-wide - which is fine)
|
||||||
3. Run `npm run init` (including **run**, not ~~`npm init`~~)which …
|
4. Run `npm run init` (including **run**, not ~~`npm init`~~)which …
|
||||||
- runs `npm ci` for you
|
- runs `npm ci` for you
|
||||||
- generates some additional dependencies and files
|
- generates some additional dependencies and files
|
||||||
- does various housekeeping and setup. This can take a few minutes the first time as some PNGs need to be created
|
- does various housekeeping and setup. This can take a few minutes the first time as some pngs need to be created
|
||||||
4. Run `npm run start` to host a local testversion at http://127.0.0.1:1234/
|
5. Run `npm run start` to host a local testversion at http://localhost:1234/
|
||||||
5. By default, a landing page with available themes is served. In order to load a single theme, use `layout=themename`
|
6. By default, a landing page with available themes is served. In order to load a single theme, use `layout=themename`
|
||||||
or `userlayout=true#<layout configuration>` as [Query parameter](URL_Parameters.md). Note that the shorter URLs
|
|
||||||
(e.g. `bookcases.html`, `aed.html`, ...) _don't_ exist on the development version.
|
|
||||||
|
|
||||||
The previous instructions were tested on 2023-03-09 on a Ubuntu 22.04 machine.
|
|
||||||
|
|
||||||
Development using Windows
|
|
||||||
-------------------------
|
|
||||||
|
|
||||||
You need at least 3GB RAM available to run MapComplete, but you'll preferably have 8GB of free RAM available.
|
|
||||||
|
|
||||||
For Windows you can use the WSL subsystem.
|
|
||||||
|
|
||||||
To use the WSL in Visual Studio Code:
|
|
||||||
|
|
||||||
1. Make sure you have installed the [Remote - WSL](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-wsl) extension and it's dependencies.
|
|
||||||
2. Open a remote WSL window using the button in the bottom left.
|
|
||||||
3. Make a fork and clone the repository.
|
|
||||||
4. Install `npm` using `sudo apt install npm`.
|
|
||||||
5. Run `npm run init` and generate some additional dependencies and generated files. Note that it'll install the
|
|
||||||
dependencies too
|
|
||||||
6. Run `npm run start` to host a local testversion at http://127.0.0.1:1234/index.html
|
|
||||||
7. By default, a landing page with available themes is served. In order to load a single theme, use `layout=themename`
|
|
||||||
or `userlayout=true#<layout configuration>` as [Query parameter](URL_Parameters.md). Note that the shorter URLs (
|
or `userlayout=true#<layout configuration>` as [Query parameter](URL_Parameters.md). Note that the shorter URLs (
|
||||||
e.g. `bookcases.html`, `aed.html`, ...) _don't_ exist on the development version.
|
e.g. `bookcases.html`, `aed.html`, ...) _don't_ exist on the development version.
|
||||||
|
|
||||||
|
The previous instructions were tested on 2023-03-09 on a Ubuntu 22.04 machine
|
||||||
|
|
||||||
Developing a local theme
|
Development using Windows
|
||||||
------------------------
|
------------------------
|
||||||
|
|
||||||
To test theme changes you locally make, the easiest way is:
|
For Windows you can use the devcontainer, or the WSL subsystem.
|
||||||
|
|
||||||
- `npm run strt` which will run the server
|
To use the devcontainer in Visual Studio Code:
|
||||||
- After making changes to some layers and/or themes, run `npm run generate:layeroverview`. This will recompile the relevant themes.
|
|
||||||
- You might need to refresh (F5) your browser window
|
|
||||||
|
|
||||||
Note that `npm run start` is equivalent to `npm run generate:layeroverview && npm run strt`
|
0. Make sure you have installed
|
||||||
|
the [Remote - Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
|
||||||
|
extension and it's dependencies.
|
||||||
|
1. Make a fork and clone the repository.
|
||||||
|
2. After cloning, Visual Studio Code will ask you if you want to use the devcontainer.
|
||||||
|
3. Then you can either clone it again in a volume (for better performance), or open the current folder in a container.
|
||||||
|
4. By now, you should be able to run `npm run start` to host a local testversion at http://localhost:1234/index.html
|
||||||
|
5. By default, a landing page with available themes is served. In order to load a single theme, use `layout=themename`
|
||||||
|
or `userlayout=true#<layout configuration>` as [Query parameter](URL_Parameters.md). Note that the shorter URLs (
|
||||||
|
e.g. `bookcases.html`, `aed.html`, ...) _don't_ exist on the development version.
|
||||||
|
|
||||||
|
To use the WSL in Visual Studio Code:
|
||||||
|
|
||||||
|
0. Make sure you have installed the [Remote - WSL]() extension and it's dependencies.
|
||||||
|
1. Open a remote WSL window using the button in the bottom left.
|
||||||
|
2. Make a fork and clone the repository.
|
||||||
|
3. Install `npm` using `sudo apt install npm`.
|
||||||
|
4. Run `npm run init` and generate some additional dependencies and generated files. Note that it'll install the
|
||||||
|
dependencies too
|
||||||
|
5. Run `npm run start` to host a local testversion at http://localhost:1234/index.html
|
||||||
|
6. By default, a landing page with available themes is served. In order to load a single theme, use `layout=themename`
|
||||||
|
or `userlayout=true#<layout configuration>` as [Query parameter](URL_Parameters.md). Note that the shorter URLs (
|
||||||
|
e.g. `bookcases.html`, `aed.html`, ...) _don't_ exist on the development version.
|
||||||
|
|
||||||
|
Dependencies
|
||||||
|
------------
|
||||||
|
|
||||||
|
`make` , `python3` `g++`
|
||||||
|
|
||||||
|
(Nix users may run `nix-env -iA nixos.gnumake nixos.gdc nixos.python3`)
|
||||||
|
|
||||||
Automatic deployment
|
Automatic deployment
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
MapComplete is automatically deployed to various locations, depending on the branch you are working on.
|
Currently, the master branch is automatically deployed to 'mapcomplete.osm.be' by a github action.
|
||||||
|
|
||||||
The master branch is automatically deployed to https://mapcomplete.org/, and the development branch is available at
|
Every branch is automatically built (upon push) to 'pietervdvn.github.io/mc/<branchname>' by a github action.
|
||||||
https://dev.mapcomplete.org/. Both are automatically deployed by a Forgejo action.
|
|
||||||
|
|
||||||
Other branches are automatically deployed to https://builds.mapcomplete.org/<branchname>.
|
|
||||||
|
|
||||||
Deploying a fork
|
Deploying a fork
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
A script creates a webpage for every theme automatically, with some customizations in order to:
|
A script creates a webpage for every theme automatically, with some customizations in order to:
|
||||||
|
|
||||||
- to have shorter URLs
|
- to have shorter urls
|
||||||
- have individual social images
|
- have individual social images
|
||||||
- have individual web manifests
|
- have individual web manifests
|
||||||
|
|
||||||
|
|
@ -102,21 +104,15 @@ This script can be invoked with `npm run prepare-deploy`
|
||||||
|
|
||||||
If you want to deploy your fork:
|
If you want to deploy your fork:
|
||||||
|
|
||||||
1. `npm run prepare-deploy`
|
0. `npm run prepare-deploy`
|
||||||
2. `npm run build`
|
1. `npm run build`
|
||||||
3. Copy the entire `dist` folder to where you host your website. Visiting `index.html` gives you the landing page,
|
2. Copy the entire `dist` folder to where you host your website. Visiting `index.html` gives you the landing page,
|
||||||
visiting `yourwebsite/<theme>` should bring you to the appropriate theme.
|
visiting `yourwebsite/<theme>` should bring you to the appropriate theme.
|
||||||
|
|
||||||
### Getting your own API-keys
|
|
||||||
|
|
||||||
Some services are bound to `https://mapcomplete.org`. In `package.json/config`, search for "#fork" and read the instructions.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Weird errors
|
Weird errors
|
||||||
------------
|
------------
|
||||||
|
|
||||||
Try removing `node_modules`, `package-lock.json` and `.cache`.
|
Try removing `node_modules`, `package-lock.json` and `.cache`
|
||||||
|
|
||||||
Misc setup
|
Misc setup
|
||||||
----------
|
----------
|
||||||
|
|
@ -128,25 +124,25 @@ This merge driver is broken and would sometimes drop new questions or duplicate
|
||||||
Overview of package.json-scripts
|
Overview of package.json-scripts
|
||||||
--------------------------------
|
--------------------------------
|
||||||
|
|
||||||
- `increase-memory`: give Node.js some more RAM since this is a big (and memory intensive) project to build and run
|
- `increase-memory`: this is a big (and memory-intensive) project to build and run, so we give nodejs some more RAM.
|
||||||
- `start`: start a development server
|
- `start`: start a development server.
|
||||||
- `test`: run the unit tests
|
- `test`: run the unit tests
|
||||||
- `init`: generate and download various assets which are needed to compile
|
- `init`: Generates and downloads various assets which are needed to compile
|
||||||
- `generate:editor-layer-index`: download the editor-layer-index-json from osmlab.github.io
|
- `generate:editor-layer-index`: downloads the editor-layer-index-json from osmlab.github.io
|
||||||
- `generate:images`: compile the SVGs into an asset
|
- `generate:images`: compiles the SVG's into an asset
|
||||||
- `generate:translations`: compile the translation file into a JavaScript file
|
- `generate:translations`: compiles the translation file into a javascript file
|
||||||
- `generate:layouts`: use `index.html` as template to create all the theme index pages. You'll want to run `clean` when
|
- `generate:layouts`: uses `index.html` as template to create all the theme index pages. You'll want to run `clean` when
|
||||||
done
|
done
|
||||||
- `generate:docs`: generate various documents, such as information about available metatags, information to put on
|
- `generate:docs`: generates various documents, such as information about available metatags, information to put on
|
||||||
the [OSM wiki](https://wiki.openstreetmap.org/wiki/MapComplete), ...
|
the [OSM-wiki](https://wiki.openstreetmap.org/wiki/MapComplete),...
|
||||||
- `generate:report`: download statistics from OsmCha, compile neat graphs
|
- `generate:report`: downloads statistics from OsmCha, compiles neat graphs
|
||||||
- `generate:cache:speelplekken`: create an offline copy of all the data required for one specific (paid for) theme
|
- `generate:cache:speelplekken`: creates an offline copy of all the data required for one specific (paid for) theme
|
||||||
- `generate:layeroverview`: read all the theme and layer configurations, compiles them into a single JSON.
|
- `generate:layeroverview`: reads all the theme- and layerconfigurations, compiles them into a single JSON.
|
||||||
- `reset:layeroverview`: if something is wrong with the layer overview, create an empty one
|
- `reset:layeroverview`: if something is wrong with the layeroverview, creates an empty one
|
||||||
- `generate:licenses`: compile all the license info of images into a single JSON
|
- `generate:licenses`: compiles all the license info of images into a single json
|
||||||
- `optimize:images`: attempt to make smaller PNGs - optional to run before a deployment
|
- `optimize:images`: attempts to make smaller pngs - optional to run before a deployment
|
||||||
- `generate`: run all the necessary generate-scripts
|
- `generate`: run all the necesary generate-scripts
|
||||||
- `build`: actually bundle all the files into a single `dist/` folder
|
- `build`: actually bundle all the files into a single `dist/`-folder
|
||||||
- `prepare-deploy`: create the layouts
|
- `prepare-deploy`: create the layouts
|
||||||
- `deploy:staging`,`deploy:pietervdvn`, `deploy:production`: deploy the latest code on various locations
|
- `deploy:staging`,`deploy:pietervdvn`, `deploy:production`: deploy the latest code on various locations
|
||||||
- `lint`: get depressed by the amount of warnings
|
- `lint`: get depressed by the amount of warnings
|
||||||
|
|
|
||||||
|
|
@ -1,999 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# Layers in the Editor Layer Index
|
|
||||||
|
|
||||||
This table gives a summary of ids, names and other metainformation. [See the online, interactive map here](https://osmlab.github.io/editor-layer-index/) or [visit the repository](https://github.com/osmlab/editor-layer-index)
|
|
||||||
|
|
||||||
| id | name | category | Best | attribution |
|
|
||||||
-----|-----|-----|-----|----- |
|
|
||||||
| South_Africa-CD_NGI-Aerial | South Africa CD:NGI Aerial | photo | ⭐ | |
|
|
||||||
| South_Africa-CapeTown-Aerial-2013 | City of Cape Town 2013 Aerial | historicphoto | | City of Cape Town Aerial - OPENSTREETMAP USE ONLY |
|
|
||||||
| South_Africa-CapeTown-Aerial | City of Cape Town 2015 Aerial | historicphoto | | City of Cape Town Aerial - OPENSTREETMAP USE ONLY |
|
|
||||||
| South_Africa-CapeTown-Aerial-2017 | City of Cape Town Aerial Imagery (2017) | historicphoto | | City of Cape Town Aerial |
|
|
||||||
| South_Africa-CapeTown-Aerial-2018 | City of Cape Town Aerial Imagery (2018) | historicphoto | | City of Cape Town Aerial |
|
|
||||||
| South_Africa-CapeTown-Aerial-2021 | City of Cape Town Aerial Imagery (2021) | historicphoto | | City of Cape Town Aerial |
|
|
||||||
| South_Africa-CapeTown-Aerial-2023 | City of Cape Town Aerial Imagery (2023) | photo | ⭐ | City of Cape Town Aerial |
|
|
||||||
| South_Africa-CapeTown-Aerial-2024 | City of Cape Town Aerial Imagery (2024) | photo | ⭐ | City of Cape Town Aerial |
|
|
||||||
| osm-cambodia_laos_thailand_vietnam-bilingual | Cambodia, Laos, Thailand, Vietnam, Malaysia, Myanmar bilingual | osmbasedmap | | © osm-tools.org & OpenStreetMap contributors, CC-BY-SA |
|
|
||||||
| India-PMGSY | PMGSY GeoSadak - India Rural Roads Open Data | map | | <a href='https://geosadak-pmgsy.nic.in/opendata/' target='_blank'>PMGSY Rural Connectivity Dataset, Government Open Data License</a> | <a href='https://www.mapbox.com/about/maps/' target='_blank' title='Mapbox' aria-label='Mapbox'>© Mapbox</a> | <a href='https://www.openstreetmap.org/about/' target='_blank' title='OpenStreetMap' aria-label='OpenStreetMap'>© OpenStreetMap</a> | <a href='https://www.maxar.com/' target='_blank' title='Maxar' aria-label='Maxar'>© Maxar</a> |
|
|
||||||
| Plateau_orthophoto_official | MLIT Plateau Official | photo | | MLIT_PLATEAU |
|
|
||||||
| osmfj-inuyama-2023 | Inuyama city and around Imagery 2023 | photo | | OSMFJ_Ortho |
|
|
||||||
| Arenda_OAM | Lupang Arenda, Taytay Drone Imagery | photo | ⭐ | |
|
|
||||||
| Pangasinan_Bulacan_HiRes | Pangasinán/Bulacan (Philippines HiRes) | photo | | |
|
|
||||||
| Singapore-Landlot | Singapore Landlot | map | | ©OneMap Singapore ODL v1.0 |
|
|
||||||
| Singapore-OneMap | Singapore OneMap | map | | ©OneMap Singapore ODL v1.0 |
|
|
||||||
| Singapore-Orthophoto | Singapore OneMap Orthophoto | photo | | ©OneMap Singapore ODL v1.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 |
|
|
||||||
| AL_DPGJC_ASIG_SistemiAdresave | Address System Albania (ASIG) | map | | |
|
|
||||||
| bev-inspire-orthofoto | BEV INSPIRE Orthofoto | photo | | Bundesamt für Eich- und Vermessungswesen |
|
|
||||||
| basemap.at | basemap.at | map | | basemap.at |
|
|
||||||
| basemap.at-orthofoto | basemap.at Orthofoto | photo | ⭐ | basemap.at |
|
|
||||||
| geoimage.at | Geoimage.at MaxRes | photo | | geoimage.at |
|
|
||||||
| gis.stmk.gv.at-surface | Steiermark Surface | elevation | | © GIS-Steiermark |
|
|
||||||
| gis.stmk.gv.at-terrain | Steiermark Terrain | elevation | | © GIS-Steiermark |
|
|
||||||
| tirol.gv.at-DGM | Tiris: DGM (Terrain model) | elevation | | tiris.tirol.gv.at |
|
|
||||||
| tirol.gv.at-DOM | Tiris: DOM (Surface model) | elevation | | tiris.tirol.gv.at |
|
|
||||||
| tirol.gv.at-orthofoto | Tiris: orthophoto | photo | | tiris.tirol.gv.at |
|
|
||||||
| tirol.gv.at-orthofoto-cir | Tiris: orthophoto infrared | photo | | tiris.tirol.gv.at |
|
|
||||||
| wien.gv.at-gp | Vienna: Mehrzweckkarte (general purpose) | map | | Stadt Wien |
|
|
||||||
| wien.gv.at-aerial_image | Vienna: Orthofoto (aerial image) | photo | | Stadt Wien |
|
|
||||||
| vogis.cnv.at-DGM | VoGIS: DGM (Terrain model) | elevation | | Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at |
|
|
||||||
| vogis.cnv.at-DOM | VoGIS: DOM (Surface model) | elevation | | Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at |
|
|
||||||
| vogis.cnv.at-ef2012_12cm | VoGIS: Echtfarbenbild 2012 (12cm) | historicphoto | | Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at |
|
|
||||||
| vogis.cnv.at-ef2015_10cm | VoGIS: Echtfarbenbild 2015 (10cm) | historicphoto | | Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at |
|
|
||||||
| vogis.cnv.at-ef2018_10cm | VoGIS: Echtfarbenbild 2018 (10cm) | historicphoto | | Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at |
|
|
||||||
| vogis.cnv.at-ef2020_10cm | VoGIS: Echtfarbenbild 2020 (10cm) | historicphoto | | Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at |
|
|
||||||
| vogis.cnv.at-ef2022_10cm | VoGIS: Echtfarbenbild 2022 (10cm) | photo | | Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at |
|
|
||||||
| vogis.cnv.at-wi2015_20cm | VoGIS: Echtfarbenbild Winter 2015 (20cm) | historicphoto | | Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at |
|
|
||||||
| vogis.cnv.at-flaechenwidmung_wms | VoGIS: Flächenwidmungsplan | map | | Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at |
|
|
||||||
| vogis.cnv.at-luftbilder_wms | VoGIS: Luftbilder | photo | | Datenquelle: Land Vorarlberg – data.vorarlberg.gv.at |
|
|
||||||
| basemap.at-surface | basemap.at Surface | elevation | | basemap.at |
|
|
||||||
| basemap.at-terrain | basemap.at Terrain | elevation | | basemap.at |
|
|
||||||
| DV_DHMV_II_HILL_25cm | Digitaal Vlaanderen DHV II, multidirectional hillshade 0,25 m | elevation | | © Digitaal Vlaanderen |
|
|
||||||
| DV_DHMV_II_SVF_25cm | Digitaal Vlaanderen DHV II, Skyview factor 0,25 m | elevation | | © Digitaal Vlaanderen |
|
|
||||||
| DV_GRB | Digitaal Vlaanderen GRB | map | | © Digitaal Vlaanderen |
|
|
||||||
| DV_OrthoPhoto | Digitaal Vlaanderen most recent aerial imagery | photo | ⭐ | © Digitaal Vlaanderen |
|
|
||||||
| DV_OrthoPhoto_20132015_10cm | Digitaal Vlaanderen 2013-2015 aerial imagery 10cm | historicphoto | | © Digitaal Vlaanderen |
|
|
||||||
| DV_OrthoPhoto_Preliminary | Digitaal Vlaanderen preliminary aerial imagery | photo | | © Digitaal Vlaanderen |
|
|
||||||
| DV_Wegenregister | Digitaal Vlaanderen Wegenregister | map | | © Digitaal Vlaanderen |
|
|
||||||
| SPW_ORTHO_LAST | SPW(allonie) most recent aerial imagery | photo | ⭐ | |
|
|
||||||
| SPW2009 | SPW(allonie) 2009-2010 aerial imagery | historicphoto | | |
|
|
||||||
| SPW2012 | SPW(allonie) 2012-2013 aerial imagery | historicphoto | | |
|
|
||||||
| SPW2015 | SPW(allonie) 2015 aerial imagery | historicphoto | | |
|
|
||||||
| SPW2016 | SPW(allonie) 2016 aerial imagery | historicphoto | | |
|
|
||||||
| SPW2018 | SPW(allonie) 2018 aerial imagery | historicphoto | | |
|
|
||||||
| SPW2019 | SPW(allonie) 2019 aerial imagery | historicphoto | | |
|
|
||||||
| SPW2020 | SPW(allonie) 2020 aerial imagery | historicphoto | | |
|
|
||||||
| SPW2021 | SPW(allonie) 2021 aerial imagery | historicphoto | | |
|
|
||||||
| SPW_PICC | SPW(allonie) PICC numerical imagery | map | | |
|
|
||||||
| SPWrelief2014 | SPW(allonie) shaded relief | elevation | | |
|
|
||||||
| UrbisAdmFR | UrbisAdm FR | map | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| UrbisAdmFRNL | UrbisAdm FR/NL | map | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| UrbisAdmNL | UrbisAdm NL | map | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| UrbISOrtho | CIRB/CIBG most recent aerial imagery | photo | ⭐ | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| URBIS2009 | URBIS 2009 aerial imagery | historicphoto | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| URBIS2012 | URBIS 2012 aerial imagery | historicphoto | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| URBIS2014 | URBIS 2014 aerial imagery | historicphoto | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| URBIS2015 | URBIS 2015 aerial imagery | historicphoto | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| UrbISOrtho2016 | UrbIS-Ortho 2016 | historicphoto | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| UrbISOrtho2017 | UrbIS-Ortho 2017 | historicphoto | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| UrbISOrtho2018 | UrbIS-Ortho 2018 | historicphoto | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| UrbISOrtho2019 | UrbIS-Ortho 2019 | photo | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| UrbISOrtho2020 | UrbIS-Ortho 2020 | photo | | Realized by means of Brussels UrbIS®© - Distribution & Copyright CIRB |
|
|
||||||
| CTFRIBOURG2016 | Canton Fribourg 2016 | photo | | Canton Fribourg 2016 'orthophoto technique' |
|
|
||||||
| PlanCadastralNeuchatel | Plan Cadastral du SITN, Neuchâtel | map | | Plan Cadastral du SITN, Neuchâtel |
|
|
||||||
| Geneve-dsm-2014 | Canton de Génève, MNA RELIEF OMBRE SURFACE 2014 (SITG) | elevation | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-dsm-2017 | Canton de Génève, MNA RELIEF OMBRE SURFACE 2017 (SITG) | elevation | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-dsm-2019 | Canton de Génève, MNA RELIEF OMBRE SURFACE 2019 (SITG) | elevation | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-dsm-2023 | Canton de Génève, MNA RELIEF OMBRE SURFACE 2023 (SITG) | elevation | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-dtm-2014 | Canton de Génève, MNA RELIEF OMBRE TERRAIN 2014 (SITG) | elevation | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-dtm-2017 | Canton de Génève, MNA RELIEF OMBRE TERRAIN 2017 (SITG) | elevation | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-dtm-2019 | Canton de Génève, MNA RELIEF OMBRE TERRAIN 2019 (SITG) | elevation | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-dtm-2023 | Canton de Génève, MNA RELIEF OMBRE TERRAIN 2023 (SITG) | elevation | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-orthophoto-2016 | Canton de Génève, Orthophoto 2016 (5cm) (SITG) | historicphoto | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-orthophoto-2018 | Canton de Génève, Orthophoto 2018 (20cm) (SITG) | historicphoto | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-orthophoto-2019 | Canton de Génève, Orthophoto 2019 (5cm) (SITG) | historicphoto | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-orthophoto-2020 | Canton de Génève, Orthophoto 2020 (10cm) (SITG) | historicphoto | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-orthophoto-2021 | Canton de Génève, Orthophoto 2021 (20cm) (SITG) | historicphoto | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Geneve-orthophoto-2023 | Canton de Génève, Orthophoto 2023 (10cm) (SITG) | photo | | Système d'information du territoire à Genève (SITG) |
|
|
||||||
| Aargau-AGIS-2020 | Kanton Aargau 20cm (AGIS 2020) | photo | | AGIS OF2020 |
|
|
||||||
| Aargau-AGIS-2021 | Kanton Aargau 20cm (AGIS 2021) | photo | | AGIS OF2021 |
|
|
||||||
| Aargau-AGIS-2022 | Kanton Aargau 20cm (AGIS 2022) | photo | | AGIS OF2022 |
|
|
||||||
| Aargau-AGIS-2023 | Kanton Aargau 20cm (AGIS 2023) | photo | | AGIS OF2023 |
|
|
||||||
| Aargau-AGIS-2014 | Kanton Aargau 25cm (AGIS 2014) | photo | | AGIS OF2014 |
|
|
||||||
| Aargau-AGIS-2016 | Kanton Aargau 25cm (AGIS 2016) | photo | | AGIS OF2016 |
|
|
||||||
| Aargau-AGIS-2017 | Kanton Aargau 25cm (AGIS 2017) | photo | | AGIS OF2017 |
|
|
||||||
| Aargau-AGIS-2019 | Kanton Aargau 25cm (AGIS 2019) | photo | | AGIS OF2019 |
|
|
||||||
| Aargau-AGIS-2014-Hillshade | Kanton Aargau 50cm DTM/Hillshade | elevation | | AGIS 2014 50cm DTM/Hillshade |
|
|
||||||
| Basel-Landschaft-2015 | Kanton Basel-Landschaft 10cm (2015) | photo | | Geodaten des Kantons Basel-Landschaft 2015 |
|
|
||||||
| KTBASELSTADT2017 | Kanton Basel-Stadt 2017 | historicphoto | | Geodaten Kanton Basel-Stadt OF 2017 |
|
|
||||||
| KTBASELSTADT2020 | Kanton Basel-Stadt 2020 | photo | | Geodaten Kanton Basel-Stadt |
|
|
||||||
| KTBASELSTADT2023 | Kanton Basel-Stadt 2023 | photo | ⭐ | Geodaten Kanton Basel-Stadt |
|
|
||||||
| KTBASELSTADT2015 | Kanton Basel-Stadt 2015 | photo | | Kanton Basel-Stadt OF 2015 |
|
|
||||||
| Zug-2011 | Kanton Zug 2011 | photo | | GIS Kanton Zug |
|
|
||||||
| Zug-2016 | Kanton Zug Nord 2016 | photo | | GIS Kanton Zug |
|
|
||||||
| Zug-2018 | Kanton Zug Gemeinde Zug Süd 2018 | photo | | GIS Kanton Zug |
|
|
||||||
| Zug-2019-wms | Kanton Zug (Walchwil und Zug (Alpli)) 2019 | photo | ⭐ | GIS Kanton Zug |
|
|
||||||
| Zug-2020-wms | Kanton Zug Neuheim 2020 3.5 cm | photo | ⭐ | GIS Kanton Zug |
|
|
||||||
| Zug-2021-wms | Kanton Zug Menzingen 2021 6.5 cm | photo | ⭐ | GIS Kanton Zug |
|
|
||||||
| Bern-dsm-hillshade-2015 | Kanton Bern, Digitales Oberflaechenmodell 50cm, Relief | elevation | | Digitales Oberflächenmodell LIDAR 50cm © Amt für Wald des Kantons Bern |
|
|
||||||
| Bern-dtm-hillshade-2015 | Kanton Bern, Digitales Terrainmodell 50cm, Relief | elevation | | Digitales Terrainmodell LIDAR 50cm © Amt für Wald des Kantons Bern |
|
|
||||||
| Kanton-Schaffhausen-DSM-2013 | Kanton Schaffhausen, Relief 2013 | elevation | | Kanton Schaffhausen, Relief 2013 |
|
|
||||||
| Kanton-Schaffhausen-Luftbild-2013 | Kanton Schaffhausen, Luftbild 2013 | photo | | Kanton Schaffhausen, Luftbild 2013 |
|
|
||||||
| Solothurn-sogis2014-dom-wms | Kanton Solothurn, DOM Relief 2014 50cm | elevation | | DOM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS) |
|
|
||||||
| Solothurn-sogis2018-dsm-wms | Kanton Solothurn, DSM Relief 2018 | elevation | | Kanton Solothurn, DSM Relief 2018, WMS Solothurn (SOGIS) |
|
|
||||||
| Solothurn-sogis2019-dsm-wms | Kanton Solothurn, DSM Relief 2019 | elevation | | Kanton Solothurn, DSM Relief 2019, WMS Solothurn (SOGIS) |
|
|
||||||
| Solothurn-sogis2014-dtm-wms | Kanton Solothurn, DTM Relief 2014 50cm | elevation | | DTM Relief 2014 - Auflösung 50cm, WMS Solothurn (SOGIS) |
|
|
||||||
| Solothurn-sogis2018-dtm-wms | Kanton Solothurn, DTM Relief 2018 | elevation | | Kanton Solothurn, DTM Relief 2018, WMS Solothurn (SOGIS) |
|
|
||||||
| Solothurn-sogis2019-dtm-wms | Kanton Solothurn, DTM Relief 2019 | elevation | | Kanton Solothurn, DTM Relief 2019, WMS Solothurn (SOGIS) |
|
|
||||||
| Solothurn-sogis-ortho2014-wms | Kanton Solothurn, Orthofoto 2014 RGB | photo | | Kanton Solothurn, Orthofoto 2014 RGB |
|
|
||||||
| Solothurn-sogis-ortho2015-wms | Kanton Solothurn, Orthofoto 2015 RGB | photo | | Kanton Solothurn, Orthofoto 2015 RGB |
|
|
||||||
| Solothurn-sogis-ortho2016-wms | Kanton Solothurn, Orthofoto 2016 RGB | photo | | Kanton Solothurn, Orthofoto 2016 RGB |
|
|
||||||
| Solothurn-sogis-ortho2017-wms | Kanton Solothurn, Orthofoto 2017 RGB | photo | | Kanton Solothurn, Orthofoto 2017 RGB |
|
|
||||||
| kt_tg_av | Kanton Thurgau, Basisplan-AV | map | | Kanton Thurgau, Basisplan-AV |
|
|
||||||
| kt_tg_radrouten | Kanton Thurgau, Rad-Routen | map | | Kanton Thurgau, Rad-Routen |
|
|
||||||
| kt_tg_ww | Kanton Thurgau, Wanderwege | map | | Kanton Thurgau, Wanderwege |
|
|
||||||
| kt_tg_ortho_2017 | Kanton Thurgau, Orthofoto2017 RGB | photo | | Kanton Thurgau, Orthofoto2017 RGB |
|
|
||||||
| OGDLidarZH-DOM | Kanton Zurich, Oberflächenschummerung 2014 50cm | elevation | | Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Oberflächenschummerung |
|
|
||||||
| OGDLidarZH-DOM-2017 | Kanton Zurich, Oberflächenschummerung 2017 | elevation | | Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Oberflächenschummerung |
|
|
||||||
| OGDLidarZH-DTM | Kanton Zurich, Terrainschummerung 2014 50cm | elevation | | Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Terrainschummerung |
|
|
||||||
| OGDLidarZH-DTM-2017 | Kanton Zurich, Terrainschummerung 2017 | elevation | | Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Terrainschummerung |
|
|
||||||
| OGDOrthoZH2015 | Kanton Zurich, Orthofoto ZH Sommer 2014/15 RGB 10cm | photo | | Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2014/15 RGB |
|
|
||||||
| OGDOrthoZH2016 | Kanton Zurich, Orthofoto ZH Frühjahr 2015/16 RGB 10cm | photo | | Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Frühjahr 2015/16 RGB |
|
|
||||||
| OGDOrthoZH2018 | Kanton Zurich, Orthofoto ZH Sommer 2018 RGB 10cm | photo | | Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2018 RGB |
|
|
||||||
| OGDOrthoZH2020 | Kanton Zurich, Orthofoto ZH Sommer 2020 RGB 5cm | photo | | Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2020 RGB |
|
|
||||||
| OGDOrthoZH2021 | Kanton Zurich, Orthofoto ZH Frühjahr 2021 RGB 5cm | photo | | Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Frühjahr 2021 RGB 5cm |
|
|
||||||
| OGDOrthoZH2024 | Kanton Zurich, Orthofoto ZH Sommer 2024 RGB 5cm | photo | | Geographisches Informationssystem des Kantons Zürich (GIS-ZH), Orthofoto ZH Sommer 2024 RGB 5cm |
|
|
||||||
| SG-2018-WMS | Stadt St. Gallen | photo | | Orthofoto 2018 Stadt St. Gallen |
|
|
||||||
| Uster-2008 | Stadt Uster Orthophoto 2008 10cm | photo | | Stadt Uster Vermessung Orthophoto 2008 |
|
|
||||||
| Bern-AmtlicheVermessung | Amtliche Vermessung farbig WMTS, OpenData.swiss, Geoinformation Stadt Bern | map | | Amtliche Vermessung farbig WMTS, OpenData.swiss, Geoinformation Stadt Bern |
|
|
||||||
| Bern-Orthofotos | Stadt Bern 10cm (2023) | photo | ⭐ | Geoinformation Stadt Bern |
|
|
||||||
| Zuerich-zh_luftbild2011-tms | Stadt Zürich Luftbild 2011 | photo | | Stadt Zürich Luftbild 2011 |
|
|
||||||
| Zuerich-zh_luftbild2013-wms | Stadt Zürich Luftbild 2013 | photo | | Stadt Zürich Open Government Data |
|
|
||||||
| Zuerich-zh_uebersichtsplan-tms | Stadt Zürich Übersichtsplan | map | | Stadt Zürich Open Government Data |
|
|
||||||
| swisstopo_swissimage | swisstopo SWISSIMAGE | photo | ⭐ | Federal Office of Topography swisstopo |
|
|
||||||
| CzechCUZKdmr5g | Czechia CUZK terrain DMR 5G greyscale | elevation | | CUZK |
|
|
||||||
| CzechCUZKorthophoto | Czechia CUZK orthophoto | photo | ⭐ | CUZK |
|
|
||||||
| IPR-orotofoto-last-tms | Praha IPR latest orthophoto (TMS mirror) | photo | | IPR Praha; OSM CZ |
|
|
||||||
| IPR-orotofoto-vege-tms | Praha IPR low-vegetation orthophoto (TMS mirror) | photo | | IPR Praha; OSM CZ |
|
|
||||||
| PrahaIPRlatestorthophoto | Praha IPR latest orthophoto | photo | | |
|
|
||||||
| PrahaIPRlow-vegetationorthophoto | Praha IPR low-vegetation orthophoto | photo | ⭐ | IPR Praha |
|
|
||||||
| AktuelleLuftbilderDerLandeshauptstadtMuenchen20cm | Aktuelle Luftbilder der Landeshauptstadt München 20cm | photo | | Datenquelle: dl-de/by-2-0: Landeshauptstadt München – Kommunalreferat – GeodatenService – www.geodatenservice-muenchen.de |
|
|
||||||
| Baden_Wuerrtemberg-DOP20 | Baden-Würrtemberg DOP20 | photo | ⭐ | © LGL-BW (2025) - dl-de/by-2-0 (https://www.govdata.de/dl-de/by-2-0) - Verwendung unter besonderer Erlaubnis |
|
|
||||||
| Berlin-2020-TrueDOP | Berlin/Geoportal TrueDOP20RGB (2020) | photo | | Geoportal Berlin/Digitale farbige TrueOrthophotos 2020 (TrueDOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-Alkis | Berlin/Geoportal ALKIS | other | | Geoportal Berlin/ALKIS Berlin (Amtliches Liegenschaftskatasterinformationssystem) (codefor.de proxy) |
|
|
||||||
| Berlin-Baumbestand_Alkis | Berlin/Geoportal Baumbestand, Alkis s/w | other | | Geoportal Berlin/Straßen- und Anlagenbaumbestand Berlin, ALKIS s/w (codefor.de proxy) |
|
|
||||||
| Berlin-Strassenbefahrung-2014-Alkis | Berlin/Geoportal Straßenbefahrung 2014, Alkis | other | | Geoportal Berlin/Straßenbefahrung 2014; ALKIS s/w (codefor.de proxy) |
|
|
||||||
| Berlin-2014 | Berlin/Geoportal DOP20RGB (2014) | historicphoto | | Geoportal Berlin/Digitale farbige Orthophotos 2014 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2015 | Berlin/Geoportal DOP20RGB (2015) | historicphoto | | Geoportal Berlin/Digitale farbige Orthophotos 2015 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2016 | Berlin/Geoportal DOP20RGB (2016) | historicphoto | | Geoportal Berlin/Digitale farbige Orthophotos 2016 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2017 | Berlin/Geoportal DOP20RGB (2017) | historicphoto | | Geoportal Berlin/Digitale farbige Orthophotos 2017 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2018 | Berlin/Geoportal DOP20RGB (2018) | historicphoto | | Geoportal Berlin/Digitale farbige Orthophotos 2018 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2019 | Berlin/Geoportal DOP20RGB (2019) | historicphoto | | Geoportal Berlin/Digitale farbige Orthophotos 2019 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2020 | Berlin/Geoportal DOP20RGB (2020) | historicphoto | | Geoportal Berlin/Digitale farbige TrueOrthophotos 2020 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2021 | Berlin/Geoportal DOP20RGB (2021) | photo | | Geoportal Berlin/Digitale farbige Orthophotos 2021 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2022 | Berlin/Geoportal DOP20RGB (2022) | photo | | Geoportal Berlin/Digitale farbige TrueOrthophotos 2022 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2023 | Berlin/Geoportal DOP20RGB (2023) | photo | | Geoportal Berlin/Digitale farbige TrueOrthophotos 2023 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2024 | Berlin/Geoportal DOP20RGB (2024) | photo | ⭐ | Geoportal Berlin/Digitale farbige TrueOrthophotos 2024 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Berlin-2025 | Berlin/Geoportal DOP20RGB (2025) | photo | | Geoportal Berlin/Digitale farbige Orthophotos 2025 (DOP20RGB) (codefor.de mirror) |
|
|
||||||
| Brandenburg-Alkis | Brandenburg GeoBasis-DE/LGB / Alkis | other | | GeoBasis-DE/LGB / Alkis, dl-de/by-2-0 |
|
|
||||||
| Brandenburg-DGM | Brandenburg GeoBasis-DE/LGB (latest) / DGM 1m | elevation | | GeoBasis-DE/LGB / BB-BE DGM 1m, dl-de/by-2-0; Geoportal Berlin / DGM, dl-de/by-2-0 |
|
|
||||||
| Brandenburg-DOP20c | Brandenburg GeoBasis-DE/LGB (latest) / DOP20c | photo | ⭐ | GeoBasis-DE/LGB / BB-BE DOP20c, dl-de/by-2-0; Geoportal Berlin / DOP20, dl-de/by-2-0 |
|
|
||||||
| Erlangen-2016 | Erlangen Luftbild (2016 5,0 cm) | historicphoto | | © Stadt Erlangen | © GEOCART GmbH |
|
|
||||||
| Erlangen-2018 | Erlangen Luftbild (2018 5,0 cm) | photo | | © Stadt Erlangen | © Hansa Luftbild AG |
|
|
||||||
| Erlangen-2020 | Erlangen TrueDOP (2020 20cm) | photo | | © Stadt Erlangen |
|
|
||||||
| Erlangen-2022 | Erlangen TrueDOP (2022 20 cm) | photo | ⭐ | © Stadt Erlangen |
|
|
||||||
| Frankfurt-am-Main-2016 | Frankfurt am Main Luftbild 2016 | photo | | Stadtvermessungsam Frankfurt am Main |
|
|
||||||
| Frankfurt-am-Main-2017 | Frankfurt am Main Luftbild 2017 | photo | | Stadtvermessungsam Frankfurt am Main |
|
|
||||||
| Frankfurt-am-Main-2018 | Frankfurt am Main Luftbild 2018 | photo | | Stadtvermessungsamt Frankfurt am Main |
|
|
||||||
| Frankfurt-am-Main-2019 | Frankfurt am Main Luftbild 2019 | photo | | Stadtvermessungsamt Frankfurt am Main |
|
|
||||||
| Hamburg-Alkis-Farbig | Hamburg ALKIS Basiskarte (farbig) (HH LGV ALKIS 2025) | map | | Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung |
|
|
||||||
| Hamburg-DK5 | Hamburg DK5 (HH LGV DK5 2024) | map | | Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung |
|
|
||||||
| Hamburg-DOP20-belaubt | Hamburg 20cm (HH LGV DOP20 belaubt 2024) | photo | | Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung |
|
|
||||||
| Hamburg-DOP20-unbelaubt | Hamburg 20cm (HH LGV DOP20 unbelaubt 2025) | photo | ⭐ | Freie und Hansestadt Hamburg, Landesbetrieb Geoinformation und Vermessung |
|
|
||||||
| Hessen-ALKIS | Hesse ALKIS | other | | Geobasisdaten @ Hessisches Landesamt für Bodenmanagement und Geoinformation |
|
|
||||||
| Hessen-DOP20 | Hesse DOP20 | photo | ⭐ | Geobasisdaten © Hessische Verwaltung für Bodenmanagement und Geoinformation: Digitale Orthophotos |
|
|
||||||
| Hessen-DTK | Hesse DTK | map | | Geobasisdaten @ Hessisches Landesamt für Bodenmanagement und Geoinformation |
|
|
||||||
| Hessen-WebAtlas | Hesse WebAtlas | map | | Geobasisdaten @ Hessisches Landesamt für Bodenmanagement und Geoinformation |
|
|
||||||
| Koeln-TrueDOP-2024 | Köln TrueDOP 2024 | photo | ⭐ | Stadt Köln (2024) |
|
|
||||||
| Ludwigshafen-2019 | Ludwigshafen 2019 | historicphoto | | © Stadt Ludwigshafen am Rhein |
|
|
||||||
| Ludwigshafen-2022 | Ludwigshafen 2022 | photo | ⭐ | © Stadt Ludwigshafen am Rhein |
|
|
||||||
| mainzallaerialimageries | Mainz all aerial imageries | photo | | Vermessung und Geoinformation Mainz |
|
|
||||||
| mainzlatestaerialimagery | Mainz latest aerial imagery | photo | | Vermessung und Geoinformation Mainz |
|
|
||||||
| orka.mv | Offene Regionalkarte Mecklenburg-Vorpommern (ORKa.MV) | osmbasedmap | | ORKa.MV |
|
|
||||||
| Metropole_Ruhr_RVR-DOP10 | Metropole Ruhr: Luftbilder (10 cm) | photo | | Datengrundlage: Regionalverband Ruhr |
|
|
||||||
| nrw_alkis_wms | NRW Liegenschaftskataster | other | | |
|
|
||||||
| nrw_dtm_wms | NRW DTM Hillshade | elevation | | |
|
|
||||||
| nrw_idop_wms | NRW iDOP | photo | | |
|
|
||||||
| nrw_ortho_wms | NRW Orthophoto (RGB) | photo | ⭐ | |
|
|
||||||
| nrw_vdop_wms | NRW vDOP | photo | | |
|
|
||||||
| Saarland-DOP20 | Saarland DOP20 | photo | ⭐ | © Saarländer Landesamt für Vermessung, Geoinformation und Landentwicklung - dl-de/by-2-0 (https://www.govdata.de/dl-de/by-2-0) |
|
|
||||||
| GEOSN-DOP-2005 | Saxony historical aerial imagery 2005 | historicphoto | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-DOP-2006_2008 | Saxony historical aerial imagery 2006-2008 | historicphoto | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-DOP-2009_2011 | Saxony historical aerial imagery 2009-2011 | historicphoto | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-DOP-2012_2014 | Saxony historical aerial imagery 2012-2014 | historicphoto | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-DOP-2015_2017 | Saxony historical aerial imagery 2015-2017 | historicphoto | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-DOP-2018_2020 | Saxony historical aerial imagery 2018-2020 | historicphoto | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-DOP-2021_2022 | Saxony historical aerial imagery 2021-2022 | historicphoto | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-DOP-CIR | Saxony latest aerial imagery infrared | photo | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-DOP-RGB | Saxony latest aerial imagery | photo | ⭐ | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-ROHDOP-RGB | Saxony raw aerial imagery | photo | ⭐ | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-WebAtlas | Saxony WebAtlasSN | map | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-DGM-SG | Saxony shaded ground | elevation | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| GEOSN-DTK | Saxony topographic map | map | | Staatsbetrieb Geobasisinformation und Vermessung Sachsen |
|
|
||||||
| LSA-DOP20 | © GeoBasis-DE/LVermGeo LSA, DOP20 | photo | ⭐ | © GeoBasis-DE/LVermGeo LSA |
|
|
||||||
| Stuttgart-latest | Stuttgart Luftbild Stadtmessungsamt | photo | ⭐ | |
|
|
||||||
| Thuringia-DOP20 | Thüringen DOP20 | photo | ⭐ | © Thüringer Landesamt für Bodenmanagement und Geoinformation - dl-de/by-2-0 (https://www.govdata.de/dl-de/by-2-0) |
|
|
||||||
| Worms-2003 | Worms 2003 | historicphoto | | © Nibelungenstadt Worms |
|
|
||||||
| Worms-2008 | Worms 2008 | historicphoto | | © Nibelungenstadt Worms |
|
|
||||||
| Worms-2012 | Worms 2012 | historicphoto | | © Nibelungenstadt Worms |
|
|
||||||
| Worms-2016 | Worms 2016 | historicphoto | | © Nibelungenstadt Worms |
|
|
||||||
| Worms-2020 | Worms 2020 | historicphoto | | © Nibelungenstadt Worms |
|
|
||||||
| Worms-2025 | Worms 2025 | photo | ⭐ | © Nibelungenstadt Worms |
|
|
||||||
| aachen_alkis_wms | Aachen Liegenschaftskataster | other | ⭐ | |
|
|
||||||
| viersen_alkis_wms | ALKIS Kreis Viersen | other | ⭐ | |
|
|
||||||
| Geodatastyrelsen_Denmark | SDFI Aerial Imagery | photo | ⭐ | Styrelsen for Dataforsyning og Infrastruktur |
|
|
||||||
| Geodatastyrelsen_Cadastral_Parcels_INSPIRE_View | SDFI Cadastral Parcels INSPIRE View | other | | Geodatastyrelsen og Styrelsen for Dataforsyning og Infrastruktur |
|
|
||||||
| Geodatastyrelsen_DTK_Kort25 | SDFI DTK Map25 | map | | Styrelsen for Dataforsyning og Infrastruktur |
|
|
||||||
| Geodatastyrelsen_Skaermkort | SDFI Screenmap | map | | Styrelsen for Dataforsyning og Infrastruktur |
|
|
||||||
| SDFE_Overflade_Skyggekort_40cm | SDFI Surface Shadow Map (40 cm) | elevation | | Styrelsen for Dataforsyning og Infrastruktur |
|
|
||||||
| SDFE_Terraen_Skyggekort_40cm | SDFI Terrain Shadow Map (40 cm) | elevation | | Styrelsen for Dataforsyning og Infrastruktur |
|
|
||||||
| maaamet.ee-pohi_vr2 | Maa-amet Basic Map | map | | Maa-ameti põhikaart |
|
|
||||||
| maaamet.ee-cir_ngr | Maa-amet Forestry | photo | | Maa-ameti metsanduslik ortofoto |
|
|
||||||
| Maaamet-Estonia_Cadastre | Maa-amet Cadastral Map | photo | | Maa-ameti katastrikaart ortofoto alusel |
|
|
||||||
| Maaamet-Estonia_Ortho | Maa-amet Ortho (WMS) | photo | ⭐ | Maa-ameti ortofoto |
|
|
||||||
| Catastro-Spain | Catastro Spain | other | | |
|
|
||||||
| GRAFCAN-Canary_Islands | GRAFCAN OrtoExpress Urbana - Canary Islands | historicphoto | ⭐ | GRAFCAN OrtoExpress Urbana |
|
|
||||||
| GRAFCAN_Express-Canary_Islands | GRAFCAN OrtoExpress - Canary Islands | photo | | GRAFCAN OrtoExpress |
|
|
||||||
| ICGC-orto | ICGC - Ortofoto de Catalunya | photo | ⭐ | Institut Cartogràfic i Geològic de Catalunya |
|
|
||||||
| ICGC-topo | ICGC - Topogràfic de Catalunya | other | | Institut Cartogràfic i Geològic de Catalunya |
|
|
||||||
| IGEAR-ortofoto | IGEAR - Ortofoto reciente | photo | ⭐ | Instituto Geográfico de Aragón - Gobierno de Aragón |
|
|
||||||
| PNOA-Spain-TMS | PNOA Spain | photo | ⭐ | PNOA |
|
|
||||||
| SITNA-catastro | Catastro Navarra | other | | SITNA - Gobierno de Navarra / Nafarroako Gobernua |
|
|
||||||
| geoEuskadi-basemap | geoEuskadiren Kartografia | map | | Eusko Jaurlaritza / Gobierno Vasco. geoEuskadi |
|
|
||||||
| geoEuskadi-ORTO | geoEuskadiren Ortoargazkiak | photo | ⭐ | Eusko Jaurlaritza / Gobierno Vasco. geoEuskadi |
|
|
||||||
| IDEIB | IDEIB - Ortofoto més recent de les Illes Balears | photo | ⭐ | Infraestructura de Dades Espacials de les Illes Balears |
|
|
||||||
| madrid-ayto-geoportal | Ayuntamiento de Madrid - Ortofoto actualizada | photo | ⭐ | Ayuntamiento de Madrid |
|
|
||||||
| hri-orto | Helsinki region orthophoto | photo | ⭐ | © Espoon, Helsingin ja Vantaan kaupungit, Kirkkonummen ja Nurmijärven kunnat sekä HSL ja HSY |
|
|
||||||
| mml-orto | MML Orthophoto | photo | ⭐ | © Maanmittauslaitos |
|
|
||||||
| mml-tausta | MML Background Map | map | | © Maanmittauslaitos |
|
|
||||||
| mml-topo | MML Topographic Map | map | | © Maanmittauslaitos |
|
|
||||||
| tampere-aerial-2022 | Tampere aerial imagery 2022 | photo | ⭐ | © City of Tampere |
|
|
||||||
| turku-orto-2018-true | City of Turku ortophoto - 2018 True ortho | 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.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-2016_mirror1 | Auvergne 2016 25cm CRAIG | historicphoto | | CRAIG - IGN -TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016 |
|
|
||||||
| Craig_2019 | CRAIG - 2019 | photo | | CRAIG - IGN - Feder Auvergne-Rhône-Alpes 2019 |
|
|
||||||
| fr.ign.bdortho | BD Ortho IGN | photo | ⭐ | BD Ortho IGN |
|
|
||||||
| SIBA_2018 | Bassin d Arcachon 2018 | photo | | SIBA Vues aeriennes 2018 |
|
|
||||||
| Bayonne_2016 | Bayonne 2016 | photo | | Ville de Bayonne, Communauté d'Agglomtération Pays Basque - 2016 |
|
|
||||||
| Bayonne_2019 | Bayonne - Petit et Grand Bayonne 2019 | | | Ville de Bayonne - 2019 |
|
|
||||||
| Bordeaux_2016 | Bordeaux 2016 | historicphoto | | Bordeaux Métropole - 2016 |
|
|
||||||
| Bordeaux_2020 | Bordeaux 2020 | photo | | Bordeaux Métropole - 2020 |
|
|
||||||
| Bordeaux_2012 | Bordeaux - 2012 | historicphoto | | Communauté urbaine de Bordeaux - 2012 |
|
|
||||||
| fr.dpt.13.2009 | Bouches-du-Rhône 2009 | historicphoto | | Ortho13, 2009 |
|
|
||||||
| 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 |
|
|
||||||
| 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 |
|
|
||||||
| Geolittoral-Orthophotos2000 | Géolittoral - Orthophotos 2000 | historicphoto | | Ortho Littorale 2000 - Ministère en charge de l’environnement |
|
|
||||||
| GeolittoralV2-Orthophotos | Géolittoral V2 - Orthophotos 2011-2014 | historicphoto | | Ortho Littorale v2 - Ministère en charge de l’environnement |
|
|
||||||
| montauban_2020 | Grand Montauban 2020 | photo | | Grand Montauban 2020 |
|
|
||||||
| GrandNancy_Orthophotographie_2012 | GrandNancy - Orthophoto - 2012 | historicphoto | | GrandNancy Orthophotographie 2012 |
|
|
||||||
| fr.dpt.05.2010 | Hautes-Alpes 2010 | historicphoto | | ORTHO 2010 © PACA-04-05-84 |
|
|
||||||
| Loire_Atlantique-Orthophotos-2016 | Loire-Atlantique - Orthophotos 2016 - 10 cm | photo | | © Loire-Atlantique ouverture des données publiques |
|
|
||||||
| orthophoto_lyon_2018 | Lyon Orthophoto 2018 (8cm) | historicphoto | | Métropole de Lyon |
|
|
||||||
| orthophoto_lyon_2012 | Lyon Orthophoto 2012 (10cm) | historicphoto | | Grand Lyon Smart Data DSIT 2012 |
|
|
||||||
| orthophoto_lyon_2015 | Lyon Orthophoto 2015 (8cm) | historicphoto | | Métropole de Lyon DINSI 2015 |
|
|
||||||
| orthophoto_lyon_2022 | Lyon Orthophoto 2022 (5cm) | photo | ⭐ | CRAIG - Métropole du Grand Lyon 2022 |
|
|
||||||
| Mulhouse_2018 | Mulhouse - 2018 | photo | | Mulhouse Alsace Agglomération 2018 |
|
|
||||||
| GrandNancy_Orthophotographie_2016 | Nancy - Orthophoto - 2016 | photo | | GrandNancy Orthophotographie 2016 |
|
|
||||||
| GrandNancy_Orthophotographie | Nancy - Orthophoto | photo | ⭐ | GrandNancy Orthophotographie 2016 |
|
|
||||||
| fr.ign.orthoexpress.2023 | Ortho Express 2023 | photo | | IGN |
|
|
||||||
| fr.ign.orthoexpress.2024 | Ortho Express 2024 | photo | | IGN |
|
|
||||||
| fr.ign.orthoexpress.2025 | Ortho Express 2025 | photo | | IGN |
|
|
||||||
| fr.orthohr | Ortho HR | photo | | IGN, CRAIG, Mégalis Bretagne |
|
|
||||||
| fr.orthohr.2013 | Ortho HR 2013 | historicphoto | | IGN, CRAIG, Mégalis Bretagne |
|
|
||||||
| fr.orthohr.2014 | Ortho HR 2014 | historicphoto | | IGN, Mégalis Bretagne |
|
|
||||||
| fr.orthohr.2015 | Ortho HR 2015 | historicphoto | | IGN, Mégalis Bretagne |
|
|
||||||
| fr.orthohr.2016 | Ortho HR 2016 | historicphoto | | IGN, CRAIG, Mégalis Bretagne |
|
|
||||||
| fr.orthohr.2017.antilles | Ortho HR 2017 Antilles | historicphoto | | IGN |
|
|
||||||
| fr.orthohr.2017 | Ortho HR 2017 | historicphoto | | IGN |
|
|
||||||
| fr.orthohr.2018.antilles | Ortho HR 2018 Antilles | photo | | IGN |
|
|
||||||
| fr.orthohr.2018 | Ortho HR 2018 | photo | | IGN |
|
|
||||||
| fr.orthohr.2019 | Ortho HR 2019 | photo | | IGN |
|
|
||||||
| fr.orthohr.2020 | Ortho HR 2020 | photo | | IGN |
|
|
||||||
| fr.orthohr.2021 | Ortho HR 2021 | photo | | IGN |
|
|
||||||
| fr.orthohr.2022 | Ortho HR 2022 | photo | | IGN |
|
|
||||||
| fr.pcrs | PCRS raster | photo | ⭐ | PCRS - République Française |
|
|
||||||
| rennes_ortho_2014_osmfr | Rennes orthophotographie 2014 (20 cm) via OSM France | historicphoto | | Mégalis Bretagne et Collectivités Territoriales Bretonnes |
|
|
||||||
| rennes_ortho_2014_tms | Rennes orthophotographie 2014 (20 cm) | historicphoto | | Mégalis Bretagne et Collectivités Territoriales Bretonnes |
|
|
||||||
| rennes_ortho_2018_osmfr | Rennes orthophotographie 2017-2018 (10 cm) via OSM France | historicphoto | | Mégalis Bretagne et Collectivités Territoriales Bretonnes |
|
|
||||||
| rennes_ortho_2018_tms | Rennes orthophotographie 2017-2018 (10 cm) | historicphoto | | Mégalis Bretagne et Collectivités Territoriales Bretonnes |
|
|
||||||
| rennes_ortho_2020_osmfr | Rennes orthophotographie 2020 (20 cm) via OSM France | historicphoto | | Ortho Express 2020 - IGNF |
|
|
||||||
| rennes_ortho_2020_tms | Rennes orthophotographie 2020 (20 cm) | historicphoto | | Ortho Express 2020 - IGNF |
|
|
||||||
| rennes_ortho_2021_wms | Rennes orthophotographie 2021 (5 cm) | photo | | Rennes Ville et Métropole, IGN, SDE35, Megalis Bretagne |
|
|
||||||
| Toulouse-Orthophotoplan-2007 | Toulouse - Orthophotoplan 2007 | historicphoto | | Orthophotoplan 2007 - Toulouse Métropole, 20/09/2012, sous license ODbL |
|
|
||||||
| Toulouse-Orthophotoplan-2011 | Toulouse - Orthophotoplan 2011 | historicphoto | | Orthophotoplan 2011 - Toulouse Métropole, 20/09/2012, sous license ODbL |
|
|
||||||
| Toulouse-Orthophotoplan-2013 | Toulouse - Orthophotoplan 2013 | historicphoto | | Orthophotoplan 2013 - Toulouse Métropole, 31/12/2013, sous license ODbL |
|
|
||||||
| Toulouse-Orthophotoplan-2015 | Toulouse - Orthophotoplan 2015 | historicphoto | | Orthophotoplan 2015 - Toulouse Métropole, 14/12/2015, sous license ODbL |
|
|
||||||
| Toulouse-Orthophotoplan-2017 | Toulouse - Orthophotoplan 2017 | historicphoto | | Orthophotoplan 2017 - Toulouse Métropole, 04/07/2018, sous license ODbL |
|
|
||||||
| Toulouse-Orthophotoplan-2019 | Toulouse - Orthophotoplan 2019 | photo | ⭐ | Orthophotoplan 2019 - Toulouse Métropole, 2021, Licence Ouverte v2.0 (Etalab) |
|
|
||||||
| Tours-Orthophoto-2013 | Tours - Orthophotos 2013 | historicphoto | | Orthophoto Tour(s)plus 2013 |
|
|
||||||
| Tours-Orthophoto-2008_2010 | Tours - Orthophotos 2008-2010 | historicphoto | | Orthophoto Tour(s) Plus 2008 |
|
|
||||||
| fr.dpt.84.2010 | Vaucluse 2010 | historicphoto | | ORTHO 2010 © PACA-04-05-84 |
|
|
||||||
| Vercors-Orthophotos-1999 | Vercors (Réserve naturelle des Hauts-Plateaux du Vercors) - Orthophoto - 1999 - 1 m | historicphoto | | Parc Naturel Régional du Vercors |
|
|
||||||
| EA_LIDAR_DSM_1m_2022 | EA LiDAR Digital Surface Model 1m (2022) | elevation | | Environment Agency |
|
|
||||||
| EA_LIDAR_DTM_1m_2022 | EA LiDAR Digital Terrain Model 1m (2022) | elevation | | Environment Agency |
|
|
||||||
| Hampshire-Aerial-FCIR | Hampshire Aerial FCIR | photo | | |
|
|
||||||
| Hampshire-Aerial-RGB | Hampshire Aerial RGB | photo | | |
|
|
||||||
| NLS-OS-NatGrid-11250-1940-60 | NLS - OS 1:1,250 National Grid Maps, 1940s-1960s | historicmap | | National Library of Scotland Historic Maps |
|
|
||||||
| NLS_aberdeen1866_1867 | OS Town Plans, Aberdeen 1866-1867 (NLS) | historicmap | | National Library of Scotland - Aberdeen 1866-1867 |
|
|
||||||
| NLS_airdrie1858 | OS Town Plans, Airdrie 1858 (NLS) | historicmap | | National Library of Scotland - Airdrie 1858 |
|
|
||||||
| NLS_alexandria1859 | OS Town Plans, Alexandria 1859 (NLS) | historicmap | | National Library of Scotland - Alexandria 1859 |
|
|
||||||
| NLS_alloa1861_1862 | OS Town Plans, Alloa 1861-1862 (NLS) | historicmap | | National Library of Scotland - Alloa 1861-1862 |
|
|
||||||
| NLS_annan1859 | OS Town Plans, Annan 1859 (NLS) | historicmap | | National Library of Scotland - Annan 1859 |
|
|
||||||
| NLS_arbroath1858 | OS Town Plans, Arbroath 1858 (NLS) | historicmap | | National Library of Scotland - Arbroath 1858 |
|
|
||||||
| NLS_ayr1855 | OS Town Plans, Ayr 1855 (NLS) | historicmap | | National Library of Scotland - Ayr 1855 |
|
|
||||||
| NLS_berwick1852 | OS Town Plans, Berwick-upon-Tweed 1852 (NLS) | historicmap | | National Library of Scotland - Berwick-upon-Tweed 1852 |
|
|
||||||
| NLS_brechin1862 | OS Town Plans, Brechin 1862 (NLS) | historicmap | | National Library of Scotland - Brechin 1862 |
|
|
||||||
| NLS_burntisland1894 | OS Town Plans, Burntisland 1894 (NLS) | historicmap | | National Library of Scotland - Burntisland 1894 |
|
|
||||||
| NLS_campbeltown1865 | OS Town Plans, Campbelton 1865 (NLS) | historicmap | | National Library of Scotland - Campbelton 1865 |
|
|
||||||
| NLS_coatbridge1858 | OS Town Plans, Coatbridge 1858 (NLS) | historicmap | | National Library of Scotland - Coatbridge 1858 |
|
|
||||||
| OS-Town_Plans-Cupar-1854 | OS Town Plans, Cupar 1854 (NLS) | historicmap | | National Library of Scotland - Cupar 1854 |
|
|
||||||
| NLS_cupar1893_1894 | OS Town Plans, Cupar 1893-1894 (NLS) | historicmap | | National Library of Scotland - Cupar 1893-1894 |
|
|
||||||
| NLS_dalkeith1852 | OS Town Plans, Dalkeith 1852 (NLS) | historicmap | | National Library of Scotland - Dalkeith 1852 |
|
|
||||||
| NLS_dalkeith1893 | OS Town Plans, Dalkeith 1893 (NLS) | historicmap | | National Library of Scotland - Dalkeith 1893 |
|
|
||||||
| NLS_dumbarton1859 | OS Town Plans, Dumbarton 1859 (NLS) | historicmap | | National Library of Scotland - Dumbarton 1859 |
|
|
||||||
| NLS_dumfries1850 | OS Town Plans, Dumfries 1850 (NLS) | historicmap | | National Library of Scotland - Dumfries 1850 |
|
|
||||||
| NLS_dumfries1893 | OS Town Plans, Dumfries 1893 (NLS) | historicmap | | National Library of Scotland - Dumfries 1893 |
|
|
||||||
| NLS_dundee1857_1858 | OS Town Plans, Dundee 1857-1858 (NLS) | historicmap | | National Library of Scotland - Dundee 1857-1858 |
|
|
||||||
| NLS_dundee1870_1872 | OS Town Plans, Dundee 1870-1872 (NLS) | historicmap | | National Library of Scotland - Dundee 1870-1872 |
|
|
||||||
| NLS_dunfermline1854 | OS Town Plans, Dunfermline 1854 (NLS) | historicmap | | National Library of Scotland - Dunfermline 1854 |
|
|
||||||
| NLS_dunfermline1894 | OS Town Plans, Dunfermline 1894 (NLS) | historicmap | | National Library of Scotland - Dunfermline 1894 |
|
|
||||||
| NLS_edinburgh1849_1851 | OS Town Plans, Edinburgh 1849-1851 (NLS) | historicmap | | National Library of Scotland - Edinburgh 1849-1851 |
|
|
||||||
| NLS_edinburgh1876_1877 | OS Town Plans, Edinburgh 1876-1877 (NLS) | historicmap | | National Library of Scotland - Edinburgh 1876-1877 |
|
|
||||||
| NLS_edinburgh1893_1894 | OS Town Plans, Edinburgh 1893-1894 (NLS) | historicmap | | National Library of Scotland - Edinburgh 1893-1894 |
|
|
||||||
| NLS_edinburgh1940_1960 | OS Town Plans, Edinburgh 1940s-1960s (NLS) | historicmap | | National Library of Scotland - Edinburgh 1940s-1960s |
|
|
||||||
| NLS_elgin1868 | OS Town Plans, Elgin 1868 (NLS) | historicmap | | National Library of Scotland - Elgin 1868 |
|
|
||||||
| NLS_falkirk1858_1859 | OS Town Plans, Falkirk 1858-1859 (NLS) | historicmap | | National Library of Scotland - Falkirk 1858-1859 |
|
|
||||||
| NLS_forfar1860_1861 | OS Town Plans, Forfar 1860-1861 (NLS) | historicmap | | National Library of Scotland - Forfar 1860-1861 |
|
|
||||||
| NLS_forres1868 | OS Town Plans, Forres 1868 (NLS) | historicmap | | National Library of Scotland - Forres 1868 |
|
|
||||||
| NLS_galashiels1858 | OS Town Plans, Galashiels 1858 (NLS) | historicmap | | National Library of Scotland - Galashiels 1858 |
|
|
||||||
| NLS_girvan1857 | OS Town Plans, Girvan 1857 (NLS) | historicmap | | National Library of Scotland - Girvan 1857 |
|
|
||||||
| NLS_glasgow1857_1858 | OS Town Plans, Glasgow 1857-1858 (NLS) | historicmap | | National Library of Scotland - Glasgow 1857-1858 |
|
|
||||||
| NLS_glasgow1892_1894 | OS Town Plans, Glasgow 1892-1894 (NLS) | historicmap | | National Library of Scotland - Glasgow 1892-1894 |
|
|
||||||
| NLS_greenock1857 | OS Town Plans, Greenock 1857 (NLS) | historicmap | | National Library of Scotland - Greenock 1857 |
|
|
||||||
| NLS_haddington1853 | OS Town Plans, Haddington 1853 (NLS) | historicmap | | National Library of Scotland - Haddington 1853 |
|
|
||||||
| NLS_haddington1893 | OS Town Plans, Haddington 1893 (NLS) | historicmap | | National Library of Scotland - Haddington 1893 |
|
|
||||||
| NLS_hamilton1858 | OS Town Plans, Hamilton 1858 (NLS) | historicmap | | National Library of Scotland - Hamilton 1858 |
|
|
||||||
| NLS_hawick1857_1858 | OS Town Plans, Hawick 1857-1858 (NLS) | historicmap | | National Library of Scotland - Hawick 1857-1858 |
|
|
||||||
| NLS_inverness1867_1868 | OS Town Plans, Inverness 1867-1868 (NLS) | historicmap | | National Library of Scotland - Inverness 1867-1868 |
|
|
||||||
| NLS_irvine1859 | OS Town Plans, Irvine 1859 (NLS) | historicmap | | National Library of Scotland - Irvine 1859 |
|
|
||||||
| NLS_jedburgh1858 | OS Town Plans, Jedburgh 1858 (NLS) | historicmap | | National Library of Scotland - Jedburgh 1858 |
|
|
||||||
| NLS_kelso1857 | OS Town Plans, Kelso 1857 (NLS) | historicmap | | National Library of Scotland - Kelso 1857 |
|
|
||||||
| NLS_kilmarnock1857_1859 | OS Town Plans, Kilmarnock 1857-1859 (NLS) | historicmap | | National Library of Scotland - Kilmarnock 1857-1859 |
|
|
||||||
| NLS_kirkcaldy1855 | OS Town Plans, Kirkcaldy 1855 (NLS) | historicmap | | National Library of Scotland - Kirkcaldy 1855 |
|
|
||||||
| NLS_kirkcaldy1894 | OS Town Plans, Kirkcaldy 1894 (NLS) | historicmap | | National Library of Scotland - Kirkcaldy 1894 |
|
|
||||||
| NLS_kirkcudbright1850 | OS Town Plans, Kirkcudbright 1850 (NLS) | historicmap | | National Library of Scotland - Kirkcudbright 1850 |
|
|
||||||
| NLS_kirkcudbright1893 | OS Town Plans, Kirkcudbright 1893 (NLS) | historicmap | | National Library of Scotland - Kirkcudbright 1893 |
|
|
||||||
| NLS_kirkintilloch1859 | OS Town Plans, Kirkintilloch 1859 (NLS) | historicmap | | National Library of Scotland - Kirkintilloch 1859 |
|
|
||||||
| NLS_kirriemuir1861 | OS Town Plans, Kirriemuir 1861 (NLS) | historicmap | | National Library of Scotland - Kirriemuir 1861 |
|
|
||||||
| NLS_lanark1858 | OS Town Plans, Lanark 1858 (NLS) | historicmap | | National Library of Scotland - Lanark 1858 |
|
|
||||||
| NLS_linlithgow1856 | OS Town Plans, Linlithgow 1856 (NLS) | historicmap | | National Library of Scotland - Linlithgow 1856 |
|
|
||||||
| NLS_maybole1856_1857 | OS Town Plans, Mayole 1856-1857 (NLS) | historicmap | | National Library of Scotland - Mayole 1856-1857 |
|
|
||||||
| NLS_montrose1861_1862 | OS Town Plans, Montrose 1861-1862 (NLS) | historicmap | | National Library of Scotland - Montrose 1861-1862 |
|
|
||||||
| NLS_musselburgh1853 | OS Town Plans, Musselburgh 1853 (NLS) | historicmap | | National Library of Scotland - Musselburgh 1853 |
|
|
||||||
| NLS_musselburgh1893 | OS Town Plans, Musselburgh 1893 (NLS) | historicmap | | National Library of Scotland - Musselburgh 1893 |
|
|
||||||
| NLS_nairn1867_1868 | OS Town Plans, Nairn 1867-1868 (NLS) | historicmap | | National Library of Scotland - Nairn 1867-1868 |
|
|
||||||
| NLS_oban1867_1868 | OS Town Plans, Oban 1867-1868 (NLS) | historicmap | | National Library of Scotland - Oban 1867-1868 |
|
|
||||||
| NLS_paisley1858 | OS Town Plans, Paisley 1858 (NLS) | historicmap | | National Library of Scotland - Paisley 1858 |
|
|
||||||
| NLS_peebles1856 | OS Town Plans, Peebles 1856 (NLS) | historicmap | | National Library of Scotland - Peebles 1856 |
|
|
||||||
| NLS_perth1860 | OS Town Plans, Perth 1860 (NLS) | historicmap | | National Library of Scotland - Perth 1860 |
|
|
||||||
| NLS_peterhead1868 | OS Town Plans, Peterhead 1868 (NLS) | historicmap | | National Library of Scotland - Peterhead 1868 |
|
|
||||||
| NLS_portglasgow1856_1857 | OS Town Plans, Port Glasgow 1856-1857 (NLS) | historicmap | | National Library of Scotland - Port Glasgow 1856-1857 |
|
|
||||||
| NLS_portobello1893_1894 | OS Town Plans, Portobello 1893-1894 (NLS) | historicmap | | National Library of Scotland - Portobello 1893-1894 |
|
|
||||||
| NLS_rothesay1862_1863 | OS Town Plans, Rothesay 1862-1863 (NLS) | historicmap | | National Library of Scotland - Rothesay 1862-1863 |
|
|
||||||
| NLS_selkirk1865 | OS Town Plans, Selkirk 1865 (NLS) | historicmap | | National Library of Scotland - Selkirk 1865 |
|
|
||||||
| NLS_standrews1854 | OS Town Plans, St Andrews 1854 (NLS) | historicmap | | National Library of Scotland - St Andrews 1854 |
|
|
||||||
| NLS_standrews1893 | OS Town Plans, St Andrews 1893 (NLS) | historicmap | | National Library of Scotland - St Andrews 1893 |
|
|
||||||
| NLS_stirling1858 | OS Town Plans, Stirling 1858 (NLS) | historicmap | | National Library of Scotland - Stirling 1858 |
|
|
||||||
| NLS_stonehaven1864 | OS Town Plans, Stonehaven 1864 (NLS) | historicmap | | National Library of Scotland - Stonehaven 1864 |
|
|
||||||
| NLS_stranraer1847 | OS Town Plans, Stranraer 1847 (NLS) | historicmap | | National Library of Scotland - Stranraer 1847 |
|
|
||||||
| NLS_stranraer1867_1877 | OS Town Plans, Stranraer 1863-1877 (NLS) | historicmap | | National Library of Scotland - Stranraer 1863-1877 |
|
|
||||||
| NLS_stranraer1893 | OS Town Plans, Stranraer 1893 (NLS) | historicmap | | National Library of Scotland - Stranraer 1893 |
|
|
||||||
| NLS_strathaven1858 | OS Town Plans, Strathaven 1858 (NLS) | historicmap | | National Library of Scotland - Strathaven 1858 |
|
|
||||||
| NLS_wick1872 | OS Town Plans, Wick 1872 (NLS) | historicmap | | National Library of Scotland - Wick 1872 |
|
|
||||||
| NLS_wigtown1848 | OS Town Plans, Wigtown 1848 (NLS) | historicmap | | National Library of Scotland - Wigtown 1848 |
|
|
||||||
| NLS_wigtown1894 | OS Town Plans, Wigtown 1894 (NLS) | historicmap | | National Library of Scotland - Wigtown 1894 |
|
|
||||||
| Surrey-Air_Survey | Surrey Air Survey | photo | | |
|
|
||||||
| dgu-dof-2011 | dgu.hr: Croatia 2011 Aerial imagery | historicphoto | | Sadrži podatke Državne geodetske uprave |
|
|
||||||
| dgu-dof-2014-2016 | dgu.hr: Croatia 2014-2016 Aerial imagery | historicphoto | | Sadrži podatke Državne geodetske uprave |
|
|
||||||
| dgu-dof-2019-2020 | dgu.hr: Croatia 2019-2020 aerial imagery | historicphoto | | Sadrži podatke Državne geodetske uprave |
|
|
||||||
| dgu-dof-2021-2022 | dgu.hr: Croatia 2021-2022 aerial imagery | photo | ⭐ | Sadrži podatke Državne geodetske uprave |
|
|
||||||
| dgu-hok | dgu.hr: HOK | map | | Sadrži podatke Državne geodetske uprave |
|
|
||||||
| dgu-topo-100 | dgu.hr: Topo 100 | map | | Sadrži podatke Državne geodetske uprave |
|
|
||||||
| dgu-topo-200 | dgu.hr: Topo 200 | map | | Sadrži podatke Državne geodetske uprave |
|
|
||||||
| dgu-topo-25-new | dgu.hr: Topo 25 new | map | | Sadrži podatke Državne geodetske uprave |
|
|
||||||
| dgu-topo-25 | dgu.hr: Topo 25 | map | | Sadrži podatke Državne geodetske uprave |
|
|
||||||
| 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-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 Főváros XI. Kerület Újbuda Ö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 Főváros XI. Kerület Újbuda Ö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 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 |
|
|
||||||
| OpenStreetMap-turistautak | OpenStreetMap (turistautak) | osmbasedmap | | © OpenStreetMap contributors |
|
|
||||||
| Torokbalint-orthophoto-2013 | Törökbálint orthophoto 2013 | historicphoto | | Törökbálint |
|
|
||||||
| Torokbalint-orthophoto-2015 | Törökbálint orthophoto 2015 | historicphoto | | Törökbálint |
|
|
||||||
| Torokbalint-orthophoto-2018 | Törökbálint orthophoto 2018 | historicphoto | | Törökbálint |
|
|
||||||
| Torokbalint-orthophoto-2021 | Törökbálint orthophoto 2021 | photo | ⭐ | Törökbálint |
|
|
||||||
| antrimnuig | Ireland Civil Parishes and Baronies - Memorial Atlas | map | | James Hardiman Library, NUIG |
|
|
||||||
| osmie_tie_not_counties | OSMIE T.ie Land not in Counties | other | | |
|
|
||||||
| 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 |
|
|
||||||
| Lombardia-Italy-CTR | Lombardia - Italy (C.T.R. 10000 - 1980-94) | map | | Regione Lombardia - Infrastruttura per l'informazione territoriale |
|
|
||||||
| 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_2013 | South Tyrol DSM Hillshade 2013 (0.5 m) | elevation | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0 |
|
|
||||||
| South-Tyrol-DTM_2006_2_5m | South Tyrol DTM Hillshade 2006 (2.5 m) | elevation | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0 |
|
|
||||||
| South-Tyrol-DTM_2013 | South Tyrol DTM Hillshade 2013 (0.5 m) | elevation | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0 |
|
|
||||||
| South-Tyrol-Orthofoto2011-20cm | South Tyrol Orthofoto 2011 (highres) | historicphoto | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 4.0 |
|
|
||||||
| South-Tyrol-Orthofoto-2017 | South Tyrol Orthofoto 2017 | historicphoto | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC0-1.0 |
|
|
||||||
| South-Tyrol-Orthofoto-2020 | South Tyrol Orthofoto 2020 | photo | | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 4.0 |
|
|
||||||
| South-Tyrol-Orthofoto-2023 | South Tyrol Orthofoto 2023 | photo | ⭐ | © Autonome Provinz Bozen/Provincia Autonoma di Bolzano CC-BY 4.0 |
|
|
||||||
| lu.geoportail.opendata.basemap | Basemap geoportail.lu | | | Administration du Cadastre et de la Topographie |
|
|
||||||
| lu.geoportail.opendata.cadastre | Cadastre geoportail.lu | | | Administration du Cadastre et de la Topographie |
|
|
||||||
| lu.geoportail.opendata.wms_endpoint | geoportail.lu all layers | other | | Administration du Cadastre et de la Topographie |
|
|
||||||
| lu.geoportail.opendata.ortho2021 | Ortho 2021 geoportail.lu | | | Administration du Cadastre et de la Topographie |
|
|
||||||
| lu.geoportail.opendata.ortholatest | Latest available ortho geoportail.lu | photo | ⭐ | Administration du Cadastre et de la Topographie |
|
|
||||||
| lu.geoportail.opendata.ortho_2019_winter | geoportail.lu ortho technique 2019 (10cm) | photo | | Administration du Cadastre et de la Topographie |
|
|
||||||
| lu.geoportail.opendata.topo | Topographical Map geoportail.lu | | | Administration du Cadastre et de la Topographie |
|
|
||||||
| lu.openstreetmap.lidar.hillshade.2019.classy | openstreetmap.lu "mapper’s delight" hillshade lidar 2019 with unclassified points | elevation | | Administration du Cadastre et de la Topographie |
|
|
||||||
| LV_ORTOFOTO_C1 | Orthophoto (1994–1999), B&W, 1:30000, Latvia | historicphoto | | LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0) and WMS service. |
|
|
||||||
| LV_ORTOFOTO_C3 | Orthophoto (2007–2008), 1:10000, Latvia | historicphoto | | LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0) and WMS service. |
|
|
||||||
| LV_ORTOFOTO_C4 | Orthophoto (2010-2011), 1:5000, Latvia | photo | | LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0). WMS service is provided by LVM (Latvian State Forestry). |
|
|
||||||
| LV_ORTOFOTO_C5 | Orthophoto (2013-2015), 1:5000, Latvia | photo | | LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0). WMS service is provided by LVM (Latvian State Forestry). |
|
|
||||||
| LV_ORTOFOTO_C6 | Orthophoto (2016–2018), 1:5000, Latvia | photo | ⭐ | LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0). WMS service is provided by LVM (Latvian State Forestry). |
|
|
||||||
| LV_TERRAIN_LIDAR_LGIA | Digital terrain model (2013–2019), LĢIA, Latvia | elevation | | LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0). WMS service is provided by LVM (Latvian State Forestry). |
|
|
||||||
| LV_TOPO50_LGIA | LĢIA topographic, 1:50000, 3 ed., Latvia | map | | LĢIA (Latvian Geospatial Information Agency) provided these open data (CC0). WMS service is provided by LVM (Latvian State Forestry). |
|
|
||||||
| German-1944_Aerial | German Aerial Imagery (1944) | historicphoto | | © Simpals SRL, Bundesarchiv - Stabsbildabteilung |
|
|
||||||
| American-1966_Aerial | American Aerial Imagery (1966) | historicphoto | | © Simpals SRL, U.S. Geological Survey |
|
|
||||||
| BGT_standaardvisualisatie_WMTS | PDOK BGT standaardvisualisatie | map | | Kadaster, Basisregistratie Grootschalige Topografie (BGT) |
|
|
||||||
| Actueel_orthoHR_WMTS | PDOK aerial imagery Beeldmateriaal.nl 8cm (WMTS) latest | photo | ⭐ | Kadaster / Beeldmateriaal.nl, CC BY 4.0 |
|
|
||||||
| kartverket-ok-1st | Kartverket Economic Maps (historic) | historicmap | | © Kartverket |
|
|
||||||
| geovekst-nib | Norway Orthophoto | photo | ⭐ | © Geovekst |
|
|
||||||
| geovekst-nib2 | Norway Orthophoto (more recent, less zoom) | photo | ⭐ | © Geovekst |
|
|
||||||
| geovekst-nib-historic | Norway Orthophoto (historic) | historicphoto | | © Geovekst |
|
|
||||||
| kartverket-dom-skygge | Kartverket DOM Digital Surface Model | elevation | | © Kartverket |
|
|
||||||
| kartverket-dtm-skygge | Kartverket DTM Digital Terrain Model | elevation | | © Kartverket |
|
|
||||||
| Bytom-2014 | Bytom: Fotoplan 2014 (aerial image) | photo | | https://www.bytom.pl/ |
|
|
||||||
| Bytom-2012 | Bytom: Orthophotomap 2012 (aerial image) | historicphoto | | https://www.bytom.pl/ |
|
|
||||||
| Bytom-2016 | Bytom: Orthophotomap 2016 (aerial image) | historicphoto | | https://www.bytom.pl/ |
|
|
||||||
| Bytom-2018 | Bytom: Orthophotomap 2018 (aerial image) | historicphoto | | https://www.bytom.pl/ |
|
|
||||||
| Bytom-2021 | Bytom: Orthophotomap 2021 (aerial image) | photo | ⭐ | https://www.bytom.pl/ |
|
|
||||||
| Geoportal2-PL-aerial_archival_image_WMS | Geoportal 2: Orthophotomap (archival imagery) (WMS) | historicphoto | | Główny Urząd Geodezji i Kartografii |
|
|
||||||
| Geoportal2-PL-HighResolution-aerial_archival_image_WMS | Geoportal 2: High Resolution Orthophotomap (archival imagery) (WMS) | historicphoto | | Główny Urząd Geodezji i Kartografii |
|
|
||||||
| Geoportal2-PL-aerial_image_WMS | Geoportal 2: Orthophotomap (latest aerial imagery) (WMS) | photo | | Główny Urząd Geodezji i Kartografii |
|
|
||||||
| Geoportal2-PL-aerial_image_WMTS | Geoportal 2: Orthophotomap (latest aerial imagery) (WMTS) | photo | ⭐ | Główny Urząd Geodezji i Kartografii |
|
|
||||||
| Geoportal2-PL-HighResolution-aerial_image_WMS | Geoportal 2: High Resolution Orthophotomap (aerial image) (WMS) | photo | | Główny Urząd Geodezji i Kartografii |
|
|
||||||
| Geoportal2-PL-shaded_relief_WMS | Geoportal 2: Shaded relief (WMS) | elevation | | Główny Urząd Geodezji i Kartografii |
|
|
||||||
| Gliwice-2003 | Gliwice: Orthophotomap 2003 (aerial image) | historicphoto | | http://msip-mapa.um.gliwice.pl/ |
|
|
||||||
| Gliwice-2009 | Gliwice: Orthophotomap 2009 (aerial image) | historicphoto | | http://msip-mapa.um.gliwice.pl/ |
|
|
||||||
| Gliwice-2013 | Gliwice: Orthophotomap 2013 (aerial image) | historicphoto | | http://msip-mapa.um.gliwice.pl/ |
|
|
||||||
| Gliwice-2017 | Gliwice: Orthophotomap 2017 (aerial image) | historicphoto | | http://msip-mapa.um.gliwice.pl/ |
|
|
||||||
| Gliwice-2018 | Gliwice: Orthophotomap 2018 (aerial image) | historicphoto | | http://msip-mapa.um.gliwice.pl/ |
|
|
||||||
| Gliwice-2020 | Gliwice: Orthophotomap 2020 (aerial image) | historicphoto | | http://msip-mapa.um.gliwice.pl/ |
|
|
||||||
| Gliwice-2021 | Gliwice: Orthophotomap 2021 (aerial image) | photo | | http://msip-mapa.um.gliwice.pl/ |
|
|
||||||
| lancucki-buildings | Powiat łańcucki: Buildings | other | | Powiat łańcucki |
|
|
||||||
| debicki-buildings | Powiat dębicki: Buildings | other | | Powiat dębicki |
|
|
||||||
| lubaczowski-buildings | Powiat lubaczowski: Buildings | | | Powiat lubaczowski |
|
|
||||||
| sropczyce-buildings | Powiat ropczycko-sędziszowski: Buildings | other | | Powiat ropczycko-sędziszowski |
|
|
||||||
| rzeszowski-buildings | Powiat rzeszowski: Buildings | other | | Powiat rzeszowski |
|
|
||||||
| rzeszowski-aerial | Powiat rzeszowski: Orthophotomap (aerial image) | photo | | Powiat rzeszowski |
|
|
||||||
| stalowowolski-buildings | Powiat stalowowolski: Buildings | other | | Powiat stalowowolski |
|
|
||||||
| Siemianowice_Slaskie-buildings | Siemianowice Śląskie: Buildings | other | | Urząd Miasta Siemianowice Śląskie |
|
|
||||||
| Siemianowice_Slaskie-aerial_image | Siemianowice Śląskie: Orthophotomap (aerial image) | photo | | Urząd Miasta Siemianowice Śląskie |
|
|
||||||
| wroclaw-orto2015 | Wrocław: Orthophotomap 2015 (aerial image) | historicphoto | | Urząd Miasta Wrocław |
|
|
||||||
| wroclaw-orto2018 | Wrocław: Orthophotomap 2018 (aerial image) | photo | ⭐ | Urząd Miasta Wrocław |
|
|
||||||
| Lodz-buildings | Łódź: Buildings | other | | Urząd Miasta Łodzi |
|
|
||||||
| Lodz-2015 | Łódź: Orthophotomap 2015 (aerial image) | | | Urząd Miasta Łodzi |
|
|
||||||
| Lodz-2017 | Łódź: Orthophotomap 2017 (aerial image) | | | Urząd Miasta Łodzi |
|
|
||||||
| MDT2M_LITORAL_2014_15 | Elevation hillshade of the coastal areas of mainland Portugal - 2m - 2014-2015 (DGT) | elevation | | Informação geográfica cedida pela Direção-Geral do Território |
|
|
||||||
| ORTOS_DGT_2014_15 | Orthophotos of the coastal areas of mainland Portugal - 10 cm - 2014-2015 (DGT) | historicphoto | | Informação geográfica cedida pela Direção-Geral do Território |
|
|
||||||
| ORTOS_DGT_2018_WMS | Orthophotos of mainland Portugal - 25 cm - 2018 (DGT) | photo | ⭐ | Informação geográfica cedida pela Direção-Geral do Território |
|
|
||||||
| ORTOS_DGRF_2004_06 | Orthophotos of mainland Portugal - 50 cm - 2004-2006 (DGT) | historicphoto | | Informação geográfica cedida pela Direção-Geral do Território |
|
|
||||||
| ORTOS_DGT_2021_RGB | Orthophotos of the northern portion of mainland Portugal - 25 cm - 2021 (DGT) | photo | ⭐ | Informação geográfica cedida pela Direção-Geral do Território |
|
|
||||||
| ORTOSAT_DGT_2023_RGB | OrtoSat - Portugal Continental - 30 cm - 2023 (DGT) | photo | | Informação geográfica cedida pela Direção-Geral do Território |
|
|
||||||
| rs-osm-official-cyr | Official Serbia OSM (cyr) | osmbasedmap | | openstreetmap.rs |
|
|
||||||
| rs-osm-official-lat | Official Serbia OSM (lat) | osmbasedmap | | openstreetmap.rs |
|
|
||||||
| lantmateriet-orto1960 | Lantmäteriet Historic Orthophoto 1960 | historicphoto | | © Lantmäteriet, CC0 |
|
|
||||||
| lantmateriet-orto1975 | Lantmäteriet Historic Orthophoto 1975 | historicphoto | | © Lantmäteriet, CC0 |
|
|
||||||
| lidingo-orto | Lidingö Orthophoto | photo | ⭐ | © Lidingö municipality, CC0 |
|
|
||||||
| sollentuna-orto | Sollentuna Orthophoto | photo | ⭐ | © Solentuna municipality |
|
|
||||||
| gothenburg-citymap | Gothenburg City map | map | | © Gothenburg municipality, CC0 |
|
|
||||||
| gothenburg-dtm-2017 | Gothenburg Hillshade | elevation | | © Gothenburg municipality, CC0 |
|
|
||||||
| gothenburg-ortho | Gothenburg Orthophoto 2015 | historicphoto | | © Gothenburg municipality, CC0 |
|
|
||||||
| gothenburg-ortho_2017 | Gothenburg Orthophoto 2017 | historicphoto | | © Gothenburg municipality, CC0 |
|
|
||||||
| gothenburg-ortho_2019 | Gothenburg Orthophoto 2019 | photo | | © Gothenburg municipality, CC0 |
|
|
||||||
| gothenburg-ortho_2021 | Gothenburg Orthophoto 2021 | photo | | © Gothenburg municipality, CC0 |
|
|
||||||
| gothenburg-ortho_latest | Gothenburg Orthophoto latest | photo | ⭐ | © Gothenburg municipality, CC0 |
|
|
||||||
| kalmar-orto-2014 | Kalmar North Orthophoto 2014 | photo | ⭐ | © Kalmar municipality |
|
|
||||||
| kalmar-orto-2016 | Kalmar South Orthophoto 2016 | photo | ⭐ | © Kalmar municipality |
|
|
||||||
| kalmar-orto-2018 | Kalmar Urban Orthophoto 2018 | photo | ⭐ | © Kalmar municipality |
|
|
||||||
| kalmar-orto-2020 | Kalmar Urban Orthophoto 2020 | photo | ⭐ | © Kalmar municipality |
|
|
||||||
| stockholm-orto | Stockholm Orthophoto | photo | ⭐ | © Stockholm municipality, CC0 |
|
|
||||||
| RABA-KGZ | RABA-KGZ: Slovenia farmland use | other | | Copyright ©2019 Ministrstvo za kmetijstvo, gozdarstvo in prehrano (mkgp.gov.si). Some rights reserved. |
|
|
||||||
| GURS-DOF025 | GURS: Slovenia orthophoto 25cm (DOF025) | photo | ⭐ | CC-BY Geodetska uprava Republike Slovenije, DOF025, 2020-2022; Level2.si 2023 |
|
|
||||||
| ortofotomozaika-sr | Ortofotomozaika SR | photo | ⭐ | © GKÚ, NLC 2017-2019 |
|
|
||||||
| UkraineCherkasy2015 | Ukraine - Cherkasy 2015 | photo | | © Геопортал містобудівного кадастру міста Черкаси |
|
|
||||||
| UkraineCherkasy2021 | Ukraine - Cherkasy 2021 | photo | ⭐ | © Геопортал містобудівного кадастру міста Черкаси |
|
|
||||||
| UkraineDonAndriivskaOTG2020 | Ukraine - Andriivska OTG 2020 | photo | ⭐ | Геопортал Андріївської громади |
|
|
||||||
| UkraineLubetskaOTG2020 | Ukraine - Lubetska OTG 2020 | photo | ⭐ | Map data: © Геоінформаційна система Любецької громади |
|
|
||||||
| UkraineVinnytsiaTG2021 | Ukraine - Vinnytsia TG 2021 | photo | | © Вінницька міська рада |
|
|
||||||
| Canvec_French | Canvec - French | map | | |
|
|
||||||
| Canvec | Canvec - English | map | | |
|
|
||||||
| Geobase_Roads_French | Geobase Roads - French | 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 |
|
|
||||||
| 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_2024 | NOAA NGS East Coast Imagery (2024) | photo | | NOAA National Geodetic Survey |
|
|
||||||
| NOAA_Gulf_2025 | NOAA NGS Gulf Coast Imagery (2025) | photo | | NOAA National Geodetic Survey |
|
|
||||||
| NOAA_Gulf_East_2023 | NOAA NGS Gulf Coast Imagery, East (2023) | historicphoto | | NOAA National Geodetic Survey |
|
|
||||||
| NOAA_Gulf_West_2023 | NOAA NGS Gulf Coast Imagery, West (2023) | historicphoto | | NOAA National Geodetic Survey |
|
|
||||||
| NOAA_PR_USVI_2024 | NOAA NGS PR/USVI Coastal Imagery (2024) | photo | | NOAA National Geodetic Survey |
|
|
||||||
| NOAA_Southeast_2025 | NOAA NGS Southeast Coast Imagery (2025) | photo | | NOAA National Geodetic Survey |
|
|
||||||
| NOAA_West_2023 | NOAA NGS West Coast Imagery (2023) | photo | | NOAA National Geodetic Survey |
|
|
||||||
| USDA-NAIP-PR | National Agriculture Imagery Program (PR/USVI) | photo | | U.S. Department of Agriculture |
|
|
||||||
| US_Forest_Service_roads | U.S. Forest Service roads | map | | |
|
|
||||||
| USGS-3DEP | USGS 3D Elevation Program | elevation | | |
|
|
||||||
| USGS-Imagery | USGS Imagery | photo | | |
|
|
||||||
| CBJ_Aerial_20130611 | CBJ Aerial Imagery (2013) | historicphoto | | City and Borough of Juneau |
|
|
||||||
| CBJ_Aerial_20230516 | CBJ Aerial Imagery (May 2023) | photo | ⭐ | City and Borough of Juneau |
|
|
||||||
| CBJ_Aerial_20230618 | CBJ Aerial Imagery (June 2023) | photo | | City and Borough of Juneau |
|
|
||||||
| FNSB_Aerial_2023 | FNSB Aerial Imagery (2023) | photo | ⭐ | Fairbanks North Star Borough |
|
|
||||||
| MOA_Aerial_2021 | MOA Aerial Imagery (2021) | historicphoto | | Municipality of Anchorage GIS |
|
|
||||||
| MOA_Aerial_2024 | MOA Aerial Imagery (2024) | photo | ⭐ | Municipality of Anchorage GIS |
|
|
||||||
| MSB_Aerial_2019 | MSB Aerial Imagery - Area 1(2019) | historicphoto | | Matanuska-Susitna Borough GIS Division |
|
|
||||||
| MSB_Aerial_2020 | MSB Aerial Imagery - Area 2 (2020) | historicphoto | | Matanuska-Susitna Borough GIS Division |
|
|
||||||
| MSB_Aerial_2021 | MSB Aerial Imagery - Area 3 (2021) | historicphoto | | Matanuska-Susitna Borough GIS Division |
|
|
||||||
| MSB_Aerial_2022 | MSB Aerial Imagery - Core Area (2022) | photo | | Matanuska-Susitna Borough GIS Division |
|
|
||||||
| MSB_Aerial_2023 | MSB Aerial Imagery - Area 2 (2023) | photo | | Matanuska-Susitna Borough GIS Division |
|
|
||||||
| NOAA_NGS_70701_RGB | NOAA NGS Sitka Imagery (2023) | photo | | NOAA National Geodetic Survey |
|
|
||||||
| USDA_Delta_Junction_2021 | USDA Delta Junction Orthoimagery (2021) | photo | | U.S. Department of Agriculture |
|
|
||||||
| ADOP_2023_9in | ADOP Orthoimagery 2023 (9in) | photo | ⭐ | Arkansas GIS Office |
|
|
||||||
| PAgis_Ortho_2018 | PAgis 2018 Orthophotography | photo | | Pulaski Area Geographic Information System |
|
|
||||||
| PAgis_Ortho_2021 | PAgis 2021 Orthophotography | photo | | Pulaski Area Geographic Information System |
|
|
||||||
| Berkeley_CA_Latest | City of Berkeley Orthoimagery (Latest) | photo | | City of Berkeley |
|
|
||||||
| Burbank_CA_2021 | City of Burbank Orthoimagery (2021) | historicphoto | | City of Burbank |
|
|
||||||
| Burbank_CA_2024 | City of Burbank Orthoimagery (2024) | photo | | City of Burbank |
|
|
||||||
| Calaveras_CA_2022 | Calaveras County Orthoimagery (2022) | historicphoto | | Calaveras County |
|
|
||||||
| Calaveras_CA_2024 | Calaveras County Orthoimagery (2024) | photo | | Calaveras County |
|
|
||||||
| Eureka_CA_2023 | City of Eureka Orthoimagery (2023) | photo | | City of Eureka |
|
|
||||||
| Irvine_CA_2023 | City of Irvine Orthoimagery (2023) | photo | | City of Irvine |
|
|
||||||
| LA_County_Basemap | LA County Basemap | map | | Los Angeles County |
|
|
||||||
| Manhattan_Beach_CA_2023 | City of Manhattan Beach Orthoimagery (2023) | photo | | City of Manhattan Beach |
|
|
||||||
| Manteca_CA_2022 | City of Manteca Orthoimagery (2022) | photo | | City of Manteca |
|
|
||||||
| Manteca_CA_2024 | City of Manteca Orthoimagery (2024) | photo | | City of Manteca |
|
|
||||||
| Modesto_CA_2023 | City of Modesto Orthoimagery (2023) | historicphoto | | City of Modesto |
|
|
||||||
| Modesto_CA_2024 | City of Modesto Orthoimagery (2024) | photo | | City of Modesto |
|
|
||||||
| Orange_CA_2022 | Orange County Orthoimagery (2022) | photo | | Orange County |
|
|
||||||
| Roseville_CA_2023 | City of Roseville Orthoimagery (2023) | historicphoto | | City of Roseville |
|
|
||||||
| Roseville_CA_2024 | City of Roseville Orthoimagery (2024) | photo | | City of Roseville |
|
|
||||||
| Sacramento_CA_2022 | Sacramento County Orthoimagery (2022) | photo | | Sacramento County |
|
|
||||||
| San_Bernardino_CA_2023 | San Bernardino County Orthoimagery (2023) | historicphoto | | San Bernardino County |
|
|
||||||
| San_Bernardino_CA_2024 | San Bernardino County Orthoimagery (2024) | photo | | San Bernardino County |
|
|
||||||
| San_Francisco_2022 | San Francisco Orthoimagery (2022) | historicphoto | | City and County of San Francisco |
|
|
||||||
| San_Francisco_2022_CIR | San Francisco Orthoimagery CIR (2022) | historicphoto | | City and County of San Francisco |
|
|
||||||
| San_Francisco_2023 | San Francisco Orthoimagery (2023) | historicphoto | | City and County of San Francisco |
|
|
||||||
| San_Francisco_2023_CIR | San Francisco Orthoimagery CIR (2023) | historicphoto | | City and County of San Francisco |
|
|
||||||
| San_Francisco_2024 | San Francisco Orthoimagery (2024) | photo | | City and County of San Francisco |
|
|
||||||
| San_Francisco_2024_CIR | San Francisco Orthoimagery CIR (2024) | photo | | City and County of San Francisco |
|
|
||||||
| San_Mateo_CA_2022 | San Mateo County Orthoimagery (2022) | photo | | San Mateo County |
|
|
||||||
| Santa_Clara_County_22w | Santa Clara County Orthoimagery (Winter 2022) | historicphoto | | County of Santa Clara |
|
|
||||||
| Santa_Clara_County_23s | Santa Clara County Orthoimagery (Spring 2023) | historicphoto | | County of Santa Clara |
|
|
||||||
| Santa_Clara_County_24s | Santa Clara County Orthoimagery (Spring 2024) | photo | | County of Santa Clara |
|
|
||||||
| Santa_Clara_County_24w | Santa Clara County Orthoimagery (Winter 2024) | photo | | County of Santa Clara |
|
|
||||||
| Santa_Rosa_CA_2022 | City of Santa Rosa Orthoimagery (2022) | historicphoto | | City of Santa Rosa |
|
|
||||||
| Santa_Rosa_CA_2025 | City of Santa Rosa Orthoimagery (2025) | photo | | City of Santa Rosa |
|
|
||||||
| Solano_CA_2022 | Solano County Orthoimagery (2022) | historicphoto | | Solano County |
|
|
||||||
| Solano_CA_2023 | Solano County Orthoimagery (2023) | historicphoto | | Solano County |
|
|
||||||
| Solano_CA_2024 | Solano County Orthoimagery (2024) | photo | | Solano County |
|
|
||||||
| Stockton_CA_2023 | City of Stockton Orthoimagery (2023) | photo | | City of Stockton |
|
|
||||||
| Arapahoe-County-Aerials-Latest | Arapahoe County Aerials Latest | photo | | Arapahoe County GIS |
|
|
||||||
| MCGIS-County-NAIP-Imagery-2015 | Mesa County GIS NAIP 2015 | historicphoto | | Mesa County GIS |
|
|
||||||
| MCGIS-County-Valleywide-Imagery-2018 | Mesa County GIS Valleywide 2018 | historicphoto | | Mesa County GIS |
|
|
||||||
| MCGIS-County-Valleywide-Imagery-2020 | Mesa County GIS Valleywide 2020 | historicphoto | | Mesa County GIS |
|
|
||||||
| MCGIS-County-Valleywide-Imagery-2022 | Mesa County GIS Valleywide 2022 | photo | | Mesa County GIS |
|
|
||||||
| MCGIS-County-Valleywide-Imagery-2024 | Mesa County GIS Valleywide 2024 | photo | | Mesa County GIS |
|
|
||||||
| CT_ECO_Ortho_2019_RGB | CT ECO Orthoimagery (2019) | historicphoto | | Connecticut Environmental Conditions Online |
|
|
||||||
| CT_ECO_Ortho_2023_RGB | CT ECO Orthoimagery (2023) | photo | ⭐ | Connecticut Environmental Conditions Online |
|
|
||||||
| CT_ECO_Shaded_relief_2016 | CT ECO Shaded Relief (2016) | elevation | | Connecticut Environmental Conditions Online |
|
|
||||||
| CT_ECO_Shaded_relief_2023 | CT ECO Shaded Relief (2023) | elevation | | Connecticut Environmental Conditions Online |
|
|
||||||
| MetroCOG_Ortho_2020 | MetroCOG Orthoimagery (2020) | photo | | Connecticut Metropolitan Council of Governments |
|
|
||||||
| DC_From_Above_Ortho_2019 | DC From Above Orthophoto 2019 | historicphoto | | OCTO, DCGIS |
|
|
||||||
| DC_From_Above_Ortho_2021 | DC From Above Orthophoto 2021 | historicphoto | | OCTO, DCGIS |
|
|
||||||
| DC_From_Above_Ortho_2023 | DC From Above Orthophoto 2023 | photo | ⭐ | OCTO, DCGIS |
|
|
||||||
| Delaware2012Orthophotography | Delaware 2012 Orthophotography | historicphoto | | Digital Aerial Solutions, LLC, FirstMap |
|
|
||||||
| DE_Orthophotography_2017_NC | Delaware 2017 Orthophotography (Natural Color) | historicphoto | | Surdex Corp, FirstMap |
|
|
||||||
| Delaware_FirstMap_2021 | Delaware FirstMap 2021 | historicphoto | | Hexagon, FirstMap |
|
|
||||||
| Delaware_FirstMap_2022 | Delaware FirstMap 2022 | photo | ⭐ | Sanborn Map Company, FirstMap |
|
|
||||||
| Delaware_Parks_2022 | Delaware Parks 2022 | photo | | Sanborn Map Company, FirstMap |
|
|
||||||
| Alachua_Ortho_2020 | Alachua County Orthoimagery (2020) | historicphoto | | Alachua County Property Appraiser’s Office |
|
|
||||||
| Alachua_Ortho_2023 | Alachua County Orthoimagery (2023) | photo | | Alachua County Property Appraiser’s Office |
|
|
||||||
| Baker_Ortho_2020 | Baker County Orthoimagery (2020) | photo | | Baker County Property Appraiser’s Office |
|
|
||||||
| Brevard_Ortho_2021 | Brevard County Orthoimagery (2021) | historicphoto | | Brevard County Board of County Commissioners |
|
|
||||||
| Brevard_Ortho_2022 | Brevard County Orthoimagery (2022) | historicphoto | | Brevard County Board of County Commissioners |
|
|
||||||
| Brevard_Ortho_2023 | Brevard County Orthoimagery (2023) | historicphoto | | Brevard County Board of County Commissioners |
|
|
||||||
| Brevard_Ortho_2024 | Brevard County Orthoimagery (2024) | photo | | Brevard County Board of County Commissioners |
|
|
||||||
| Broward_Ortho_2021 | Broward County Orthoimagery (2021) | historicphoto | | Broward County Property Appraiser’s Office |
|
|
||||||
| Broward_Ortho_2022 | Broward County Orthoimagery (2022) | historicphoto | | Broward County Property Appraiser’s Office |
|
|
||||||
| Broward_Ortho_2023 | Broward County Orthoimagery (2023) | historicphoto | | Broward County Property Appraiser’s Office |
|
|
||||||
| Broward_Ortho_2024 | Broward County Orthoimagery (2024) | photo | | Broward County Property Appraiser’s Office |
|
|
||||||
| Charlotte_Ortho_2020 | Charlotte County Orthoimagery (2020) | photo | | Charlotte County Geographic Information Systems |
|
|
||||||
| Charlotte_Ortho_2022 | Charlotte County Orthoimagery (2022) | historicphoto | | Charlotte County Geographic Information Systems |
|
|
||||||
| Charlotte_Ortho_2023 | Charlotte County Orthoimagery (2023) | historicphoto | | Charlotte County Geographic Information Systems |
|
|
||||||
| Charlotte_Ortho_2024 | Charlotte County Orthoimagery (2024) | historicphoto | | Charlotte County Geographic Information Systems |
|
|
||||||
| Charlotte_Ortho_2025 | Charlotte County Orthoimagery (2025) | historicphoto | | Charlotte County Geographic Information Systems |
|
|
||||||
| Citrus_Ortho_2020 | Citrus County Orthoimagery (2020) | historicphoto | | Citrus County Property Appraiser's Office |
|
|
||||||
| Citrus_Ortho_2023 | Citrus County Orthoimagery (2023) | photo | | Citrus County Property Appraiser's Office |
|
|
||||||
| Collier_Ortho_2022 | Collier County Orthoimagery (2022) | historicphoto | | Collier County Information Technology GIS Team |
|
|
||||||
| Collier_Ortho_Latest | Collier County Orthoimagery (Latest) | photo | | Collier County Information Technology GIS Team |
|
|
||||||
| Duval_Ortho_2023 | JaxGIS Duval Orthoimagery (2023) | photo | | JaxGIS |
|
|
||||||
| Escambia_Ortho_2019 | Escambia County Orthoimagery (2019) | historicphoto | | Florida Department of Transportation |
|
|
||||||
| Escambia_Ortho_2022 | Escambia County Orthoimagery (2022) | photo | | Florida Department of Transportation |
|
|
||||||
| Florida_DEP_Ortho_2020 | Florida DEP Orthoimagery Composite (2020) | historicphoto | | Florida Department of Environmental Protection |
|
|
||||||
| Florida_DEP_Ortho_2021 | Florida DEP Orthoimagery Composite (2021) | photo | | Florida Department of Environmental Protection |
|
|
||||||
| Hillsborough_Ortho_2023 | Hillsborough County Orthoimagery (2023) | photo | | Hillsborough County Zoning Information & Counseling |
|
|
||||||
| Lee_Ortho_2021 | Lee County Orthoimagery (2021) | historicphoto | | Lee County GIS |
|
|
||||||
| Lee_Ortho_2022_Q1 | Lee County Orthoimagery (2022 Q1) | historicphoto | | Lee County GIS |
|
|
||||||
| Lee_Ortho_2022_Q4 | Lee County Orthoimagery (2022 Q4) | historicphoto | | Lee County GIS |
|
|
||||||
| Lee_Ortho_2023 | Lee County Orthoimagery (2023) | historicphoto | | Lee County GIS |
|
|
||||||
| Lee_Ortho_2024 | Lee County Orthoimagery (2024) | photo | | Lee County GIS |
|
|
||||||
| Leon_Ortho_2022_CIR | Tallahassee - Leon County Orthoimagery (2022 CIR) | historicphoto | | Tallahassee - Leon County GIS, Leon County Property Appraiser’s Office, Leon County Board of County Commissioners |
|
|
||||||
| Leon_Ortho_2022_RGB | Tallahassee - Leon County Orthoimagery (2022 RGB) | historicphoto | | Tallahassee - Leon County GIS, Leon County Property Appraiser’s Office, Leon County Board of County Commissioners |
|
|
||||||
| Leon_Ortho_2024_CIR | Tallahassee - Leon County Orthoimagery (2024 CIR) | photo | | Tallahassee - Leon County GIS, Leon County Property Appraiser’s Office, Leon County Board of County Commissioners |
|
|
||||||
| Leon_Ortho_2024_RGB | Tallahassee - Leon County Orthoimagery (2024 RGB) | photo | | Tallahassee - Leon County GIS, Leon County Property Appraiser’s Office, Leon County Board of County Commissioners |
|
|
||||||
| Manatee_Ortho_2021 | Manatee County Orthoimagery (2021) | historicphoto | | Manatee County GIS |
|
|
||||||
| Manatee_Ortho_2022 | Manatee County Orthoimagery (2022) | historicphoto | | Manatee County GIS |
|
|
||||||
| Manatee_Ortho_2023_CIR | Manatee County Orthoimagery Infrared (2023) | historicphoto | | Manatee County GIS |
|
|
||||||
| Manatee_Ortho_2023_RGB | Manatee County Orthoimagery (2023) | historicphoto | | Manatee County GIS |
|
|
||||||
| Manatee_Ortho_Latest | Manatee County Orthoimagery (Latest) | photo | | Manatee County GIS |
|
|
||||||
| Marco_Island_FL_Ortho_2023 | City of Marco Island Orthoimagery (2023) | historicphoto | | Collier County Property Appraiser’s Office, City of Marco Island |
|
|
||||||
| Marco_Island_FL_Ortho_2024 | City of Marco Island Orthoimagery (2024) | photo | | Collier County Property Appraiser’s Office, City of Marco Island |
|
|
||||||
| Marco_Island_FL_Ortho_Post-Ian_2022 | City of Marco Island Orthoimagery Post-Ian (2022) | historicphoto | | Collier County Property Appraiser’s Office, City of Marco Island |
|
|
||||||
| Marco_Island_FL_Ortho_Pre-Ian_2022 | City of Marco Island Orthoimagery Pre-Ian (2022) | historicphoto | | Collier County Property Appraiser’s Office, City of Marco Island |
|
|
||||||
| Marion_Ortho_2023 | Marion County Orthoimagery (2023) | photo | | Marion County |
|
|
||||||
| Martin_Ortho_2021 | Martin County Orthoimagery (2021) | historicphoto | | Martin County |
|
|
||||||
| Martin_Ortho_2022 | Martin County Orthoimagery (2022) | historicphoto | | Martin County |
|
|
||||||
| Martin_Ortho_2023 | Martin County Orthoimagery (2023) | historicphoto | | Martin County |
|
|
||||||
| Martin_Ortho_2024 | Martin County Orthoimagery (2024) | photo | | Martin County |
|
|
||||||
| Miami-Dade_Ortho_2021 | Miami-Dade County Orthoimagery (2021) | historicphoto | | Miami-Dade County |
|
|
||||||
| Miami-Dade_Ortho_Latest | Miami-Dade County Orthoimagery (Latest) | photo | | Miami-Dade County |
|
|
||||||
| Monroe_Ortho_2023 | Monroe County Orthoimagery (2023) | historicphoto | | Monroe County |
|
|
||||||
| Monroe_Ortho_2024 | Monroe County Orthoimagery (2024) | photo | | Monroe County |
|
|
||||||
| Naples_FL_Ortho_2020 | City of Naples Orthoimagery (2020) | historicphoto | | Collier County Property Appraiser’s Office, Naples GIS |
|
|
||||||
| Nassau_Ortho_2023 | Nassau County Orthoimagery (2023) | photo | | Nassau County GIS |
|
|
||||||
| Okaloosa_Ortho_2019 | Okaloosa County Orthoimagery (2019) | historicphoto | | Okaloosa County, FL GIS |
|
|
||||||
| Okaloosa_Ortho_2022 | Okaloosa County Orthoimagery (2022) | photo | | Okaloosa County, FL GIS |
|
|
||||||
| Orange_Ortho_Latest | Orange County Orthoimagery (Latest) | photo | | Orange County GIS |
|
|
||||||
| Osceola_Ortho_2022 | Osceola County Orthoimagery (2022) | historicphoto | | Osceola County, FL |
|
|
||||||
| Osceola_Ortho_2023 | Osceola County Orthoimagery (2023) | photo | | Osceola County, FL |
|
|
||||||
| Palm-Beach_Ortho_2021 | Palm Beach County Orthoimagery (2021) | historicphoto | | Palm Beach County |
|
|
||||||
| Palm-Beach_Ortho_2022 | Palm Beach County Orthoimagery (2022) | historicphoto | | Palm Beach County |
|
|
||||||
| Palm-Beach_Ortho_2023 | Palm Beach County Orthoimagery (2023) | photo | | Palm Beach County |
|
|
||||||
| Pinellas_Ortho_2023 | Pinellas County Orthoimagery (2023) | photo | | Pinellas County |
|
|
||||||
| Polk_Ortho_2023 | Polk County Orthoimagery (2023) | photo | | Polk County, FL |
|
|
||||||
| Saint_Johns_Basemap | Saint Johns County Basemap | map | | Saint Johns County GIS |
|
|
||||||
| Saint_Johns_Ortho_2021 | Saint Johns County Natural Color Orthoimagery (2021) | historicphoto | | Saint Johns County GIS |
|
|
||||||
| Saint_Johns_Ortho_2024 | Saint Johns County Natural Color Orthoimagery (2024) | photo | | Saint Johns County GIS |
|
|
||||||
| Saint_Johns_Ortho_CIR_2021 | Saint Johns County Infrared Orthoimagery (2021) | historicphoto | | Saint Johns County GIS |
|
|
||||||
| Saint_Johns_Ortho_CIR_2024 | Saint Johns County Infrared Orthoimagery (2024) | photo | | Saint Johns County GIS |
|
|
||||||
| Saint_Lucie_Ortho_2021 | Saint Lucie County Orthoimagery (2021) | historicphoto | | Saint Lucie County Property Appraiser’s Office |
|
|
||||||
| Saint_Lucie_Ortho_2023 | Saint Lucie County Orthoimagery (2023) | historicphoto | | Saint Lucie County Property Appraiser’s Office |
|
|
||||||
| Saint_Lucie_Ortho_2024 | Saint Lucie County Orthoimagery (2024) | photo | | Saint Lucie County Property Appraiser’s Office |
|
|
||||||
| Santa_Rosa_Ortho_2022 | Santa Rosa County Orthoimagery (2022) | photo | | Santa Rosa County |
|
|
||||||
| Sarasota_Ortho_2024 | Sarasota County Orthoimagery (2024) | photo | | Sarasota County GIS |
|
|
||||||
| Seminole_Ortho_2021 | Seminole County Orthoimagery (2021) | historicphoto | | Seminole County GIS |
|
|
||||||
| Seminole_Ortho_2023 | Seminole County Orthoimagery (2023) | historicphoto | | Seminole County GIS |
|
|
||||||
| Seminole_Ortho_2024 | Seminole County Orthoimagery (2024) | photo | | Seminole County GIS |
|
|
||||||
| Volusia_Ortho_2021 | Volusia County Orthoimagery (2021) | historicphoto | | Volusia County Property Appraiser’s Office |
|
|
||||||
| Volusia_Ortho_2023 | Volusia County Orthoimagery (2023) | historicphoto | | Volusia County Property Appraiser’s Office |
|
|
||||||
| Volusia_Ortho_2024 | Volusia County Orthoimagery (2024) | photo | | Volusia County Property Appraiser’s Office |
|
|
||||||
| ACC_2018 | Athens-Clarke County Imagery (2018) | historicphoto | | Athens-Clarke County GIS |
|
|
||||||
| Maui_2023 | Maui County Orthoimagery (2023) | photo | ⭐ | Maui County GIS |
|
|
||||||
| USDA_Hawaii_2022 | USDA Hawaii Imagery (2022) | photo | | U.S. Department of Agriculture |
|
|
||||||
| USDA_Northwest_Hawaiian_Islands_2022 | USDA Northwest Hawaiian Islands Imagery (2022) | photo | | U.S. Department of Agriculture |
|
|
||||||
| Cook_IL_2020 | Cook County Orthoimagery 2020 | photo | | Cook County GIS |
|
|
||||||
| Cook_IL_2021 | Cook County Orthoimagery 2021 | photo | | Cook County GIS |
|
|
||||||
| Cook_IL_2022 | Cook County Orthoimagery 2022 | photo | | Cook County GIS |
|
|
||||||
| Cook_IL_2023 | Cook County Orthoimagery 2023 | photo | | Cook County GIS |
|
|
||||||
| Cook_IL_2024 | Cook County Orthoimagery 2024 | photo | | Cook County GIS |
|
|
||||||
| IN_2021 | Indiana Statewide Imagery Program (2021) | photo | | Indiana Geographic Information Office |
|
|
||||||
| IndianaMap_Latest | IndianaMap Orthoimagery - Latest Available | photo | | IndianaMap, Indiana Geographic Information Office |
|
|
||||||
| Kansas_NG911_2014 | Kansas NG911 Orthoimagery (2014) | 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 |
|
|
||||||
| KYAPED_Phase_1 | KyFromAbove Aerial Imagery (2012-2014) | historicphoto | | 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-Slope | MassGIS LIDAR Slope | elevation | | MassGIS |
|
|
||||||
| MassGIS_2021_Aerial | MassGIS 2021 Aerial Imagery | photo | | MassGIS |
|
|
||||||
| MassGIS_2023_Aerial | MassGIS 2023 Aerial Imagery | photo | ⭐ | MassGIS |
|
|
||||||
| MassGIS-basemap | MassGIS Basemap | map | | MassGIS |
|
|
||||||
| geodata.md.gov-MD_SixInchImagery | MD Latest 6 Inch Aerial Imagery | photo | ⭐ | DoIT, MD iMap, MDP |
|
|
||||||
| geodata.md.gov-MD_ThreeInchImagery | MD Three Inch Aerial Imagery | photo | | DoIT, MD iMap, MDP |
|
|
||||||
| Maine_2021 | Maine Orthoimagery Program (2021) | photo | | Maine Orthoimagery Program |
|
|
||||||
| Oakland_MI_2020 | Oakland County Orthoimagery (2020) | historicphoto | | Oakland County |
|
|
||||||
| Oakland_MI_2023 | Oakland County Orthoimagery (2023) | photo | | Oakland County |
|
|
||||||
| DCGIS-County-Imagery-2017-Fall-Leaf-Off-6-Inch | Dakota County GIS 2017 Fall Leaf-Off 6-Inch | photo | | Dakota County GIS |
|
|
||||||
| DCGIS-County-Imagery-2019-Spring-Leaf-Off-6-Inch | Dakota County GIS 2019 Spring Leaf-Off 6-Inch | photo | | Dakota County GIS |
|
|
||||||
| Hennepin_Ortho_2020 | Hennepin County Orthoimagery (2020) | historicphoto | | Hennepin County GIS |
|
|
||||||
| Hennepin_Ortho_2021 | Hennepin County Orthoimagery (2021) | historicphoto | | Hennepin County GIS |
|
|
||||||
| Hennepin_Ortho_2022 | Hennepin County Orthoimagery (2022) | historicphoto | | Hennepin County GIS |
|
|
||||||
| Hennepin_Ortho_2023 | Hennepin County Orthoimagery (2023) | historicphoto | | Hennepin County GIS |
|
|
||||||
| Hennepin_Ortho_2024 | Hennepin County Orthoimagery (2024) | photo | | Hennepin County GIS |
|
|
||||||
| Minnesota-Composite-Image-Service | Minnesota Composite Image Service | photo | | MnGeo |
|
|
||||||
| Bozeman_MT_2021 | City of Bozeman Aerial Photography (2021) | historicphoto | | City of Bozeman GIS Department |
|
|
||||||
| Bozeman_MT_2023 | City of Bozeman Aerial Photography (2023) | photo | | City of Bozeman GIS Department |
|
|
||||||
| Mecklenburg_NC_2021 | Mecklenburg County Orthoimagery (2021) | historicphoto | | Mecklenburg County GIS |
|
|
||||||
| Mecklenburg_NC_2022 | Mecklenburg County Orthoimagery (2022) | historicphoto | | Mecklenburg County GIS |
|
|
||||||
| Mecklenburg_NC_2023 | Mecklenburg County Orthoimagery (2023) | historicphoto | | Mecklenburg County GIS |
|
|
||||||
| Mecklenburg_NC_2024 | Mecklenburg County Orthoimagery (2024) | historicphoto | | Mecklenburg County GIS |
|
|
||||||
| Mecklenburg_NC_2025 | Mecklenburg County Orthoimagery (2025) | photo | | Mecklenburg County GIS |
|
|
||||||
| NC_Latest_Ortho_CIR | NC OneMap Latest Orthoimagery (Infrared) | photo | | NCCGIA, NC911 Board |
|
|
||||||
| NC_Latest_Ortho_NDVI | NC OneMap Latest Orthoimagery (NDVI) | photo | | NCCGIA, NC911 Board |
|
|
||||||
| NC_Latest_Ortho_Natural | NC OneMap Latest Orthoimagery (Natural Color) | photo | ⭐ | NCCGIA, NC911 Board |
|
|
||||||
| LiDAR_Bare_Earth_NE_HS_NH_2022 | NH GRANIT LiDAR Hillshade 2022 (Northeast) | elevation | | NH GRANIT |
|
|
||||||
| LiDAR_Bare_Earth_NW_HS_NH_2022 | NH GRANIT LiDAR Hillshade 2022 (Northwest) | elevation | | NH GRANIT |
|
|
||||||
| NH_2021_2022_6in_CIR | NH GRANIT 2021/2022 6-inch Orthophotos (Infrared) | photo | | NH GRANIT |
|
|
||||||
| NH_2021_2022_6in_RGB | NH GRANIT 2021/2022 6-inch Orthophotos (Color) | photo | | NH GRANIT |
|
|
||||||
| DVRPC_2020_BurlingtonNJ | DVRPC Orthoimagery 2020 - Burlington County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
|
||||||
| DVRPC_2020_CamdenNJ | DVRPC Orthoimagery 2020 - Camden County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
|
||||||
| DVRPC_2020_GloucestorNJ | DVRPC Orthoimagery 2020 - Gloucestor County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
|
||||||
| DVRPC_2020_MercerNJ | DVRPC Orthoimagery 2020 - Mercer County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
|
||||||
| img.nj.gov-Infrared2015 | NJ 2015 Aerial Imagery (Infrared) | historicphoto | | NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS) |
|
|
||||||
| NJ_Infrared_2020 | NJGIN Orthoimagery 2020 - Infrared (1ft leaf off) | photo | | NJGIN, NJOGIS |
|
|
||||||
| img.nj.gov-Natural2015 | NJ 2015 Aerial Imagery (Natural Color) | historicphoto | | NJ Office of Information Technology (NJOIT), Office of Geographic Information Systems (OGIS) |
|
|
||||||
| NJ_Natural_2020 | NJGIN Orthoimagery 2020 - Natural (1ft leaf off) | photo | | NJGIN, NJOGIS |
|
|
||||||
| Los_Alamos_1in_2018 | Los Alamos County Orthoimagery 2018 (1in) | historicphoto | | Los Alamos County GIS Services |
|
|
||||||
| Los_Alamos_3in_2018 | Los Alamos County Orthoimagery 2018 (3in) | historicphoto | | Los Alamos County GIS Services |
|
|
||||||
| Los_Alamos_3in_2022 | Los Alamos County Orthoimagery 2022 (3in) | photo | ⭐ | Los Alamos County GIS Services |
|
|
||||||
| Los_Alamos_NAIP_CIR_2022 | Northern New Mexico NAIP 2022 (Infrared) | photo | | Los Alamos County GIS Services |
|
|
||||||
| MRCOG_Ortho_2020 | MRCOG Orthoimagery (2020) | photo | | Mid-Region Council of Governments, Bohannan Huston, Inc. |
|
|
||||||
| San_Juan_NM_2019 | San Juan County Orthoimagery (2019) | historicphoto | | San Juan County GIS |
|
|
||||||
| San_Juan_NM_2021 | San Juan County Orthoimagery (2021) | historicphoto | | San Juan County GIS |
|
|
||||||
| San_Juan_NM_2023 | San Juan County Orthoimagery (2023) | historicphoto | | San Juan County GIS |
|
|
||||||
| San_Juan_NM_2025 | San Juan County Orthoimagery (2025) | photo | ⭐ | San Juan County GIS |
|
|
||||||
| Cattaraugus_NY_2020 | Cattaraugus County Orthoimagery (2020) | historicphoto | | Cattaraugus County Real Property Services |
|
|
||||||
| Cattaraugus_NY_2021 | Cattaraugus County Orthoimagery (2021) | historicphoto | | Cattaraugus County Real Property Services |
|
|
||||||
| Cattaraugus_NY_2023 | Cattaraugus County Orthoimagery (2023) | photo | | Cattaraugus County Real Property Services |
|
|
||||||
| NYSDOP_Latest | NYSDOP Latest Orthoimagery (Natural Color) | photo | | New York State Statewide Digital Orthoimagery Program |
|
|
||||||
| NYSDOP_Latest_CIR | NYSDOP Latest Orthoimagery (Infrared) | photo | | New York State Statewide Digital Orthoimagery Program |
|
|
||||||
| NYS_Statewide_Hillshade | NYS Hillshade | elevation | | New York State Information Technology Services Geospatial Services |
|
|
||||||
| Allen_OH_2021 | Allen County Orthoimagery (2021) | photo | | Allen County, State of Ohio |
|
|
||||||
| Butler_OH_2023 | Butler County Orthoimagery (2023) | photo | | Butler County, State of Ohio |
|
|
||||||
| City_of_Dublin_OH_2023 | City of Dublin Orthoimagery (2023) | photo | | City of Dublin |
|
|
||||||
| City_of_Fairfield_OH_2020 | City of Fairfield Orthoimagery (2020) | historicphoto | | City of Fairfield, State of Ohio |
|
|
||||||
| City_of_Fairfield_OH_2023 | City of Fairfield Orthoimagery (2023) | photo | | City of Fairfield, State of Ohio |
|
|
||||||
| City_of_Hilliard_OH_2023 | City of Hilliard Orthoimagery (2023) | photo | | City of Hilliard |
|
|
||||||
| City_of_Mansfield_OH_2022 | City of Mansfield Orthoimagery (2022) | photo | | City of Mansfield, State of Ohio |
|
|
||||||
| City_of_Wooster_OH_2021 | City of Wooster Orthoimagery (2022) | photo | | City of Wooster, State of Ohio |
|
|
||||||
| Cuyahoga_OH_2023 | Cuyahoga County Orthoimagery (2023) | photo | | Cuyahoga County, State of Ohio |
|
|
||||||
| Delaware_OH_2021 | Delaware County Orthoimagery (2021) | historicphoto | | Delaware County, State of Ohio |
|
|
||||||
| Delaware_OH_2022 | Delaware County Orthoimagery (2022) | historicphoto | | Delaware County, State of Ohio |
|
|
||||||
| Delaware_OH_2023 | Delaware County Orthoimagery (2023) | photo | | Delaware County, State of Ohio |
|
|
||||||
| Franklin_OH_2021 | Franklin County Orthoimagery (2021) | photo | | Franklin County Auditor, State of Ohio |
|
|
||||||
| Franklin_OH_2023 | Franklin County Orthoimagery (2023) | photo | | Franklin County Auditor, State of Ohio |
|
|
||||||
| Greene_OH_2022 | Greene County Orthoimagery (2022) | historicphoto | | Greene County, State of Ohio |
|
|
||||||
| Greene_OH_2023 | Greene County Orthoimagery (2023) | historicphoto | | Greene County, State of Ohio |
|
|
||||||
| Greene_OH_2024 | Greene County Orthoimagery (2024) | photo | | Greene County, State of Ohio |
|
|
||||||
| Licking_OH_2023 | Licking County Orthoimagery (2023) | photo | | Licking County, State of Ohio |
|
|
||||||
| Lorain_OH_2024 | Lorain County Orthoimagery (2024) | photo | ⭐ | Lorain County, State of Ohio |
|
|
||||||
| Lucas_OH_2023 | Lucas County Orthoimagery (2023) | photo | | Lucas County, State of Ohio |
|
|
||||||
| Mercer_OH_2021 | Mercer County Orthoimagery (2021) | photo | | Mercer County, State of Ohio |
|
|
||||||
| Miami_OH_2023 | Miami County Orthoimagery (2023) | photo | | Miami 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 |
|
|
||||||
| OSIP | Ohio Statewide Imagery Program | photo | | Ohio Statewide Imagery Program |
|
|
||||||
| 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 |
|
|
||||||
| Seneca_OH_2023 | Seneca County Orthoimagery (2023) | photo | | Seneca County, State of Ohio |
|
|
||||||
| Wood_OH_2020 | Wood County Orthoimagery (2020) | historicphoto | | Wood County, State of Ohio |
|
|
||||||
| Wood_OH_2023 | Wood County Orthoimagery (2023) | photo | | Wood County, State of Ohio |
|
|
||||||
| Crook-2023 | Crook County Orthoimagery (2023) | photo | ⭐ | Crook County GIS |
|
|
||||||
| DOGAMI-Lidar | Oregon DOGAMI Lidar | elevation | | Oregon Department of Geology and Mineral Industries |
|
|
||||||
| Oregon-OSIP-2022 | Oregon Statewide Imagery Program (2022) | photo | | State of Oregon |
|
|
||||||
| PortlandMaps | PortlandMaps Basemap Color Complete | map | | City of Portland, Oregon |
|
|
||||||
| PortlandMapsAerial | PortlandMaps Aerial Photos Latest | photo | | City of Portland, Oregon |
|
|
||||||
| DVRPC_2020_BucksPA | DVRPC Orthoimagery 2020 - Bucks County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
|
||||||
| DVRPC_2020_ChesterPA | DVRPC Orthoimagery 2020 - Chester County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
|
||||||
| DVRPC_2020_DelawarePA | DVRPC Orthoimagery 2020 - Delaware County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
|
||||||
| DVRPC_2020_MontgomeryPA | DVRPC Orthoimagery 2020 - Montgomery County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
|
||||||
| DVRPC_2020_PhiladelphiaPA | DVRPC Orthoimagery 2020 - Philadelphia County (1ft) | photo | | Delaware Valley Regional Planning Commission |
|
|
||||||
| PEMA_Orthoimagery | PEMA Orthoimagery (2018-2020) | historicphoto | | Pennsylvania Emergency Management Agency |
|
|
||||||
| PEMA_Orthoimagery_2023 | PEMA Orthoimagery Cycle 2 (2021-2023) | photo | | Pennsylvania Emergency Management Agency |
|
|
||||||
| Philadelphia_Ortho_2020 | Philadelphia Orthoimagery 2020 (3in) | historicphoto | | City of Philadelphia |
|
|
||||||
| Philadelphia_Ortho_2022 | Philadelphia Orthoimagery 2022 (2in) | historicphoto | | City of Philadelphia |
|
|
||||||
| Philadelphia_Ortho_2023 | Philadelphia Orthoimagery 2023 | photo | ⭐ | City of Philadelphia |
|
|
||||||
| RIGIS_Aerial_Photo_21f | Rhode Island Aerial Photo (Fall 2021) | historicphoto | | RIGIS |
|
|
||||||
| RIGIS_Aerial_Photo_22s | Rhode Island Aerial Photo (Spring 2022) | 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 |
|
|
||||||
| TNMap_Orthoimagery_Latest | TNMap Orthoimagery Latest | photo | | Tennessee Imagery Program |
|
|
||||||
| 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 |
|
|
||||||
| 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 |
|
|
||||||
| 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 |
|
|
||||||
| lubbock_2016_wms | TX: City of Lubbock Imagery 2015 | photo | | Strategic Mapping Program (StratMap). City of Lubbock Imagery, 2015-03-22 |
|
|
||||||
| dallas_fort_worth_2016_wms | TX: Dallas and Fort Worth Imagery 2015 | photo | | Strategic Mapping Program (StratMap). Dallas and Fort Worth Imagery, 2015-01-01 |
|
|
||||||
| san_antonio_river_2016_wms | TX: San Antonio River Authority Imagery 2016 | photo | | Strategic Mapping Program (StratMap). San Antonio River Authority Imagery, 2016-08-01 |
|
|
||||||
| smith_county_2019_wms | TX: Smith County Imagery 2019 | photo | ⭐ | Smith County (Smith). Smith County Imagery, 2019-12-11 |
|
|
||||||
| StratMap20_NC_6in_Balmorhea_Davis_Mountians | StratMap Balmorhea & Davis Mountain State Parks Imagery (2020) | photo | | Strategic Mapping Program (StratMap). Balmorhea & Davis Mountain State Parks Imagery/Lidar |
|
|
||||||
| StratMap21_NCCIR_CapArea_Brazos_Kerr | StratMap CapArea, Brazos & Kerr Imagery (Natural Color 2021) | photo | ⭐ | Strategic Mapping Program (StratMap). CapArea, Brazos & Kerr Imagery |
|
|
||||||
| Stratmap20_NCCIR_CapArea_McLennan | StratMap CapArea & McLennan Imagery (Natural Color 2020) | photo | | Strategic Mapping Program (StratMap). CapArea & McLennan Imagery |
|
|
||||||
| Fairfax_VA_2024 | Fairfax County Orthoimagery (2024) | photo | ⭐ | Government of Fairfax County, Virginia |
|
|
||||||
| Henrico_VA_2024 | Henrico County Aerial Imagery (2024) | photo | | Henrico County Government |
|
|
||||||
| VBMPImagery_Most_Recent | VBMP Most Recent Imagery | photo | | Virginia Geographic Information Network, Commonwealth of Virginia |
|
|
||||||
| VCGI_LiDAR_DEM_Hillshade | VCGI LiDAR - DEM Hillshade | elevation | | Vermont Center for Geographic Information |
|
|
||||||
| VCGI_LiDAR_DSM_Hillshade | VCGI LiDAR - DSM Hillshade | elevation | | Vermont Center for Geographic Information |
|
|
||||||
| VT_Best_CIR | VIP Orthoimagery - Infrared | photo | | Vermont Imagery Program, Vermont Center for Geographic Information |
|
|
||||||
| VT_Best_CLR | VIP Orthoimagery - Best of Color | photo | | Vermont Imagery Program, Vermont Center for Geographic Information |
|
|
||||||
| King_WA_2019 | King County Orthoimagery (2019) | historicphoto | | King County Geographic Information System |
|
|
||||||
| King_WA_2021 | King County Orthoimagery (2021) | historicphoto | | King County Geographic Information System |
|
|
||||||
| King_WA_2023 | King County Orthoimagery (2023) | photo | | King County Geographic Information System |
|
|
||||||
| Suan_Juan_WA_2019 | Suan Juan County Aerials (2019) | historicphoto | | San Juan County GIS |
|
|
||||||
| Suan_Juan_WA_2022 | Suan Juan County Aerials (2022) | historicphoto | | San Juan County GIS |
|
|
||||||
| Suan_Juan_WA_2023 | Suan Juan County Aerials (2023) | photo | ⭐ | San Juan County GIS |
|
|
||||||
| Suan_Juan_WA_Basemap | Suan Juan County Basemap | map | | San Juan County GIS |
|
|
||||||
| Snohomish_WA_2020 | Snohomish County Orthoimagery (2020) | historicphoto | | Snohomish County GIS |
|
|
||||||
| Snohomish_WA_2022 | Snohomish County Orthoimagery (2022) | historicphoto | | Snohomish County GIS |
|
|
||||||
| Snohomish_WA_2024 | Snohomish County Orthoimagery (2024) | photo | | Snohomish County GIS |
|
|
||||||
| WISC_DNR_Ortho_Composite | Wisconsin Leaf-Off Orthophotography (DNR) | photo | | Wisconsin Regional Orthoimagery Consortium, Southeastern Wisconsin Regional Planning Commission, Wisconsin Department of Natural Resources |
|
|
||||||
| Monongalia_WV_2022 | Monongalia County 2022 Aerial Imagery | historicphoto | | Monongalia Morgantown Area Geospatial Information Consortium |
|
|
||||||
| Monongalia_WV_2023 | Monongalia County 2023 Aerial Imagery | photo | ⭐ | Monongalia Morgantown Area Geospatial Information Consortium |
|
|
||||||
| USDA_American_Samoa_2022 | USDA American Samoa Imagery (2022) | photo | | U.S. Department of Agriculture |
|
|
||||||
| ACT202305 | ACTmapi Imagery May 2023 | photo | | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
|
||||||
| ACT202309 | ACTmapi Imagery Sep 2023 | photo | | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
|
||||||
| ACT202311 | ACTmapi Imagery Nov 2023 | photo | | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
|
||||||
| ACT202402 | ACTmapi Imagery Feb 2024 | photo | | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
|
||||||
| ACT202409 | ACTmapi Imagery Sep 2024 | photo | | Aerial Imagery from ACTMapi ©ACT Government and MetroMap |
|
|
||||||
| ACT202503 | ACTmapi Imagery Mar 2025 | photo | ⭐ | Aerial Imagery from ACTMapi ©ACT Government and Aerometrex |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1943 | NSW DCS SS HAPE Imagery 1943 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1944 | NSW DCS SS HAPE Imagery 1944 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1947 | NSW DCS SS HAPE Imagery 1947 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1955 | NSW DCS SS HAPE Imagery 1955 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1965 | NSW DCS SS HAPE Imagery 1965 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1966 | NSW DCS SS HAPE Imagery 1966 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1969 | NSW DCS SS HAPE Imagery 1969 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1970 | NSW DCS SS HAPE Imagery 1970 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1971 | NSW DCS SS HAPE Imagery 1971 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1972 | NSW DCS SS HAPE Imagery 1972 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1975 | NSW DCS SS HAPE Imagery 1975 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1976 | NSW DCS SS HAPE Imagery 1976 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1978 | NSW DCS SS HAPE Imagery 1978 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1980 | NSW DCS SS HAPE Imagery 1980 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1982 | NSW DCS SS HAPE Imagery 1982 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1983 | NSW DCS SS HAPE Imagery 1983 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1984 | NSW DCS SS HAPE Imagery 1984 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1986 | NSW DCS SS HAPE Imagery 1986 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1989 | NSW DCS SS HAPE Imagery 1989 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1990 | NSW DCS SS HAPE Imagery 1990 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1991 | NSW DCS SS HAPE Imagery 1991 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1993 | NSW DCS SS HAPE Imagery 1993 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1994 | NSW DCS SS HAPE Imagery 1994 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1996 | NSW DCS SS HAPE Imagery 1996 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_1998 | NSW DCS SS HAPE Imagery 1998 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_2001 | NSW DCS SS HAPE Imagery 2001 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_2004 | NSW DCS SS HAPE Imagery 2004 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_2005 | NSW DCS SS HAPE Imagery 2005 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_2006 | NSW DCS SS HAPE Imagery 2006 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_DCS_SS_HAPE_Imagery_2013 | NSW DCS SS HAPE Imagery 2013 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| Maxar_19-20_Australian_Bushfires_PreEvent | Maxar 2019-2020 Australian Bushfires Pre-event | photo | | ©2020 DigitalGlobe |
|
|
||||||
| NSW_LPI_BaseMap | DCS NSW Base Map | map | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| NSW_LPI_Imagery | DCS NSW Imagery | photo | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_2021_Bourke_flood_2021_04_15cm | DCS NSW Floods 2021 Bourke flood 2021 04 15cm | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_2021_Brewarrina_flood_2021_04_14_15cm | DCS NSW Floods 2021 Brewarrina flood 2021 04 14 15cm | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_2021_Hawkesbury-Nepean_Floods_Central_Sector_2021_03_15cm_RGB | DCS NSW Floods 2021 Hawkesbury-Nepean Floods Central Sector 2021 03 15cm RGB | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_2021_Hawkesbury-Nepean_Floods_West_Sector_2021_03_15cm | DCS NSW Floods 2021 Hawkesbury-Nepean Floods West Sector 2021 03 15cm | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_2021_Hawkesbury-nepean_floods_eastern_sector_2021_03_25cm | DCS NSW Floods 2021 Hawkesbury-nepean floods eastern sector 2021 03 25cm | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_2021_Hawkesbury-nepean_floods_southern_sector_2021_03_16cm | DCS NSW Floods 2021 Hawkesbury-nepean floods southern sector 2021 03 16cm | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_2021_Lower_clarence_flood_2021_03_16cm | DCS NSW Floods 2021 Lower clarence flood 2021 03 16cm | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_2021_Mogil_Mogil_RGB_2021_04_10_Flood_15cm_Rapid_ortho | DCS NSW Floods 2021 Mogil Mogil RGB 2021 04 10 Flood 15cm Rapid ortho | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_2021_Mungindi_RGB_2021_04_10_Flood_15cm_Rapid_ortho | DCS NSW Floods 2021 Mungindi RGB 2021 04 10 Flood 15cm Rapid ortho | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_2021_Walgett_flood_2021_04_14_15cm | DCS NSW Floods 2021 Walgett flood 2021 04 14 15cm | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Historical_Forbes_flood_2012_03_20cm_bgrn | DCS NSW Floods Historical Forbes 2012-03 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Historical_forbesflood_2016_10_20cm_bgrn | DCS NSW Floods Historical Forbes 2016-10 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Mar_2022_Grafton_Flood_2022_03_02_10cm_P3 | DCS NSW Floods Mar 2022 Grafton Flood 2022 03 02 10cm P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Mar_2022_Hawkesbury-Nepean_Flood_2022_03_09_13cm_P3 | DCS NSW Floods Mar 2022 Hawkesbury-Nepean Flood 2022 03 09 13cm P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Mar_2022_Lismore_Flood_2022_03_02_8cm_P3 | DCS NSW Floods Mar 2022 Lismore Flood 2022 03 02 8cm P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Mar_2022_Ulmarra_Flood_2022_03_03_8cm_p3 | DCS NSW Floods Mar 2022 Ulmarra Flood 2022 03 03 8cm p3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Mar_2022_Wisemans_Ferry_2022_03_13cm_P3 | DCS NSW Floods Mar 2022 Wisemans Ferry 2022 03 13cm P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Mar_2022_singleton_flood_2022_03_10_10cm_p3 | DCS NSW Floods Mar 2022 singleton flood 2022 03 10 10cm p3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2021_Condobolin_Flood_2021_11_13cm_P3 | DCS NSW Floods Nov 2021 Condobolin Flood 2021 11 13cm P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2021_Forbes_Flood_East_2021_11_16_15cm_P3 | DCS NSW Floods Nov 2021 Forbes Flood East 2021 11 16 15cm P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2021_Forbes_Flood_West_2021_11_17_15cm_P3 | DCS NSW Floods Nov 2021 Forbes Flood West 2021 11 17 15cm P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2021_Lake_Cowal_North_Flood_2021_12_36cm_P3 | DCS NSW Floods Nov 2021 Lake Cowal North Flood 2021 12 36cm P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2021_Nanami_Flood_East_2021_11_15_9cm_P3 | DCS NSW Floods Nov 2021 Nanami Flood East 2021 11 15 9cm P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2021_Nanami_Flood_West_2021_11_15_9cm_P3 | DCS NSW Floods Nov 2021 Nanami Flood West 2021 11 15 9cm P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2021_humbug_creek_flood_2021_12_16cm_p3 | DCS NSW Floods Nov 2021 humbug creek flood 2021 12 16cm p3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2021_mirrool_creek_flood_2021_11_16cm_p3 | DCS NSW Floods Nov 2021 mirrool creek flood 2021 11 16cm p3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Balranald_Flood_02122022_15cm_RGBN_P3 | DCS NSW Floods Nov 2022 Balranald Flood 02122022 15cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Bathurst_Flood_14112022_10cm_BGRN_P3 | DCS NSW Floods Nov 2022 Bathurst Flood 14112022 10cm BGRN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Billabong_Creek_Flood_26112022_15cm_RGBN_P3 | DCS NSW Floods Nov 2022 Billabong Creek Flood 26112022 15cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Condobolin_Flood_22112022_10cm_RGBN_P3 | DCS NSW Floods Nov 2022 Condobolin Flood 22112022 10cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Coreen_Flood_17112022_10cm_RGBN_P3 | DCS NSW Floods Nov 2022 Coreen Flood 17112022 10cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Corowa_Yarrawonga_Flood_25112022_15cm_RGBN_P3 | DCS NSW Floods Nov 2022 Corowa Yarrawonga Flood 25112022 15cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Derriwong_Flood_22112022_10cm_P3_RGBN_P3 | DCS NSW Floods Nov 2022 Derriwong Flood 22112022 10cm P3 RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Forbes_Flood_05112022_10cm_RGBN_P3 | DCS NSW Floods Nov 2022 Forbes Flood 05112022 10cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Lake-Cargelligo_Euabolong_Flood_04122022_15cm_RGBN_P3 | DCS NSW Floods Nov 2022 Lake-Cargelligo Euabolong Flood 04122022 15cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Murray_Wakool_Flood_01122022_15cm_RGBN_P3 | DCS NSW Floods Nov 2022 Murray Wakool Flood 01122022 15cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Swan_Hill_Flood_25112022_15cm_RGBN_P3 | DCS NSW Floods Nov 2022 Swan-Hill Flood 25112022 15cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Tooleybuc_Flood_01122022_15cm_RGBN_P3 | DCS NSW Floods Nov 2022 Tooleybuc Flood 01122022 15cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| DCS_NSW_Floods_Nov_2022_Wentworth_Flood_03122022_15cm_RGBN_P3 | DCS NSW Floods Nov 2022 Wentworth Flood 03122022 15cm RGBN P3 | historicphoto | | © State of New South Wales (Spatial Services, a business unit of the Department of Customer Service NSW). For current information go to spatial.nsw.gov.au. |
|
|
||||||
| ARA_Bushfires_2020 | ARA Bushfires 2020 | photo | ⭐ | ARA - Airborne Research Australia |
|
|
||||||
| CityOfLaunceston_2011 | Launceston OrthoPhoto 2011 | historicphoto | | © City of Launceston |
|
|
||||||
| CityOfLaunceston_2013 | Launceston OrthoPhoto 2013 | photo | | © City of Launceston |
|
|
||||||
| City_of_Melbourne_Feb_2019 | City of Melbourne Feb 2019 | photo | | City of Melbourne |
|
|
||||||
| City_of_Melbourne_May_2018 | City of Melbourne May 2018 | historicphoto | | City of Melbourne |
|
|
||||||
| City_of_Melbourne_May_2020 | City of Melbourne May 2020 | photo | ⭐ | City of Melbourne |
|
|
||||||
| USDA_Micronesia_2023 | USDA Micronesia Imagery (2023) | photo | | U.S. Department of Agriculture |
|
|
||||||
| USDA_Guam_2022 | USDA Guam Imagery (2022) | photo | | U.S. Department of Agriculture |
|
|
||||||
| USDA_Marshall_Islands_2023 | USDA Marshall Islands Imagery (2023) | photo | | U.S. Department of Agriculture |
|
|
||||||
| USDA_CNMI_2022 | USDA Northern Mariana Islands Imagery (2022) | photo | | U.S. Department of Agriculture |
|
|
||||||
| Environment_Canterbury_Imagery | Environment Canterbury Imagery | photo | | Environment Canterbury |
|
|
||||||
| LINZ_Cyclone_Gabrielle_Hawkes_Bay | LINZ Cyclone Gabrielle – Hawke's Bay | photo | ⭐ | Sourced from LINZ CC-BY 4.0 |
|
|
||||||
| LINZ_NZ_Aerial_Imagery | LINZ NZ Aerial Imagery | photo | ⭐ | Sourced from LINZ CC-BY 4.0 |
|
|
||||||
| LINZ_Auckland_2017 | LINZ Auckland 2017 | historicphoto | | Sourced from LINZ CC-BY 4.0 |
|
|
||||||
| LINZ_Auckland_2023 | LINZ Auckland 2023 | photo | ⭐ | 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_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_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 |
|
|
||||||
| ign-argenmap-gray | IGN Argenmap gris | map | | Instituto Geográfico Nacional de la República Argentina |
|
|
||||||
| ign-argenmap | IGN Argenmap | map | | Instituto Geográfico Nacional de la República Argentina |
|
|
||||||
| ign-uav-orthophotos-wms | IGN ortofotos VANT | photo | | Instituto Geográfico Nacional de la República Argentina |
|
|
||||||
| ign-uav-mosaic | IGN ortofotos VANT | photo | | Instituto Geográfico Nacional de la República Argentina |
|
|
||||||
| ign-orthophotos-mosaic | IGN ortofotos | photo | | Instituto Geográfico Nacional de la República Argentina |
|
|
||||||
| ign-orthophotos-wms | IGN ortofotos | photo | | Instituto Geográfico Nacional de la República Argentina |
|
|
||||||
| ign-wms | IGN capas vectoriales | map | | Instituto Geográfico Nacional de la República Argentina |
|
|
||||||
| Secretaria-de-Energia-wms | Secretaría de Energía | other | | Secretaría de Energía |
|
|
||||||
| BH_Ortofoto_2015 | Belo Horizonte Ortofoto 2015 | historicphoto | ⭐ | Prefeitura de Belo Horizonte |
|
|
||||||
| BDGEx_ctm_multi | Cartas Topográficas do Exército Brasileiro | map | | BDGEx |
|
|
||||||
| Curitiba_Ortofoto_2019 | Curitiba Ortofoto 2019 | photo | ⭐ | Instituto de Pesquisa e Planejamento Urbano de Curitiba |
|
|
||||||
| Dourados_Ortofotos | Dourados Ortofotos | photo | ⭐ | Prefeitura Municipal de Dourados - GeoDourados |
|
|
||||||
| Fortaleza_Ortofoto_2010 | Fortaleza Ortofoto 2010 | historicphoto | | Prefeitura Municipal de Fortaleza |
|
|
||||||
| Fortaleza_Ortofoto_2016 | Fortaleza Ortofoto 2016 | photo | ⭐ | Prefeitura Municipal de Fortaleza |
|
|
||||||
| Fortaleza_Base_Map | Fortaleza Base Cartográfica | map | | Prefeitura Municipal de Fortaleza |
|
|
||||||
| GeoPortal_DF_2015 | GeoPortal DF 2015 | historicphoto | | GeoPortal DF |
|
|
||||||
| GeoPortal_DF_2016 | GeoPortal DF 2016 | historicphoto | | GeoPortal DF |
|
|
||||||
| GeoPortal_DF_2019 | GeoPortal DF 2019 | historicphoto | ⭐ | GeoPortal DF |
|
|
||||||
| GeoPortal_DF_2021_50cm | GeoPortal DF 2021 50 cm | photo | | GeoPortal DF |
|
|
||||||
| rio2019 | Rio Mosaico 2019 | photo | ⭐ | Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro |
|
|
||||||
| rio2022 | Rio Mosaico 2022 | photo | | Instituto Pereira Passos - Prefeitura da Cidade do Rio de Janeiro |
|
|
||||||
| jaragua-do-sul-2020 | Jaraguá do Sul Ortomosaico 2020 | photo | | Prefeitura de Jaraguá do Sul, SC |
|
|
||||||
| UY-2019-orthophotos | Uruguay IDE.uy Ortofotos 2019 | photo | ⭐ | AGESIC - Agencia de Gobierno Electrónico y Sociedad de la Información y del Conocimiento |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [./public/assets/data/editor-layer-index.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/./public/assets/data/editor-layer-index.json)
|
|
||||||
Binary file not shown.
|
|
@ -1,24 +1,30 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# Hotkeys
|
Hotkeys
|
||||||
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Table of contents
|
||||||
|
|
||||||
|
1. [Hotkeys](#)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
MapComplete supports the following keys:
|
MapComplete supports the following keys:
|
||||||
|
|
||||||
| Key combination | Action |
|
|
||||||
-----|----- |
|
|
||||||
| `B` | Opens the background layers panel |
|
|
||||||
| `F` | Open the favourites page |
|
|
||||||
| `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 |
|
|
||||||
| `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) |
|
|
||||||
| `P` | Set the background to aerial or satellite imagery. Toggles between the two best, available layers |
|
|
||||||
| `S` | Opens the POI-layers and filter panel |
|
|
||||||
| `shift+M` | Set the background to a map from external sources. Toggles between the two best, available layers |
|
|
||||||
| `shift+O` | Set the background layer to on OpenStreetMap-based map (or disable the background raster layer) |
|
|
||||||
| `shift+P` | Set the background to aerial or satellite imagery. Toggles between the two best, available layers |
|
|
||||||
| `shift+T` | Toggle translation mode on or off |
|
|
||||||
|
|
||||||
|
|
||||||
|
Key combination | Action
|
||||||
|
----------------- | --------
|
||||||
|
`B` | Opens the Background, layers and filters panel
|
||||||
|
`Escape` | Close the sidebar
|
||||||
|
`L` | Pan the map to the current location or zoom the map to the current location. Requests geopermission
|
||||||
|
`M` | Select a background layer of category map
|
||||||
|
`O` | Select a background layer of category osmbasedmap
|
||||||
|
`P` | Select a background layer of category photo
|
||||||
|
`ctrl+F` | Select the search bar to search locations
|
||||||
|
`shift+O` | Sets the background layer to OpenStreetMap-carto
|
||||||
|
|
||||||
This document is autogenerated from [src/UI/Base/Hotkeys.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/UI/Base/Hotkeys.ts)
|
|
||||||
|
This document is autogenerated from
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,12 @@
|
||||||
# Integrating MapRoulette
|
# Integrating MapRoulette
|
||||||
|
|
||||||
## Importing points
|
|
||||||
|
|
||||||
[MapRoulette](https://www.maproulette.org/) is a website which has challenges. A challenge is a collection of _microtasks_, i.e. mapping tasks which can be solved in a few minutes.
|
[MapRoulette](https://www.maproulette.org/) is a website which has challenges. A challenge is a collection of _microtasks_, i.e. mapping tasks which can be solved in a few minutes.
|
||||||
|
|
||||||
A perfect example of this is to setup such a challenge to e.g. import new points.
|
A perfect example of this is to setup such a challenge to e.g. import new points.
|
||||||
|
|
||||||
> [Important: always follow the import guidelines if you want to import data.](https://wiki.openstreetmap.org/wiki/Import/Guidelines)
|
> [Important: always follow the import guidelines if you want to import data.](https://wiki.openstreetmap.org/wiki/Import/Guidelines)
|
||||||
|
|
||||||
(Another approach to set up a guided import is to create a map note for every point with the [import helper](https://mapcomplete.org/import_helper). This however litters the map notes and will upset mappers if used with to much points. However, this flow is easier to setup as no changes to theme files are needed, nor is a maproulette-account needed)
|
(Another approach to set up a guided import is to create a map note for every point with the [import helper](https://mapcomplete.osm.be/import_helper). This however litters the map notes and will upset mappers if used with to much points. However, this flow is easier to setup as no changes to theme files are needed, nor is a maproulette-account needed)
|
||||||
|
|
||||||
## Preparing the data
|
|
||||||
|
|
||||||
Convert your source data into a geojson. Use *`tags`* as field where all the OSM-properties should go. Make sure to include all tags there.
|
|
||||||
|
|
||||||
Hint: MapRoulette has a button 'rebuild task', where you can first 'remove all incomplete tasks'. This is perfect to start over in case of small data errors.
|
|
||||||
|
|
||||||
## The API
|
## The API
|
||||||
|
|
||||||
|
|
@ -23,27 +15,13 @@ The API is shortly discussed here for future reference only.
|
||||||
|
|
||||||
There is an API-endpoint at `https://maproulette.org/api/v2/tasks/box/{x_min}/{y_min}/{x_max}/{y_max}` which can be used
|
There is an API-endpoint at `https://maproulette.org/api/v2/tasks/box/{x_min}/{y_min}/{x_max}/{y_max}` which can be used
|
||||||
to query _all_ tasks in a bbox and returns this as geojson. Hint:
|
to query _all_ tasks in a bbox and returns this as geojson. Hint:
|
||||||
use [the maproulette theme in debug mode](https://mapcomplete.org/maproulette?debug=true) to inspect all properties.
|
use [the maproulette theme in debug mode](https://mapcomplete.osm.be/maproulette?debug=true) to inspect all properties.
|
||||||
|
|
||||||
To view the overview a single challenge, visit `https://maproulette.org/browse/challenges/<challenge-id>` with your
|
To view the overview a single challenge, visit `https://maproulette.org/browse/challenges/<challenge-id>` with your
|
||||||
browser.
|
browser.
|
||||||
The API endpoint for a single challenge is `https://maproulette.org/api/v2/challenge/view/<challenge-id>` which returns a
|
The API endpoint for a single challenge is `https://maproulette.org/api/v2/challenge/view/<challenge-id>` which returns a
|
||||||
geojson.
|
geojson.
|
||||||
|
|
||||||
Override the geojson-source in order to use the challenge:
|
|
||||||
|
|
||||||
```
|
|
||||||
{
|
|
||||||
"builtin": "maproulette_challenge",
|
|
||||||
"override" : {
|
|
||||||
"source": {
|
|
||||||
"geoJson": "https://maproulette.org/api/v2/challenge/view/<challenge-id>"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## Displaying MapRoulette data in MapComplete
|
## Displaying MapRoulette data in MapComplete
|
||||||
|
|
||||||
As you'll probably want to link MapComplete to your challenge, reuse [maproulette_challenge](Docs/Layers/maproulette_challenge.md).
|
As you'll probably want to link MapComplete to your challenge, reuse [maproulette_challenge](Docs/Layers/maproulette_challenge.md).
|
||||||
|
|
@ -59,9 +37,9 @@ The following example is to match hotels:
|
||||||
|
|
||||||
```
|
```
|
||||||
"calculatedTags": [
|
"calculatedTags": [
|
||||||
"_closest_osm_poi=feat.closest('hotel')?.properties?.id",
|
"_closest_osm_hotel=feat.closest('hotel')?.properties?.id",
|
||||||
"_closest_osm_poi_distance=feat.distanceTo(feat.properties._closest_osm_poi)",
|
"_closest_osm_hotel_distance=feat.distanceTo(feat.properties._closest_osm_hotel)",
|
||||||
"_has_closeby_feature=Number(feat.properties._closest_osm_poi_distance) < 50 ? 'yes' : 'no'"
|
"_has_closeby_feature=Number(feat.properties._closest_osm_hotel_distance) < 50 ? 'yes' : 'no'"
|
||||||
],
|
],
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -78,12 +56,11 @@ Note that the import button has support for MapRoulette and is able to close the
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"id": "import-button",
|
"id": "import-button",
|
||||||
"condition": "_has_closeby_feature=no",
|
|
||||||
"render": {
|
"render": {
|
||||||
"special": {
|
"special": {
|
||||||
"type": "import_button",
|
"type": "import_button",
|
||||||
"targetLayer": "<the layer in which the point should appear afterwards>",
|
"targetLayer": "<the layer in which the point should appear afterwards>",
|
||||||
"tags": "tags", -- should stay 'tags', unless you took a different name while creating the data
|
"tags": "tags", -- should stay 'tags'
|
||||||
"maproulette_id": "mr_taskId", -- important to get the task closed
|
"maproulette_id": "mr_taskId", -- important to get the task closed
|
||||||
"text": {
|
"text": {
|
||||||
"en": "Import this point" -- or a nice message
|
"en": "Import this point" -- or a nice message
|
||||||
|
|
@ -111,7 +88,7 @@ The following example uses the calculated tags `_has_closeby_feature` and `_clos
|
||||||
"special": {
|
"special": {
|
||||||
"type": "tag_apply",
|
"type": "tag_apply",
|
||||||
"tags_to_apply": "$tags", -- note the '$', property containing the tags
|
"tags_to_apply": "$tags", -- note the '$', property containing the tags
|
||||||
"id_of_object_to_apply_this_one": "_closest_osm_poi" -- id of the feature to add those tags to
|
"id_of_object_to_apply_this_one": "_closest_osm_hotel" -- id of the feature to add those tags to
|
||||||
"message": {
|
"message": {
|
||||||
"en": "Add all the suggested tags"
|
"en": "Add all the suggested tags"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
(Originally published as diary-entry)
|
(Originally published as diary-entry)
|
||||||
|
|
||||||
|
|
||||||
In my [little OpenStreetMap-editor](https://mapcomplete.org) translations are provided by contributors on [hosted weblate](https://translate.mapcomplete.org/projects/mapcomplete/), where thousands of text snippets have been translated already in the past year - which is awesome.
|
In my [little OpenStreetMap-editor](https://mapcomplete.osm.be) translations are provided by contributors on [hosted weblate](https://hosted.weblate.org/projects/mapcomplete/), where thousands of text snippets have been translated already in the past year - which is awesome.
|
||||||
|
|
||||||
However, the language picker was a bit dry: it used to have codes for every language, e.g. `nl`, `en`, `ja`, 'pt_BR', 'zh_Hant'... Quite boring and not really user-friendly - but easy to implement.
|
However, the language picker was a bit dry: it used to have codes for every langauge, e.g. `nl`, `en`, `ja`, 'pt_BR', 'zh_Hant'... Quite boring and not really user-friendly - but easy to implement.
|
||||||
|
|
||||||
Today, I decided to give these an overhaul. I wanted to show proper language names in them. But: in which _language_ should we show the language overview?
|
Today, I decided to give these an overhaul. I wanted to show proper language names in them. But: in which _language_ should we show the language overview?
|
||||||
|
|
||||||
|
|
@ -41,7 +41,7 @@ This one fetches all languages and uses the labels in every language as their tr
|
||||||
|
|
||||||
Of course, real life isn't as easy. There are dialects, differences in notation between Weblate and Wikipedia (e.g. `zh-hant` vs `zh-Hant`). But with a few exceptions, this can be fixed too. Some pragmatism doesn't hurt - even though it is nice that it works for most cases automatically.
|
Of course, real life isn't as easy. There are dialects, differences in notation between Weblate and Wikipedia (e.g. `zh-hant` vs `zh-Hant`). But with a few exceptions, this can be fixed too. Some pragmatism doesn't hurt - even though it is nice that it works for most cases automatically.
|
||||||
|
|
||||||
[The full script is available here](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/scripts/fetchLanguages.ts).
|
[The full script is available here](https://github.com/pietervdvn/MapComplete/blob/develop/scripts/fetchLanguages.ts).
|
||||||
|
|
||||||
# Results
|
# Results
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,149 +1,116 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# address
|
address
|
||||||
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/layers/address/housenumber_blank.svg' height="100px">
|
||||||
|
|
||||||
Addresses
|
Addresses
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **18** and higher
|
- This layer is shown at zoomlevel **18** and higher
|
||||||
|
- This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_3_street_names)
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [address_joined](#address_joined)
|
|
||||||
- [header](#header)
|
|
||||||
- [housenumber](#housenumber)
|
|
||||||
- [street](#street)
|
|
||||||
- [unit](#unit)
|
|
||||||
- [fixme](#fixme)
|
|
||||||
- [address-questions](#address-questions)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [grb](https://mapcomplete.org/grb)
|
Basic tags for this layer
|
||||||
- [uk_addresses](https://mapcomplete.org/uk_addresses)
|
---------------------------
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **any** of the following expressions:
|
|
||||||
|
|
||||||
- addr:housenumber~.+
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
- addr:street~.+
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22addr%3Ahousenumber%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22addr%3Astreet%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
|
- addr:housenumber~.+|addr:street~.+
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | Multiple choice | [addr:street](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:housenumber#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Ahousenumber/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:unit#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Aunit/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) | [string](../SpecialInputElements.md#string) | [addr:unit](https://wiki.openstreetmap.org/wiki/Tag:addr:unit%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/fixme#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/fixme/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [fixme](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22addr%3Ahousenumber%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22addr%3Astreet%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [address_joined](#address_joined) | _{group(header,street;housenumber;unit;address-questions,)}_ | address | _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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [unit](#unit) | What is the unit number or letter?<br/>_The unit number is <b>{addr:unit}</b>_<br/>1 options | address, hidden | *[addr:unit](https://wiki.osm.org/wiki/Key:addr:unit)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [fixme](#fixme) | What should be fixed here? Please explain<br/>_<b>Fixme description</b>{fixme}_<br/>1 options | | *[fixme](https://wiki.osm.org/wiki/Key:fixme)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [address-questions](#address-questions) | _{questions(address,,)}_ | address, hidden | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden;address)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### address_joined
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{group(header,street;housenumber;unit;address-questions,)}*
|
Supported attributes
|
||||||
|
----------------------
|
||||||
|
|
||||||
This tagrendering has labels `address`
|
|
||||||
|
|
||||||
### header
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{addr:street} <b>{addr:housenumber}</b> {addr:unit}*
|
Warning:
|
||||||
|
|
||||||
|
this quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
attribute | type | values which are supported by this layer
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:housenumber#values) [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D)
|
||||||
|
|
||||||
|
|
||||||
- *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber=
|
|
||||||
|
|
||||||
This tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### housenumber
|
### housenumber
|
||||||
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.
|
|
||||||
|
|
||||||
- *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 tagrendering has labels `address` `hidden`
|
The question is *What is the number of this house?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber)
|
||||||
|
|
||||||
|
This is rendered with `The house number is <b>{addr:housenumber}</b>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This building has no house number* corresponds with `nohousenumber=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### street
|
### street
|
||||||
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 tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### unit
|
The question is *What street is this address located in?*
|
||||||
The question is `What is the unit number or letter?`
|
|
||||||
|
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
||||||
|
|
||||||
|
This is rendered with `This address is in street <b>{addr:street}</b>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Located in <b>{_closest_street:0:name}</b>* corresponds with `addr:street=`
|
||||||
|
- *Located in <b>{_closest_street:1:name}</b>* corresponds with `addr:street=`
|
||||||
|
- *Located in <b>{_closest_street:2:name}</b>* corresponds with `addr:street=`
|
||||||
|
|
||||||
*The unit number is <b>{addr:unit}</b>* is shown if `addr:unit` is set.
|
|
||||||
|
|
||||||
- *No unit number* is shown if with addr:unit=
|
|
||||||
|
|
||||||
This tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### fixme
|
### fixme
|
||||||
The question is `What should be fixed here? Please explain`
|
|
||||||
|
|
||||||
*<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=
|
|
||||||
|
|
||||||
### address-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions(address,,)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden;address)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### move-button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{move_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/address/address.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/address/address.json)
|
|
||||||
|
The question is *What should be fixed here? Please explain*
|
||||||
|
|
||||||
|
This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme)
|
||||||
|
|
||||||
|
This is rendered with `<b>Fixme description</b>{fixme}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *No fixme - write something here to explain complicated cases* corresponds with ``
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/address/address.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/address/address.json)
|
||||||
|
|
|
||||||
|
|
@ -1,151 +0,0 @@
|
||||||
[//]: # (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)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [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) | [height=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 | [height:mechanism=manual](https://wiki.openstreetmap.org/wiki/Tag:height:mechanism%3Dmanual) [height:mechanism=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 | [support=wall_mounted](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mounted) [support=legs](https://wiki.openstreetmap.org/wiki/Tag:support%3Dlegs) [support=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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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)
|
|
||||||
|
|
@ -1,225 +1,234 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# advertising
|
advertising
|
||||||
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/themes/advertising/sign.svg' height="100px">
|
||||||
|
|
||||||
We will complete data from advertising features with reference, operator and lit
|
We will complete data from advertising features with reference, operator and lit
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **13** and higher
|
|
||||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `a billboard mounted to a wall` snaps to this layer (advertising.presets[1])
|
|
||||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `a poster box mounted on a wall` snaps to this layer (advertising.presets[3])
|
|
||||||
- This layer will automatically load [shelter](./shelter.md) into the layout as it depends on it: preset `a poster box part of a public transport shelter` snaps to this layer (advertising.presets[4])
|
|
||||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `a screen mounted on a wall` snaps to this layer (advertising.presets[9])
|
|
||||||
- This layer will automatically load [shelter](./shelter.md) into the layout as it depends on it: preset `a screen mounted on a transit shelter` snaps to this layer (advertising.presets[10])
|
|
||||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `a tarp` snaps to this layer (advertising.presets[11])
|
|
||||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `a sign` snaps to this layer (advertising.presets[13])
|
|
||||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `a wall painting` snaps to this layer (advertising.presets[15])
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [type](#type)
|
|
||||||
- [animated](#animated)
|
|
||||||
- [luminous_or_lit_advertising](#luminous_or_lit_advertising)
|
|
||||||
- [operator](#operator)
|
|
||||||
- [message_type](#message_type)
|
|
||||||
- [Sides](#sides)
|
|
||||||
- [ref](#ref)
|
|
||||||
- [historic](#historic)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [create_copy](#create_copy)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [advertising](https://mapcomplete.org/advertising)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
- This layer is shown at zoomlevel **15** and higher
|
||||||
|
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[2])
|
||||||
|
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[7])
|
||||||
|
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[8])
|
||||||
|
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[10])
|
||||||
|
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[12])
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a billboard** which has the following tags:<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>
|
|
||||||
- **a billboard mounted to a wall** which has the following tags:<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> & <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall' target='_blank'>wall</a> (snaps to layers `walls_and_buildings`)
|
|
||||||
- **a freestanding poster box** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box' target='_blank'>poster_box</a>
|
|
||||||
- **a poster box mounted on a wall** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box' target='_blank'>poster_box</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall' target='_blank'>wall</a> (snaps to layers `walls_and_buildings`)
|
|
||||||
- **a poster box part of a public transport shelter** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box' target='_blank'>poster_box</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dstreet_furniture:transit_shelter' target='_blank'>street_furniture:transit_shelter</a> (snaps to layers `shelter`)
|
|
||||||
- **a board** which has the following tags:<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>
|
|
||||||
- **a column** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dcolumn' target='_blank'>column</a>
|
|
||||||
- **a flag** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dflag' target='_blank'>flag</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dpole' target='_blank'>pole</a>
|
|
||||||
- **a screen** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen' target='_blank'>screen</a>
|
|
||||||
- **a screen mounted on a wall** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen' target='_blank'>screen</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall' target='_blank'>wall</a> (snaps to layers `walls_and_buildings`)
|
|
||||||
- **a screen mounted on a transit shelter** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen' target='_blank'>screen</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dstreet_furniture:transit_shelter' target='_blank'>street_furniture:transit_shelter</a> (snaps to layers `shelter`)
|
|
||||||
- **a tarp** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtarp' target='_blank'>tarp</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:support' target='_blank'>support</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall' target='_blank'>wall</a> (snaps to layers `walls_and_buildings`)
|
|
||||||
- **a totem** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtotem' target='_blank'>totem</a>
|
|
||||||
- **a sign** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsign' target='_blank'>sign</a> (snaps to layers `walls_and_buildings`)
|
|
||||||
- **a sculpture** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsculpture' target='_blank'>sculpture</a>
|
|
||||||
- **a wall painting** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dwall_painting' target='_blank'>wall_painting</a> (snaps to layers `walls_and_buildings`)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
#### Themes using this layer
|
||||||
|
|
||||||
0. advertising~.+
|
|
||||||
1. advertising!=no
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22advertising%22%5D%5B%22advertising%22!%3D%22no%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 |
|
- [advertising](https://mapcomplete.osm.be/advertising)
|
||||||
-----|-----|----- |
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/advertising#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/advertising/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [advertising](https://wiki.openstreetmap.org/wiki/Key:advertising) | [string](../SpecialInputElements.md#string) | [advertising=billboard](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dbillboard) [advertising=board](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dboard) [advertising=column](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dcolumn) [advertising=flag](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dflag) [advertising=poster_box](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box) [advertising=screen](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen) [advertising=sculpture](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsculpture) [advertising=sign](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsign) [advertising=tarp](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtarp) [advertising=totem](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtotem) [advertising=wall_painting](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dwall_painting) [advertising=tilework](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtilework) [advertising=relief](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Drelief) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/animated#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/animated/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [animated](https://wiki.openstreetmap.org/wiki/Key:animated) | Multiple choice | [animated=no](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dno) [animated=digital_display](https://wiki.openstreetmap.org/wiki/Tag:animated%3Ddigital_display) [animated=trivision_blades](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dtrivision_blades) [animated=winding_posters](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dwinding_posters) [animated=revolving](https://wiki.openstreetmap.org/wiki/Tag:animated%3Drevolving) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/sides#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/sides/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [sides](https://wiki.openstreetmap.org/wiki/Key:sides) | Multiple choice | [sides=1](https://wiki.openstreetmap.org/wiki/Tag:sides%3D1) [sides=2](https://wiki.openstreetmap.org/wiki/Tag:sides%3D2) |
|
|
||||||
| <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) | |
|
Basic tags for 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 | [historic=advertising](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising) [historic](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- advertising~.+
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22advertising%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/advertising#values) [advertising](https://wiki.openstreetmap.org/wiki/Key:advertising) | [string](../SpecialInputElements.md#string) | [billboard](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dbillboard) [board](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dboard) [column](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dcolumn) [flag](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dflag) [poster_box](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box) [screen](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsculpture) [sign](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsign) [tarp](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtarp) [totem](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtotem) [wall_painting](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dwall_painting)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/animated#values) [animated](https://wiki.openstreetmap.org/wiki/Key:animated) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dno) [digital_display](https://wiki.openstreetmap.org/wiki/Tag:animated%3Ddigital_display) [trivision_blades](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dtrivision_blades) [winding_posters](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dwinding_posters) [revolving](https://wiki.openstreetmap.org/wiki/Tag:animated%3Drevolving)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sides#values) [sides](https://wiki.openstreetmap.org/wiki/Key:sides) | Multiple choice | [1](https://wiki.openstreetmap.org/wiki/Tag:sides%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:sides%3D2)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) |
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [type](#type) | Which type of advertising feature is this?<br/>_This is a {advertising}_<br/>13 options | | *[advertising](https://wiki.osm.org/wiki/Key:advertising)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [animated](#animated) | Does this advertisement cycle through multiple messages?<br/>5 options | | _Multiple choice only_ |
|
|
||||||
| [luminous_or_lit_advertising](#luminous_or_lit_advertising) <br/> _(Original in [questions](./BuiltinQuestions.md#luminous_or_lit))_ | Is this object lit or does it emit light?<br/>5 options | | _Multiple choice only_ |
|
|
||||||
| [operator](#operator) | Who operates this feature?<br/>_Operated by {operator}_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [message_type](#message_type) | What kind of message is shown?<br/>11 options | | _Multiple choice only_ |
|
|
||||||
| [Sides](#Sides) | From how many sides you can watch advertisments?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [ref](#ref) | Wich is the reference number?<br/>_Reference number is {ref}_ | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [historic](#historic) | Is this sign for a business that no longer exists or no longer being maintained?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [create_copy](#create_copy) | _{create_copy()}_ | | _Multiple choice only_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### type
|
### type
|
||||||
The question is `Which type of advertising feature is this?`
|
|
||||||
|
|
||||||
*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/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>
|
The question is *Which type of advertising feature is this?*
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/column.svg'> *This is a column* 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%3Dcolumn' target='_blank'>column</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/flag.svg'> *This is a flag* 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%3Dflag' target='_blank'>flag</a>
|
This rendering asks information about the property [advertising](https://wiki.openstreetmap.org/wiki/Key:advertising)
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/poster_box.svg'> *This is a poster Box* 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%3Dposter_box' target='_blank'>poster_box</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/screen.svg'> *This is a screen* 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%3Dscreen' target='_blank'>screen</a>
|
This is rendered with `This is a {advertising}`
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/sculpture.svg'> *This is a sculpture* 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%3Dsculpture' target='_blank'>sculpture</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/sign.svg'> *This is a sign* 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%3Dsign' target='_blank'>sign</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/tarp.svg'> *This is a tarp (a weatherproof piece of textile with an advertising message)* 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%3Dtarp' target='_blank'>tarp</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/totem.svg'> *This is a totem* 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%3Dtotem' target='_blank'>totem</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/wall_painting.svg'> *This is a wall painting* 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%3Dwall_painting' target='_blank'>wall_painting</a>
|
|
||||||
- *This is tilework - the advertisement is painted on tiles* 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%3Dtilework' target='_blank'>tilework</a>
|
- *This is a billboard* corresponds with `advertising=billboard`
|
||||||
- *This is a relief* 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%3Drelief' target='_blank'>relief</a>
|
- *This is a board* corresponds with `advertising=board`
|
||||||
|
- *This is a column* corresponds with `advertising=column`
|
||||||
|
- *This is a flag* corresponds with `advertising=flag`
|
||||||
|
- *This is a poster Box* corresponds with `advertising=poster_box`
|
||||||
|
- *This is a screen* corresponds with `advertising=screen`
|
||||||
|
- *This is a sculpture* corresponds with `advertising=sculpture`
|
||||||
|
- *This is a sign* corresponds with `advertising=sign`
|
||||||
|
- *This is a tarp (a weatherproof piece of textile with an advertising message)* corresponds with `advertising=tarp`
|
||||||
|
- *This is a totem* corresponds with `advertising=totem`
|
||||||
|
- *This is a wall painting* corresponds with `advertising=wall_painting`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### animated
|
### animated
|
||||||
The question is `Does this advertisement cycle through multiple messages?`
|
|
||||||
|
|
||||||
- *<b>Static</b>, always shows the same message* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animated' target='_blank'>animated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animated%3Dno' target='_blank'>no</a>
|
|
||||||
- *This object has a built-in <b>digital display</b> to show prices or some other message* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animated' target='_blank'>animated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animated%3Ddigital_display' target='_blank'>digital_display</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/trivision.svg'> *<b>Trivision</b> - the billboard consists of many triangular prisms which regularly rotate* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animated' target='_blank'>animated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animated%3Dtrivision_blades' target='_blank'>trivision_blades</a>
|
|
||||||
- *<b>Scrolling</b> posters* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animated' target='_blank'>animated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animated%3Dwinding_posters' target='_blank'>winding_posters</a>
|
|
||||||
- *<b>Rotates</b> on itself* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animated' target='_blank'>animated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animated%3Drevolving' target='_blank'>revolving</a>
|
|
||||||
|
|
||||||
### luminous_or_lit_advertising
|
|
||||||
The question is `Is this object lit or does it emit light?`
|
|
||||||
|
|
||||||
- *This is a neon-tube light* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:luminous' target='_blank'>luminous</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:luminous%3Dneon' target='_blank'>neon</a>
|
The question is *Does this advertisement cycle through multiple messages?*
|
||||||
- *This object both emits light and is lighted by an external light source* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:luminous' target='_blank'>luminous</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:luminous%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This object emits light* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:luminous' target='_blank'>luminous</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:luminous%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This object is lit externally, e.g. by a spotlight or other lights* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This object does not emit light and is not lighted by externally* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:luminous' target='_blank'>luminous</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:luminous%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
- *<b>Static</b>, always shows the same message* corresponds with `animated=no`
|
||||||
|
- *This object has a built-in <b>digital display</b> to show prices or some other message* corresponds with `animated=digital_display`
|
||||||
|
- *<b>Trivision</b> - the billboard consists of many triangular prisms which regularly rotate* corresponds with `animated=trivision_blades`
|
||||||
|
- *<b>Scrolling</b> posters* corresponds with `animated=winding_posters`
|
||||||
|
- *<b>Rotates</b> on itself* corresponds with `animated=revolving`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### luminous_or_lit
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is this object lit or does it emit light?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This is a neon-tube light* corresponds with `luminous=neon`
|
||||||
|
- *This object both emits light and is lighted by an external light source* corresponds with `lit=yes&luminous=yes`
|
||||||
|
- *This object emits light* corresponds with `luminous=yes`
|
||||||
|
- *This object is lit externally, e.g. by a spotlight or other lights* corresponds with `lit=yes`
|
||||||
|
- *This object does not emit light and is not lighted by externally* corresponds with `lit=no&luminous=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### operator
|
### operator
|
||||||
The question is `Who operates this feature?`
|
|
||||||
|
|
||||||
*Operated by {operator}* is shown if `operator` is set.
|
|
||||||
|
|
||||||
|
The question is *Who operates this feature?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
|
|
||||||
|
This is rendered with `Operated by {operator}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### message_type
|
### message_type
|
||||||
The question is `What kind of message is shown?`
|
|
||||||
|
|
||||||
- *Commercial message* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dcommercial' target='_blank'>commercial</a>. Unselecting this answer will add message=
|
|
||||||
- *Local information* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dlocal' target='_blank'>local</a>. Unselecting this answer will add message=
|
|
||||||
- *Security information* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dsafety' target='_blank'>safety</a>. Unselecting this answer will add message=
|
The question is *What kind of message is shown?*
|
||||||
- *Electoral advertising* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dpolitical' target='_blank'>political</a>. Unselecting this answer will add message=
|
|
||||||
- *Information related to theatre, concerts, …* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dshowbiz' target='_blank'>showbiz</a>. Unselecting this answer will add message=
|
|
||||||
- *Message from non-profit organizations* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dnon_profit' target='_blank'>non_profit</a>. Unselecting this answer will add message=
|
|
||||||
- *To express your opinion* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dopinion' target='_blank'>opinion</a>. Unselecting this answer will add message=
|
|
||||||
- *Religious message* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dreligion' target='_blank'>religion</a>. Unselecting this answer will add message=
|
|
||||||
- *Funding sign* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dfunding' target='_blank'>funding</a>. Unselecting this answer will add message=
|
- *Commercial message* corresponds with `message=commercial`
|
||||||
- *A map* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:information' target='_blank'>information</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:information%3Dmap' target='_blank'>map</a>. Unselecting this answer will add information=
|
- Unselecting this answer will add
|
||||||
- *Legal messages* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dlegal' target='_blank'>legal</a>. Unselecting this answer will add message=
|
- *Local information* corresponds with `message=local`
|
||||||
|
- Unselecting this answer will add
|
||||||
|
- *Security information* corresponds with `message=safety`
|
||||||
|
- Unselecting this answer will add
|
||||||
|
- *Electoral advertising* corresponds with `message=political`
|
||||||
|
- Unselecting this answer will add
|
||||||
|
- *Inormation related to theatre, concerts, ...* corresponds with `message=showbiz`
|
||||||
|
- Unselecting this answer will add
|
||||||
|
- *Message from non-profit organizations* corresponds with `message=non_profit`
|
||||||
|
- Unselecting this answer will add
|
||||||
|
- *To expres your opinion* corresponds with `message=opinion`
|
||||||
|
- Unselecting this answer will add
|
||||||
|
- *Religious message* corresponds with `message=religion`
|
||||||
|
- Unselecting this answer will add
|
||||||
|
- *Funding sign* corresponds with `message=funding`
|
||||||
|
- Unselecting this answer will add
|
||||||
|
- *A map* corresponds with `information=map`
|
||||||
|
- Unselecting this answer will add
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Sides
|
### Sides
|
||||||
The question is `From how many sides you can watch advertisments?`
|
|
||||||
|
|
||||||
- *This object has advertisements on a single side* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:sides' target='_blank'>sides</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sides%3D1' target='_blank'>1</a>
|
|
||||||
- *This object has advertisements on both sides* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:sides' target='_blank'>sides</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sides%3D2' target='_blank'>2</a>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: _referencing_ways= & (<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box' target='_blank'>poster_box</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen' target='_blank'>screen</a> | <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>)
|
|
||||||
|
The question is *From how many sides you can watch advertisments?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This object has advertisements on a single side* corresponds with `sides=1`
|
||||||
|
- *This object has advertisements on both sides* corresponds with `sides=2`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `advertising=poster_box|advertising=screen|advertising=billboard`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### ref
|
### ref
|
||||||
The question is `Wich is the reference number?`
|
|
||||||
|
|
||||||
*Reference number is {ref}* is shown if `ref` is set.
|
|
||||||
|
|
||||||
### historic
|
|
||||||
The question is `Is this sign for a business that no longer exists or no longer being maintained?`
|
|
||||||
|
|
||||||
- *This is a historic advertisement sign (an advertisement for a business that no longer exists or a very old sign with heritage value)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising' target='_blank'>advertising</a>
|
|
||||||
- *This advertisement sign has no historic value (the business still exists and has no heritage value)* is shown if with historic=
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### create_copy
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{create_copy()}*
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/advertising/advertising.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/advertising/advertising.json)
|
|
||||||
|
The question is *Wich is the reference number?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref)
|
||||||
|
|
||||||
|
This is rendered with `Reference number is {ref}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/advertising/advertising.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/advertising/advertising.json)
|
||||||
|
|
|
||||||
|
|
@ -1,197 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# advertising_wall_paintings
|
|
||||||
|
|
||||||
This layer is based on [advertising](../Layers/advertising.md)
|
|
||||||
|
|
||||||
We will complete data from advertising features with reference, operator and lit
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **18** and higher
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [type](#type)
|
|
||||||
- [animated](#animated)
|
|
||||||
- [luminous_or_lit_advertising](#luminous_or_lit_advertising)
|
|
||||||
- [operator](#operator)
|
|
||||||
- [message_type](#message_type)
|
|
||||||
- [Sides](#sides)
|
|
||||||
- [ref](#ref)
|
|
||||||
- [historic](#historic)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [create_copy](#create_copy)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [lod](#lod)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [ghostsigns](https://mapcomplete.org/ghostsigns)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
|
||||||
|
|
||||||
0. advertising~.+
|
|
||||||
1. advertising!=no
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22advertising%22%5D%5B%22advertising%22!%3D%22no%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/advertising#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/advertising/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [advertising](https://wiki.openstreetmap.org/wiki/Key:advertising) | [string](../SpecialInputElements.md#string) | [advertising=billboard](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dbillboard) [advertising=board](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dboard) [advertising=column](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dcolumn) [advertising=flag](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dflag) [advertising=poster_box](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box) [advertising=screen](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen) [advertising=sculpture](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsculpture) [advertising=sign](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dsign) [advertising=tarp](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtarp) [advertising=totem](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtotem) [advertising=wall_painting](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dwall_painting) [advertising=tilework](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dtilework) [advertising=relief](https://wiki.openstreetmap.org/wiki/Tag:advertising%3Drelief) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/animated#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/animated/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [animated](https://wiki.openstreetmap.org/wiki/Key:animated) | Multiple choice | [animated=no](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dno) [animated=digital_display](https://wiki.openstreetmap.org/wiki/Tag:animated%3Ddigital_display) [animated=trivision_blades](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dtrivision_blades) [animated=winding_posters](https://wiki.openstreetmap.org/wiki/Tag:animated%3Dwinding_posters) [animated=revolving](https://wiki.openstreetmap.org/wiki/Tag:animated%3Drevolving) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/sides#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/sides/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [sides](https://wiki.openstreetmap.org/wiki/Key:sides) | Multiple choice | [sides=1](https://wiki.openstreetmap.org/wiki/Tag:sides%3D1) [sides=2](https://wiki.openstreetmap.org/wiki/Tag:sides%3D2) |
|
|
||||||
| <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) | |
|
|
||||||
| <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 | [historic=advertising](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising) [historic](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [type](#type) | Which type of advertising feature is this?<br/>_This is a {advertising}_<br/>13 options | | *[advertising](https://wiki.osm.org/wiki/Key:advertising)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [animated](#animated) | Does this advertisement cycle through multiple messages?<br/>5 options | | _Multiple choice only_ |
|
|
||||||
| [luminous_or_lit_advertising](#luminous_or_lit_advertising) <br/> _(Original in [questions](./BuiltinQuestions.md#luminous_or_lit))_ | Is this object lit or does it emit light?<br/>5 options | | _Multiple choice only_ |
|
|
||||||
| [operator](#operator) | Who operates this feature?<br/>_Operated by {operator}_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [message_type](#message_type) | What kind of message is shown?<br/>11 options | | _Multiple choice only_ |
|
|
||||||
| [Sides](#Sides) | From how many sides you can watch advertisments?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [ref](#ref) | Wich is the reference number?<br/>_Reference number is {ref}_ | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [historic](#historic) | Is this sign for a business that no longer exists or no longer being maintained?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [create_copy](#create_copy) | _{create_copy()}_ | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### type
|
|
||||||
The question is `Which type of advertising feature is this?`
|
|
||||||
|
|
||||||
*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/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/column.svg'> *This is a column* 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%3Dcolumn' target='_blank'>column</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/flag.svg'> *This is a flag* 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%3Dflag' target='_blank'>flag</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/poster_box.svg'> *This is a poster Box* 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%3Dposter_box' target='_blank'>poster_box</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/screen.svg'> *This is a screen* 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%3Dscreen' target='_blank'>screen</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/sculpture.svg'> *This is a sculpture* 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%3Dsculpture' target='_blank'>sculpture</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/sign.svg'> *This is a sign* 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%3Dsign' target='_blank'>sign</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/tarp.svg'> *This is a tarp (a weatherproof piece of textile with an advertising message)* 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%3Dtarp' target='_blank'>tarp</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/totem.svg'> *This is a totem* 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%3Dtotem' target='_blank'>totem</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/wall_painting.svg'> *This is a wall painting* 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%3Dwall_painting' target='_blank'>wall_painting</a>
|
|
||||||
- *This is tilework - the advertisement is painted on tiles* 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%3Dtilework' target='_blank'>tilework</a>
|
|
||||||
- *This is a relief* 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%3Drelief' target='_blank'>relief</a>
|
|
||||||
|
|
||||||
### animated
|
|
||||||
The question is `Does this advertisement cycle through multiple messages?`
|
|
||||||
|
|
||||||
- *<b>Static</b>, always shows the same message* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animated' target='_blank'>animated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animated%3Dno' target='_blank'>no</a>
|
|
||||||
- *This object has a built-in <b>digital display</b> to show prices or some other message* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animated' target='_blank'>animated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animated%3Ddigital_display' target='_blank'>digital_display</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/advertising/trivision.svg'> *<b>Trivision</b> - the billboard consists of many triangular prisms which regularly rotate* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animated' target='_blank'>animated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animated%3Dtrivision_blades' target='_blank'>trivision_blades</a>
|
|
||||||
- *<b>Scrolling</b> posters* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animated' target='_blank'>animated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animated%3Dwinding_posters' target='_blank'>winding_posters</a>
|
|
||||||
- *<b>Rotates</b> on itself* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:animated' target='_blank'>animated</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:animated%3Drevolving' target='_blank'>revolving</a>
|
|
||||||
|
|
||||||
### luminous_or_lit_advertising
|
|
||||||
The question is `Is this object lit or does it emit light?`
|
|
||||||
|
|
||||||
- *This is a neon-tube light* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:luminous' target='_blank'>luminous</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:luminous%3Dneon' target='_blank'>neon</a>
|
|
||||||
- *This object both emits light and is lighted by an external light source* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:luminous' target='_blank'>luminous</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:luminous%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This object emits light* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:luminous' target='_blank'>luminous</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:luminous%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This object is lit externally, e.g. by a spotlight or other lights* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This object does not emit light and is not lighted by externally* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:lit' target='_blank'>lit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno' target='_blank'>no</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:luminous' target='_blank'>luminous</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:luminous%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### operator
|
|
||||||
The question is `Who operates this feature?`
|
|
||||||
|
|
||||||
*Operated by {operator}* is shown if `operator` is set.
|
|
||||||
|
|
||||||
### message_type
|
|
||||||
The question is `What kind of message is shown?`
|
|
||||||
|
|
||||||
- *Commercial message* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dcommercial' target='_blank'>commercial</a>. Unselecting this answer will add message=
|
|
||||||
- *Local information* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dlocal' target='_blank'>local</a>. Unselecting this answer will add message=
|
|
||||||
- *Security information* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dsafety' target='_blank'>safety</a>. Unselecting this answer will add message=
|
|
||||||
- *Electoral advertising* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dpolitical' target='_blank'>political</a>. Unselecting this answer will add message=
|
|
||||||
- *Information related to theatre, concerts, …* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dshowbiz' target='_blank'>showbiz</a>. Unselecting this answer will add message=
|
|
||||||
- *Message from non-profit organizations* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dnon_profit' target='_blank'>non_profit</a>. Unselecting this answer will add message=
|
|
||||||
- *To express your opinion* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dopinion' target='_blank'>opinion</a>. Unselecting this answer will add message=
|
|
||||||
- *Religious message* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dreligion' target='_blank'>religion</a>. Unselecting this answer will add message=
|
|
||||||
- *Funding sign* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dfunding' target='_blank'>funding</a>. Unselecting this answer will add message=
|
|
||||||
- *A map* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:information' target='_blank'>information</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:information%3Dmap' target='_blank'>map</a>. Unselecting this answer will add information=
|
|
||||||
- *Legal messages* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:message' target='_blank'>message</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:message%3Dlegal' target='_blank'>legal</a>. Unselecting this answer will add message=
|
|
||||||
|
|
||||||
### Sides
|
|
||||||
The question is `From how many sides you can watch advertisments?`
|
|
||||||
|
|
||||||
- *This object has advertisements on a single side* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:sides' target='_blank'>sides</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sides%3D1' target='_blank'>1</a>
|
|
||||||
- *This object has advertisements on both sides* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:sides' target='_blank'>sides</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sides%3D2' target='_blank'>2</a>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: _referencing_ways= & (<a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dposter_box' target='_blank'>poster_box</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:advertising' target='_blank'>advertising</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:advertising%3Dscreen' target='_blank'>screen</a> | <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>)
|
|
||||||
|
|
||||||
### ref
|
|
||||||
The question is `Wich is the reference number?`
|
|
||||||
|
|
||||||
*Reference number is {ref}* is shown if `ref` is set.
|
|
||||||
|
|
||||||
### historic
|
|
||||||
The question is `Is this sign for a business that no longer exists or no longer being maintained?`
|
|
||||||
|
|
||||||
- *This is a historic advertisement sign (an advertisement for a business that no longer exists or a very old sign with heritage value)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising' target='_blank'>advertising</a>
|
|
||||||
- *This advertisement sign has no historic value (the business still exists and has no heritage value)* is shown if with historic=
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### create_copy
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{create_copy()}*
|
|
||||||
|
|
||||||
### 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`
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/themes/ghostsigns/ghostsigns.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/ghostsigns/ghostsigns.json)
|
|
||||||
|
|
@ -1,145 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# aerialway
|
|
||||||
|
|
||||||
Various forms of transport for passengers and goods that use wires, including cable cars, gondolas, chair lifts, drag lifts, and zip lines.
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **11** and higher
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [type](#type)
|
|
||||||
- [duration](#duration)
|
|
||||||
- [occupancy](#occupancy)
|
|
||||||
- [opening_hours](#opening_hours)
|
|
||||||
- [oneway](#oneway)
|
|
||||||
- [length](#length)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
5. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [ski](https://mapcomplete.org/ski)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
|
||||||
|
|
||||||
0. aerialway~.+
|
|
||||||
1. aerialway!=pylon
|
|
||||||
2. aerialway!=station
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22aerialway%22%5D%5B%22aerialway%22!%3D%22pylon%22%5D%5B%22aerialway%22!%3D%22station%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/aerialway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/aerialway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [aerialway](https://wiki.openstreetmap.org/wiki/Key:aerialway) | Multiple choice | [aerialway=cable_car](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dcable_car) [aerialway=gondola](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dgondola) [aerialway=chair_lift](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dchair_lift) [aerialway=mixed](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dmixed) [aerialway=t-bar](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dt-bar) [aerialway=j-bar](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dj-bar) [aerialway=platter](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dplatter) [aerialway=rope_tow](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Drope_tow) [aerialway=magic_carpet](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dmagic_carpet) [aerialway=zip_line](https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dzip_line) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/duration#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/duration/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [duration](https://wiki.openstreetmap.org/wiki/Key:duration) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/aerialway:occupancy#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/aerialway%3Aoccupancy/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [aerialway:occupancy](https://wiki.openstreetmap.org/wiki/Key:aerialway:occupancy) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <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) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/oneway#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/oneway/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [oneway](https://wiki.openstreetmap.org/wiki/Key:oneway) | Multiple choice | [oneway=yes](https://wiki.openstreetmap.org/wiki/Tag:oneway%3Dyes) [oneway=no](https://wiki.openstreetmap.org/wiki/Tag:oneway%3Dno) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [type](#type) | What type of aerialway is this?<br/>11 options | | _Multiple choice only_ |
|
|
||||||
| [duration](#duration) | How long takes a single journey with this elevator?<br/>_A single journey takes {duration} minutes_ | | *[duration](https://wiki.osm.org/wiki/Key:duration)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [occupancy](#occupancy) | How many people fit a single carriage?<br/>_{aerialway:occupancy} people fit a single carriage_ | | *[aerialway:occupancy](https://wiki.osm.org/wiki/Key:aerialway:occupancy)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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)) |
|
|
||||||
| [oneway](#oneway) | In what direction can this aerialway be taken?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [length](#length) | _This aerialway is {_length:km} kilometer long_ | | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### type
|
|
||||||
The question is `What type of aerialway is this?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/aerialway/cable_car.svg'> *This is a cable car where the car goes up and down again on the same cable.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dcable_car' target='_blank'>cable_car</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/aerialway/gondola_lift.svg'> *This is a gondola where the cars go around in continuous circles* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dgondola' target='_blank'>gondola</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/aerialway/chair_lift.svg'> *An open chairlift with seats to sit on and open to the outside air.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dchair_lift' target='_blank'>chair_lift</a>
|
|
||||||
- *An aerialway which has both chairs and gondolas in the same continuous track* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dmixed' target='_blank'>mixed</a>
|
|
||||||
- *A drag lift* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Ddrag_lift' target='_blank'>drag_lift</a>. _This option cannot be chosen as answer_
|
|
||||||
- *A drag lift with T-shaped carriers for two passengers at a time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dt-bar' target='_blank'>t-bar</a>
|
|
||||||
- *A drag lift with L-shaped bars for a single passenger at a time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dj-bar' target='_blank'>j-bar</a>
|
|
||||||
- *A drag lift with a platter to drag a single passenger at a time* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dplatter' target='_blank'>platter</a>
|
|
||||||
- *A tow line which skiers hold on to or attach themselves onto* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Drope_tow' target='_blank'>rope_tow</a>
|
|
||||||
- *A magic carpet (a conveyor belt on the ground)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dmagic_carpet' target='_blank'>magic_carpet</a>
|
|
||||||
- *A zip line. (A touristic attraction where adventurous people go down at high speeds)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:aerialway' target='_blank'>aerialway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:aerialway%3Dzip_line' target='_blank'>zip_line</a>
|
|
||||||
|
|
||||||
### duration
|
|
||||||
The question is `How long takes a single journey with this elevator?`
|
|
||||||
|
|
||||||
*A single journey takes {duration} minutes* is shown if `duration` is set.
|
|
||||||
|
|
||||||
### occupancy
|
|
||||||
The question is `How many people fit a single carriage?`
|
|
||||||
|
|
||||||
*{aerialway:occupancy} people fit a single carriage* is shown if `aerialway:occupancy` is set.
|
|
||||||
|
|
||||||
### opening_hours
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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_
|
|
||||||
|
|
||||||
### oneway
|
|
||||||
The question is `In what direction can this aerialway be taken?`
|
|
||||||
|
|
||||||
- *This aerialway can only be taken to the top* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:oneway' target='_blank'>oneway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:oneway%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This aerialway can be taken in both directions* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:oneway' target='_blank'>oneway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:oneway%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### length
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*This aerialway is {_length:km} kilometer long*
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/aerialway/aerialway.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/aerialway/aerialway.json)
|
|
||||||
|
|
@ -1,81 +1,162 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# all_streets
|
all_streets
|
||||||
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Layer to mark any street as cyclestreet
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Layer with (almost) all streets
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **18** and higher
|
- This layer is shown at zoomlevel **18** and higher
|
||||||
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [split_button](#split_button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
#### Themes using this layer
|
||||||
- [street_lighting](https://mapcomplete.org/street_lighting)
|
|
||||||
- [winter_service](https://mapcomplete.org/winter_service)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
|
||||||
|
|
||||||
0. highway~.+
|
|
||||||
1. highway!=platform
|
|
||||||
2. service!=driveway
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%5D%5B%22highway%22!%3D%22platform%22%5D%5B%22service%22!%3D%22driveway%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
|
||||||
|
|
||||||
## Supported attributes
|
- [cyclestreets](https://mapcomplete.osm.be/cyclestreets)
|
||||||
|
- [street_lighting](https://mapcomplete.osm.be/street_lighting)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dresidential' target='_blank'>residential</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtertiary' target='_blank'>tertiary</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dunclassified' target='_blank'>unclassified</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%3D%22residential%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22tertiary%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22unclassified%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/traffic_sign#values) [traffic_sign](https://wiki.openstreetmap.org/wiki/Key:traffic_sign) | Multiple choice | [DE:244.1,1020-30](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1020-30) [DE:244.1,1022-12,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12,1024-10) [DE:244.1,1022-12](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1022-12) [DE:244.1,1024-10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1,1024-10) [DE:244.1](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DDE:244.1)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cyclestreet:start_date#values) [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date) | [date](../SpecialInputElements.md#date) |
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [split_button](#split_button) <br/> _(Original in [questions](./BuiltinQuestions.md#split_button))_ | _{split_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### split_button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{split_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/all_streets/all_streets.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/all_streets/all_streets.json)
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### is_cyclestreet
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is the street <b>{name}</b> a cyclestreet?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This street is a cyclestreet (and has a speed limit of 30 km/h)* corresponds with `cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no`
|
||||||
|
- *This street is a bicycle road* corresponds with `bicycle_road=yes`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)* corresponds with `bicycle_road=yes&maxspeed=30&source:maxspeed=DE:bicycle_road&vehicle=no&bicycle=designated`
|
||||||
|
- *This street is a cyclestreet* corresponds with `cyclestreet=yes`
|
||||||
|
- *This street will become a cyclestreet soon* corresponds with `proposed:cyclestreet=yes`
|
||||||
|
- *This street will become a bicycle road soon* corresponds with `proposed:bicycle_road=yes`
|
||||||
|
- *This street is not a cyclestreet* corresponds with ``
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### supplementary_sign
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What sign does this bicycle road have?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Residents allowed* corresponds with `traffic_sign=DE:244.1,1020-30`
|
||||||
|
- *Motor vehicles allowed* corresponds with `traffic_sign=DE:244.1,1022-12,1024-10`
|
||||||
|
- *Motorcycles allowed* corresponds with `traffic_sign=DE:244.1,1022-12`
|
||||||
|
- *Cars allowed* corresponds with `traffic_sign=DE:244.1,1024-10`
|
||||||
|
- *There are no supplementary signs at this bicycle road.* corresponds with `traffic_sign=DE:244.1`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `bicycle_road=yes&_country=de`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### future_cyclestreet
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *When will this street become a cyclestreet?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [cyclestreet:start_date](https://wiki.openstreetmap.org/wiki/Key:cyclestreet:start_date)
|
||||||
|
|
||||||
|
This is rendered with `This street will become a cyclestreet at {cyclestreet:start_date}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `proposed:cyclestreet=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Show the images block at this location
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Shows a small map with the feature. Added by default to every popup
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/themes/cyclestreets/cyclestreets.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclestreets/cyclestreets.json)
|
||||||
|
|
|
||||||
|
|
@ -1,377 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# all_vending_machine
|
|
||||||
|
|
||||||
This layer is based on [vending_machine](../Layers/vending_machine.md)
|
|
||||||
|
|
||||||
Layer showing vending machines
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **18** and higher
|
|
||||||
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [repeated](#repeated)
|
|
||||||
- [single_level](#single_level)
|
|
||||||
- [vending](#vending)
|
|
||||||
- [bicycle_tube_vending_machine-brand](#bicycle_tube_vending_machine-brand)
|
|
||||||
- [opening_hours_24_7](#opening_hours_24_7)
|
|
||||||
- [payment-options-split](#payment-options-split)
|
|
||||||
- [denominations-coins](#denominations-coins)
|
|
||||||
- [denominations-notes](#denominations-notes)
|
|
||||||
- [operator](#operator)
|
|
||||||
- [indoor](#indoor)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [website](#website)
|
|
||||||
- [charge_bicycle_tube](#charge_bicycle_tube)
|
|
||||||
- [charge_bicycle_light](#charge_bicycle_light)
|
|
||||||
- [charge_condom](#charge_condom)
|
|
||||||
- [operational_status](#operational_status)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [create_copy](#create_copy)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [lod](#lod)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
5. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [vending_machine](https://mapcomplete.org/vending_machine)
|
|
||||||
|
|
||||||
## 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. vending!~^((parking_tickets|elongated_coin|public_transport_tickets))$
|
|
||||||
|
|
||||||
[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!~%22%5E%28%28parking_tickets%7Celongated_coin%7Cpublic_transport_tickets%29%29%24%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/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) | [level=0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [level=1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [level=-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) | [vending=drinks](https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddrinks) [vending=sweets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dsweets) [vending=food](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfood) [vending=cigarettes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcigarettes) [vending=condoms](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcondoms) [vending=coffee](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcoffee) [vending=water](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dwater) [vending=newspapers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dnewspapers) [vending=bicycle_tube](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_tube) [vending=milk](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmilk) [vending=bread](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbread) [vending=eggs](https://wiki.openstreetmap.org/wiki/Tag:vending%3Deggs) [vending=ice_cream](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dice_cream) [vending=cheese](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dcheese) [vending=honey](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dhoney) [vending=potatoes](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpotatoes) [vending=meat](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dmeat) [vending=fruit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dfruit) [vending=strawberries](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dstrawberries) [vending=flowers](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dflowers) [vending=parking_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dparking_tickets) [vending=elongated_coin](https://wiki.openstreetmap.org/wiki/Tag:vending%3Delongated_coin) [vending=public_transport_tickets](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dpublic_transport_tickets) [vending=bicycle_light](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_light) [vending=gloves](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dgloves) [vending=bicycle_repair_kit](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_repair_kit) [vending=bicycle_pump](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_pump) [vending=bicycle_lock](https://wiki.openstreetmap.org/wiki/Tag:vending%3Dbicycle_lock) [vending=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) | [brand=Continental](https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental) [brand=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) | [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 | [payment:coins:denominations=0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [payment:coins:denominations=0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [payment:coins:denominations=0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [payment:coins:denominations=0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [payment:coins:denominations=0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [payment:coins:denominations=0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [payment:coins:denominations=1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [payment:coins:denominations=2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [payment:coins:denominations=0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [payment:coins:denominations=0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [payment:coins:denominations=0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [payment:coins:denominations=0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [payment:coins:denominations=1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [payment:coins:denominations=2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [payment:coins:denominations=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 | [payment:notes:denominations=5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [payment:notes:denominations=10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [payment:notes:denominations=20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [payment:notes:denominations=50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [payment:notes:denominations=100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [payment:notes:denominations=200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [payment:notes:denominations=500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR) [payment:notes:denominations=10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 CHF) [payment:notes:denominations=20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 CHF) [payment:notes:denominations=50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 CHF) [payment:notes:denominations=100 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 CHF) [payment:notes:denominations=200 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 CHF) [payment:notes:denominations=1000 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D1000 CHF) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <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 | [indoor=yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [indoor=no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) |
|
|
||||||
| <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/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/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/operational_status#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operational_status/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | Multiple choice | [operational_status](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [operational_status=broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [operational_status=closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [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_ |
|
|
||||||
| [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/>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)) |
|
|
||||||
| [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_ |
|
|
||||||
| [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_ |
|
|
||||||
| [operator](#operator) <br/> _(Original in [questions](./BuiltinQuestions.md#operator))_ | Who operates this vending machine?<br/>_This vending machine is operated by {operator}_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [indoor](#indoor) | Is this vending machine indoors?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [phone](#phone) <br/> _(Original in [questions](./BuiltinQuestions.md#phone))_ | What is the phone number of the operator of this vending machine?<br/>_{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}_<br/>1 options | contact | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
|
|
||||||
| [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)) |
|
|
||||||
| [charge_bicycle_tube](#charge_bicycle_tube) | How much does a a bicycle tube cost?<br/>_a bicycle tube costs {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
|
|
||||||
| [charge_bicycle_light](#charge_bicycle_light) | How much does a bicycle light cost?<br/>_bicycle light costs {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
|
|
||||||
| [charge_condom](#charge_condom) | How much does a a condom cost?<br/>_a condom costs {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
|
|
||||||
| [operational_status](#operational_status) | Is this vending machine still operational?<br/>4 options | | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [create_copy](#create_copy) | _{create_copy()}_ | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### repeated
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*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 has labels `level`
|
|
||||||
|
|
||||||
### single_level
|
|
||||||
The question is `On what level is this feature located?`
|
|
||||||
|
|
||||||
*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 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 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:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
|
|
||||||
- *Located on the first basement level* 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%3D-1' target='_blank'>-1</a>
|
|
||||||
|
|
||||||
This tagrendering has labels `level`
|
|
||||||
|
|
||||||
### vending
|
|
||||||
The question is `What does this vending machine sell?`
|
|
||||||
|
|
||||||
*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/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/vending_machine/utensils.svg'> *Food is 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%3Dfood' target='_blank'>food</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/vending_machine/smoking.svg'> *Cigarettes 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%3Dcigarettes' target='_blank'>cigarettes</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/vending_machine/condom.svg'> *Condoms 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%3Dcondoms' target='_blank'>condoms</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/vending_machine/mug-saucer.svg'> *Coffee is 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%3Dcoffee' target='_blank'>coffee</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/id_presets/temaki-water_bottle.svg'> *Drinking water is 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%3Dwater' target='_blank'>water</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/id_presets/fas-newspaper.svg'> *Newspapers 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%3Dnewspapers' target='_blank'>newspapers</a>
|
|
||||||
- *Bicycle inner tubes 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_tube' target='_blank'>bicycle_tube</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/vending_machine/cow.svg'> *Milk is 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%3Dmilk' target='_blank'>milk</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/id_presets/maki-bakery.svg'> *Bread is 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%3Dbread' target='_blank'>bread</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/vending_machine/egg.svg'> *Eggs 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%3Deggs' target='_blank'>eggs</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/ice_cream/ice_cream.svg'> *Ice cream is 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%3Dice_cream' target='_blank'>ice_cream</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/id_presets/fas-cheese.svg'> *Cheese is 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%3Dcheese' target='_blank'>cheese</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/vending_machine/honey.svg'> *Honey is 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%3Dhoney' target='_blank'>honey</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/vending_machine/potato.svg'> *Potatoes 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%3Dpotatoes' target='_blank'>potatoes</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/id_presets/temaki-meat.svg'> *Meat is 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%3Dmeat' target='_blank'>meat</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/vending_machine/fruits.svg'> *Fruit is 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%3Dfruit' target='_blank'>fruit</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/vending_machine/strawberry.svg'> *Strawberries 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%3Dstrawberries' target='_blank'>strawberries</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/id_presets/maki-florist.svg'> *Flowers 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%3Dflowers' target='_blank'>flowers</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/parking_ticket_machine/parking_tickets.svg'> *Parking tickets 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%3Dparking_tickets' target='_blank'>parking_tickets</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/elongated_coin/penny.svg'> *Pressed pennies 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%3Delongated_coin' target='_blank'>elongated_coin</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/stations/public_transport_tickets.svg'> *Public transport tickets 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%3Dpublic_transport_tickets' target='_blank'>public_transport_tickets</a>
|
|
||||||
- *Bicycle lights 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_light' target='_blank'>bicycle_light</a>
|
|
||||||
- *Gloves 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%3Dgloves' target='_blank'>gloves</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 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
|
|
||||||
The question is `Which brand of tubes are sold here?`
|
|
||||||
|
|
||||||
*{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>
|
|
||||||
- *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>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
### 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>
|
|
||||||
|
|
||||||
### 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:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a> | <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>) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$)
|
|
||||||
|
|
||||||
### 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:cash' target='_blank'>payment:cash</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:cash%3Dyes' target='_blank'>yes</a> | <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>) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$)
|
|
||||||
|
|
||||||
### operator
|
|
||||||
The question is `Who operates this vending machine?`
|
|
||||||
|
|
||||||
*This vending machine is operated by {operator}* is shown if `operator` is set.
|
|
||||||
|
|
||||||
### indoor
|
|
||||||
The question is `Is this vending machine indoors?`
|
|
||||||
|
|
||||||
- *This vending machine is outdoors* is shown if with indoor=. _This option cannot be chosen as answer_
|
|
||||||
- *This vending machine is indoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This vending machine is outdoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### phone
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### website
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### charge_bicycle_tube
|
|
||||||
The question is `How much does a a bicycle tube cost?`
|
|
||||||
|
|
||||||
*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.*)$
|
|
||||||
|
|
||||||
### charge_bicycle_light
|
|
||||||
The question is `How much does a bicycle light cost?`
|
|
||||||
|
|
||||||
*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.*)$
|
|
||||||
|
|
||||||
### charge_condom
|
|
||||||
The question is `How much does a a condom cost?`
|
|
||||||
|
|
||||||
*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.*)$
|
|
||||||
|
|
||||||
### operational_status
|
|
||||||
The question is `Is this vending machine still operational?`
|
|
||||||
|
|
||||||
- *This vending machine works* is shown if with operational_status=
|
|
||||||
- *This vending machine 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 vending machine is closed* 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%3Dclosed' target='_blank'>closed</a>
|
|
||||||
- *The operational status is <i>{operational_status}</i>* is shown if with operational_status~.+. _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### create_copy
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{create_copy()}*
|
|
||||||
|
|
||||||
### 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`
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| vending.0 | *All vending machines* (default) | |
|
|
||||||
| vending.1 | Sale of drinks | vending~^(.*drinks.*)$ |
|
|
||||||
| vending.2 | Sale of sweets | vending~^(.*sweets.*)$ |
|
|
||||||
| vending.3 | Sale of food | vending~^(.*food.*)$ |
|
|
||||||
| vending.4 | Sale of cigarettes | vending~^(.*cigarettes.*)$ |
|
|
||||||
| vending.5 | Sale of condoms | vending~^(.*condoms.*)$ |
|
|
||||||
| vending.6 | Sale of coffee | vending~^(.*coffee.*)$ |
|
|
||||||
| vending.7 | Sale of water | vending~^(.*water.*)$ |
|
|
||||||
| vending.8 | Sale of newspapers | vending~^(.*newspapers.*)$ |
|
|
||||||
| vending.9 | Sale of bicycle inner tubes | vending~^(.*bicycle_tube.*)$ |
|
|
||||||
| vending.10 | Sale of milk | vending~^(.*milk.*)$ |
|
|
||||||
| vending.11 | Sale of bread | vending~^(.*bread.*)$ |
|
|
||||||
| vending.12 | Sale of eggs | vending~^(.*eggs.*)$ |
|
|
||||||
| vending.13 | Sale of ice cream | vending~^(.*ice_cream.*)$ |
|
|
||||||
| vending.14 | Sale of cheese | vending~^(.*cheese.*)$ |
|
|
||||||
| vending.15 | Sale of honey | vending~^(.*honey.*)$ |
|
|
||||||
| vending.16 | Sale of potatoes | vending~^(.*potatoes.*)$ |
|
|
||||||
| vending.17 | Sale of meat | vending~^(.*meat.*)$ |
|
|
||||||
| vending.18 | Sale of fruit | vending~^(.*fruit.*)$ |
|
|
||||||
| vending.19 | Sale of strawberries | vending~^(.*strawberries.*)$ |
|
|
||||||
| vending.20 | Sale of flowers | vending~^(.*flowers.*)$ |
|
|
||||||
| vending.21 | Sale of parking tickets | vending~^(.*parking_tickets.*)$ |
|
|
||||||
| vending.22 | Sale of pressed pennies | vending=elongated_coin |
|
|
||||||
| vending.23 | Sale of public transport tickets | vending~^(.*public_transport_tickets.*)$ |
|
|
||||||
| vending.24 | Sale of bicycle lights | vending=bicycle_light |
|
|
||||||
| vending.25 | Sale of gloves | vending=gloves |
|
|
||||||
| vending.26 | Sale of bicycle repair kits | vending=bicycle_repair_kit |
|
|
||||||
| vending.27 | Sale of bicycle pumps | vending=bicycle_pump |
|
|
||||||
| vending.28 | Sale of bicycle locks | vending=bicycle_lock |
|
|
||||||
|
|
||||||
| 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/themes/vending_machine/vending_machine.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/vending_machine/vending_machine.json)
|
|
||||||
|
|
@ -1,133 +1,165 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# ambulancestation
|
ambulancestation
|
||||||
|
==================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/themes/hailhydrant/Twemoji_1f691.svg' height="100px">
|
||||||
|
|
||||||
An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.
|
An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **12** and higher
|
- This layer is shown at zoomlevel **12** 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)
|
|
||||||
- [ambulance-name](#ambulance-name)
|
|
||||||
- [ambulance-street](#ambulance-street)
|
|
||||||
- [ambulance-place](#ambulance-place)
|
|
||||||
- [ambulance-agency](#ambulance-agency)
|
|
||||||
- [ambulance-operator-type](#ambulance-operator-type)
|
|
||||||
- [images](#images)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [disaster_response](https://mapcomplete.org/disaster_response)
|
#### Themes using this layer
|
||||||
- [hailhydrant](https://mapcomplete.org/hailhydrant)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **an ambulance station** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dambulance_station' target='_blank'>ambulance_station</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dambulance_station' target='_blank'>ambulance_station</a>**
|
- [hailhydrant](https://mapcomplete.osm.be/hailhydrant)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22emergency%22%3D%22ambulance_station%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 |
|
Basic tags for this layer
|
||||||
-----|-----|----- |
|
---------------------------
|
||||||
| <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/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:place#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Aplace/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator:type#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator%3Atype/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [operator:type=government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [operator:type=community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [operator:type=ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [operator:type=private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate) |
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dambulance_station' target='_blank'>ambulance_station</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22emergency%22%3D%22ambulance_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate)
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [ambulance-name](#ambulance-name) | What is the name of this ambulance station?<br/>_This station is called {name}._ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [ambulance-street](#ambulance-street) | What is the street name where the station located?<br/>_This station is along a highway called {addr:street}._ | | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [ambulance-place](#ambulance-place) | Where is the station located? (e.g. name of neighborhood, villlage, or town)<br/>_This station is found within {addr:place}._ | | *[addr:place](https://wiki.osm.org/wiki/Key:addr:place)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [ambulance-agency](#ambulance-agency) | What agency operates this station?<br/>_This station is operated by {operator}._ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [ambulance-operator-type](#ambulance-operator-type) | How is the station operator classified?<br/>_The operator is a(n) {operator:type} entity._<br/>4 options | | *[operator:type](https://wiki.osm.org/wiki/Key:operator:type)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### ambulance-name
|
### ambulance-name
|
||||||
The question is `What is the name of this ambulance station?`
|
|
||||||
|
|
||||||
*This station is called {name}.* is shown if `name` is set.
|
|
||||||
|
|
||||||
|
The question is *What is the name of this ambulance station?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
|
|
||||||
|
This is rendered with `This station is called {name}.`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### ambulance-street
|
### ambulance-street
|
||||||
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.
|
|
||||||
|
|
||||||
|
The question is *What is the street name where the station located?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street)
|
||||||
|
|
||||||
|
This is rendered with `This station is along a highway called {addr:street}.`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### ambulance-place
|
### ambulance-place
|
||||||
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.
|
|
||||||
|
|
||||||
|
The question is *Where is the station located? (e.g. name of neighborhood, villlage, or town)*
|
||||||
|
|
||||||
|
This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place)
|
||||||
|
|
||||||
|
This is rendered with `This station is found within {addr:place}.`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### ambulance-agency
|
### ambulance-agency
|
||||||
The question is `What agency operates this station?`
|
|
||||||
|
|
||||||
*This station is operated by {operator}.* is shown if `operator` is set.
|
|
||||||
|
|
||||||
|
The question is *What agency operates this station?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
|
|
||||||
|
This is rendered with `This station is operated by {operator}.`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### ambulance-operator-type
|
### ambulance-operator-type
|
||||||
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 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 question is *How is the station operator classified?*
|
||||||
- *The station is operated by a formal group of volunteers.* 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%3Dngo' target='_blank'>ngo</a>
|
|
||||||
- *The station is privately operated.* 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%3Dprivate' target='_blank'>private</a>
|
This rendering asks information about the property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type)
|
||||||
|
|
||||||
|
This is rendered with `The operator is a(n) {operator:type} entity.`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *The station is operated by the government.* corresponds with `operator:type=government`
|
||||||
|
- *The station is operated by a community-based, or informal organization.* corresponds with `operator:type=community`
|
||||||
|
- *The station is operated by a formal group of volunteers.* corresponds with `operator:type=ngo`
|
||||||
|
- *The station is privately operated.* corresponds with `operator:type=private`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/ambulancestation/ambulancestation.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/ambulancestation/ambulancestation.json)
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/ambulancestation/ambulancestation.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ambulancestation/ambulancestation.json)
|
||||||
|
|
|
||||||
|
|
@ -1,191 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# animal_shelter
|
|
||||||
|
|
||||||
An animal shelter is a facility where animals in trouble are brought and facility's staff (volunteers or not) feeds them and cares of them, rehabilitating and healing them if necessary. This definition includes kennels for abandoned dogs, catteries for abandoned cats, shelters for other abandoned pets and wildlife recovery centres.
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **0** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [reviews](#reviews)
|
|
||||||
- [2](#2)
|
|
||||||
- [website](#website)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [email](#email)
|
|
||||||
- [6](#6)
|
|
||||||
- [opening_hours_by_appointment](#opening_hours_by_appointment)
|
|
||||||
- [boarded_animals](#boarded_animals)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [pets](https://mapcomplete.org/pets)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **an animal shelter** 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%3Danimal_shelter' target='_blank'>animal_shelter</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Danimal_shelter' target='_blank'>animal_shelter</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%22animal_shelter%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/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/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/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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/purpose#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/purpose/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [purpose](https://wiki.openstreetmap.org/wiki/Key:purpose) | Multiple choice | [purpose=adoption](https://wiki.openstreetmap.org/wiki/Tag:purpose%3Dadoption) [purpose=sanctuary](https://wiki.openstreetmap.org/wiki/Tag:purpose%3Dsanctuary) [purpose=release](https://wiki.openstreetmap.org/wiki/Tag:purpose%3Drelease) |
|
|
||||||
| <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) | [opening_hours="by appointment"](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment") |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/animal_shelter#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/animal_shelter/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [animal_shelter](https://wiki.openstreetmap.org/wiki/Key:animal_shelter) | [string](../SpecialInputElements.md#string) | [animal_shelter=dog](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Ddog) [animal_shelter=cat](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dcat) [animal_shelter=horse](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dhorse) [animal_shelter=bird](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dbird) [animal_shelter=wildlife](https://wiki.openstreetmap.org/wiki/Tag:animal_shelter%3Dwildlife) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
|
|
||||||
| [2](#2) | What is the name of this animal shelter?<br/>_This animal shelter is named <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [6](#6) | What is the purpose of the animal shelter?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [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)) |
|
|
||||||
| [boarded_animals](#boarded_animals) | Which animals are accepted here?<br/>_{animal_shelter} is kept here_<br/>5 options | | *[animal_shelter](https://wiki.osm.org/wiki/Key:animal_shelter)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### reviews
|
|
||||||
Shows the reviews module (including the possibility to leave a review)
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{create_review()}{list_reviews()}*
|
|
||||||
|
|
||||||
### 2
|
|
||||||
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.
|
|
||||||
|
|
||||||
### website
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### phone
|
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### email
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### 6
|
|
||||||
The question is `What is the purpose of the animal shelter?`
|
|
||||||
|
|
||||||
- *Animals are kept here until adopted by a new owner* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:purpose' target='_blank'>purpose</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:purpose%3Dadoption' target='_blank'>adoption</a>
|
|
||||||
- *Animals are taken care of for the rest of their lives* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:purpose' target='_blank'>purpose</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:purpose%3Dsanctuary' target='_blank'>sanctuary</a>
|
|
||||||
- *Injured animals are rehabilitated here until they can be released in nature again * is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:purpose' target='_blank'>purpose</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:purpose%3Drelease' target='_blank'>release</a>
|
|
||||||
|
|
||||||
### opening_hours_by_appointment
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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_
|
|
||||||
- *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_
|
|
||||||
|
|
||||||
### boarded_animals
|
|
||||||
The question is `Which animals are accepted here?`
|
|
||||||
|
|
||||||
*{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>
|
|
||||||
- *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>
|
|
||||||
- *Horses 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%3Dhorse' target='_blank'>horse</a>
|
|
||||||
- *Birds 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%3Dbird' target='_blank'>bird</a>
|
|
||||||
- *Wild animals 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%3Dwildlife' target='_blank'>wildlife</a>
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/animal_shelter/animal_shelter.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/animal_shelter/animal_shelter.json)
|
|
||||||
|
|
@ -1,539 +1,437 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# artwork
|
artwork
|
||||||
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/themes/artwork/artwork.svg' height="100px">
|
||||||
|
|
||||||
An open map of statues, busts, graffitis and other artwork all over the world
|
An open map of statues, busts, graffitis and other artwork all over the world
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **12** and higher
|
- This layer is shown at zoomlevel **12** and higher
|
||||||
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `an artwork on a wall` snaps to this layer (artwork.presets[1])
|
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images_no_blur](#images_no_blur)
|
|
||||||
- [artwork-artwork_type](#artwork-artwork_type)
|
|
||||||
- [artwork-artist-wikidata](#artwork-artist-wikidata)
|
|
||||||
- [artwork-artist_name](#artwork-artist_name)
|
|
||||||
- [artwork-website](#artwork-website)
|
|
||||||
- [wikipedia](#wikipedia)
|
|
||||||
- [artwork_subject](#artwork_subject)
|
|
||||||
- [doubles_as_memorial](#doubles_as_memorial)
|
|
||||||
- [memorial-type](#memorial-type)
|
|
||||||
- [inscription](#inscription)
|
|
||||||
- [memorial-wikidata](#memorial-wikidata)
|
|
||||||
- [subject-wikidata](#subject-wikidata)
|
|
||||||
- [doubles_as_bench](#doubles_as_bench)
|
|
||||||
- [bench-backrest](#bench-backrest)
|
|
||||||
- [bench-armrest](#bench-armrest)
|
|
||||||
- [bench-seats](#bench-seats)
|
|
||||||
- [bench-material](#bench-material)
|
|
||||||
- [bench-direction](#bench-direction)
|
|
||||||
- [bench-colour](#bench-colour)
|
|
||||||
- [bench-survey:date](#bench-surveydate)
|
|
||||||
- [bench-inscription](#bench-inscription)
|
|
||||||
- [bench-memorial](#bench-memorial)
|
|
||||||
- [doubles_as_wayside_shrine](#doubles_as_wayside_shrine)
|
|
||||||
- [shrine_name](#shrine_name)
|
|
||||||
- [religion](#religion)
|
|
||||||
- [denomination_christian](#denomination_christian)
|
|
||||||
- [denomination_muslim](#denomination_muslim)
|
|
||||||
- [denomination_jewish](#denomination_jewish)
|
|
||||||
- [denomination_other](#denomination_other)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [artwork](https://mapcomplete.org/artwork)
|
#### Themes using this layer
|
||||||
- [memorials](https://mapcomplete.org/memorials)
|
|
||||||
- [nature](https://mapcomplete.org/nature)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [wayside_shrines](https://mapcomplete.org/wayside_shrines)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **an artwork** which has the following tags:<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>
|
|
||||||
- **an artwork on a wall** which has the following tags:<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> (snaps to layers `walls_and_buildings`)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<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>**
|
- [artwork](https://mapcomplete.osm.be/artwork)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22artwork%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 |
|
Basic tags for 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) | [artwork_type=architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [artwork_type=mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [artwork_type=painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [artwork_type=sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [artwork_type=statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [artwork_type=bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [artwork_type=stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [artwork_type=installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [artwork_type=graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [artwork_type=relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [artwork_type=azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [artwork_type=tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [artwork_type=woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) [artwork_type=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_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) | |
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/subject:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/subject%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
| <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 | [historic=memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [historic](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/memorial#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/memorial/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [memorial](https://wiki.openstreetmap.org/wiki/Key:memorial) | [string](../SpecialInputElements.md#string) | [memorial=statue](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstatue) [memorial=plaque](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dplaque) [memorial=bench](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbench) [memorial=ghost_bike](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dghost_bike) [memorial=stolperstein](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstolperstein) [memorial=stele](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstele) [memorial=stone](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstone) [memorial=bust](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbust) [memorial=sculpture](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dsculpture) [memorial=obelisk](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dobelisk) [memorial=cross](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dcross) [memorial=blue_plaque](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dblue_plaque) [memorial=tank](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dtank) [memorial=tree](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dtree) |
|
- <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>
|
||||||
| <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/wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/subject:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/subject%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22tourism%22%3D%22artwork%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/amenity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/amenity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [amenity=bench](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench) [amenity](https://wiki.openstreetmap.org/wiki/Tag:amenity%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/backrest#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/backrest/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [backrest=yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [backrest=yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [backrest=no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/armrest#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/armrest/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [armrest](https://wiki.openstreetmap.org/wiki/Key:armrest) | Multiple choice | [armrest=yes](https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dyes) [armrest=no](https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/seats#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/seats/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) | |
|
Supported attributes
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/material#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/material/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [material=wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [material=metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [material=stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [material=concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [material=plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [material=steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel) |
|
----------------------
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/direction#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/direction/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/colour#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/colour/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [colour=brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [colour=green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [colour=gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [colour=white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [colour=red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [colour=black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [colour=blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [colour=yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) |
|
|
||||||
| <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) | [survey: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) | |
|
Warning:
|
||||||
| <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 | [historic=memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [historic](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 | [historic=wayside_shrine](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine) [historic](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
|
this quick overview is incomplete
|
||||||
| <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/religion#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/religion/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [religion](https://wiki.openstreetmap.org/wiki/Key:religion) | [string](../SpecialInputElements.md#string) | [religion=christian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian) [religion=buddhist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist) [religion=hindu](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dhindu) [religion=jain](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djain) [religion=jewish](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish) [religion=muslim](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim) [religion=pagan](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dpagan) [religion=shinto](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dshinto) [religion=sikh](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dsikh) [religion=taoist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dtaoist) [religion=zoroastrian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dzoroastrian) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [denomination=catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic) [denomination=roman_catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic) [denomination=orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [denomination=greek_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dgreek_orthodox) [denomination=russian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Drussian_orthodox) [denomination=serbian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dserbian_orthodox) [denomination=protestant](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dprotestant) [denomination=anglican](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Danglican) [denomination=adventist](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dadventist) [denomination=evangelical](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Devangelical) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [denomination=shia](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia) [denomination=sunni](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni) [denomination=sufi](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsufi) |
|
attribute | type | values which are supported by this layer
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [denomination=conservative](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative) [denomination=orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [denomination=hasidic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dhasidic) [denomination=reform](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dreform) |
|
----------- | ------ | ------------------------------------------
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artwork_type#values) [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)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artist:wikidata#values) [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artist_name#values) [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/subject:wikidata#values) [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [bench](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench) [](https://wiki.openstreetmap.org/wiki/Tag:amenity%3D)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/backrest#values) [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/seats#values) [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/historic#values) [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)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| 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_ |
|
|
||||||
| [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_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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [artwork_subject](#artwork_subject) | What does this artwork depict?<br/>_This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}_ | artwork-question | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
|
|
||||||
| [doubles_as_memorial](#doubles_as_memorial) | Does this artwork serve as a memorial?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [memorial-type](#memorial-type) <br/> _(Original in [memorial](./memorial.md#memorial-type))_ | What type of memorial is this?<br/>_This is a {memorial}_<br/>15 options | memorial-questions | *[memorial](https://wiki.osm.org/wiki/Key:memorial)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [inscription](#inscription) <br/> _(Original in [memorial](./memorial.md#inscription))_ | What is the inscription on this memorial?<br/>_The inscription on this memorial reads: <p><i>{inscription}<i></p>_<br/>1 options | memorial-questions | *[inscription](https://wiki.osm.org/wiki/Key:inscription)* ([text](../SpecialInputElements.md#text)) |
|
|
||||||
| [memorial-wikidata](#memorial-wikidata) <br/> _(Original in [memorial](./memorial.md#memorial-wikidata))_ | What is the Wikipedia page about this memorial?<br/>_<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}_ | memorial-specific, memorial-questions | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
|
|
||||||
| [subject-wikidata](#subject-wikidata) <br/> _(Original in [memorial](./memorial.md#subject-wikidata))_ | What is the Wikipedia page about the person or event that is remembered here?<br/>_<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}_ | memorial-specific, memorial-questions | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
|
|
||||||
| [doubles_as_bench](#doubles_as_bench) | Does this artwork serve as a bench?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [bench-backrest](#bench-backrest) <br/> _(Original in [bench](./bench.md#bench-backrest))_ | Does this bench have a backrest?<br/>3 options | bench-questions | _Multiple choice only_ |
|
|
||||||
| [bench-armrest](#bench-armrest) <br/> _(Original in [bench](./bench.md#bench-armrest))_ | Does this bench have one or more armrests?<br/>2 options | bench-questions | _Multiple choice only_ |
|
|
||||||
| [bench-seats](#bench-seats) <br/> _(Original in [bench](./bench.md#bench-seats))_ | How many seats does this bench have?<br/>_This bench has {seats} seats_<br/>1 options | bench-questions | *[seats](https://wiki.osm.org/wiki/Key:seats)* ([nat](../SpecialInputElements.md#nat)) |
|
|
||||||
| [bench-material](#bench-material) <br/> _(Original in [bench](./bench.md#bench-material))_ | What is the bench (seating) made from?<br/>_Material: {material}_<br/>6 options | bench-questions | *[material](https://wiki.osm.org/wiki/Key:material)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [bench-direction](#bench-direction) <br/> _(Original in [bench](./bench.md#bench-direction))_ | In which direction are you looking when sitting on the bench?<br/>_When sitting on the bench, one looks towards {direction}°._ | bench-questions | *[direction](https://wiki.osm.org/wiki/Key:direction)* ([direction](../SpecialInputElements.md#direction)) |
|
|
||||||
| [bench-colour](#bench-colour) <br/> _(Original in [bench](./bench.md#bench-colour))_ | Which colour does this bench have?<br/>_Colour: {colour}_<br/>8 options | bench-questions | *[colour](https://wiki.osm.org/wiki/Key:colour)* ([color](../SpecialInputElements.md#color)) |
|
|
||||||
| [bench-survey:date](#bench-survey:date) <br/> _(Original in [bench](./bench.md#bench-survey:date))_ | When was this bench last surveyed?<br/>_This bench was last surveyed on {survey:date}_<br/>1 options | bench-questions | *[survey:date](https://wiki.osm.org/wiki/Key:survey:date)* ([date](../SpecialInputElements.md#date)) |
|
|
||||||
| [bench-inscription](#bench-inscription) <br/> _(Original in [bench](./bench.md#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-memorial](#bench-memorial) <br/> _(Original in [bench](./bench.md#bench-memorial))_ | Does this bench act as memorial for someone or something?<br/>2 options | bench-questions | _Multiple choice only_ |
|
|
||||||
| [doubles_as_wayside_shrine](#doubles_as_wayside_shrine) | Does this artwork also double as wayside shrine?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [shrine_name](#shrine_name) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#shrine_name))_ | What's the name of this ?<br/>_The name of this {title()} is <b>{name}</b>_<br/>1 options | shrine_questions | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [religion](#religion) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#religion))_ | To which religion is this shrine dedicated?<br/>_This shrine is {religion}_<br/>11 options | shrine_questions | *[religion](https://wiki.osm.org/wiki/Key:religion)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [denomination_christian](#denomination_christian) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_christian))_ | What's the Christian denomination of this ?<br/>_The religious denomination is <b>{denomination}</b>_<br/>10 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [denomination_muslim](#denomination_muslim) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_muslim))_ | What's the Muslim denomination of this shrine?<br/>_The religious subdenomination is {denomination}_<br/>3 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [denomination_jewish](#denomination_jewish) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_jewish))_ | What's the Jewish denomination of this shrine?<br/>_The religious subdenomination is {denomination}_<br/>4 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [denomination_other](#denomination_other) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_other))_ | What's the denomination of this shrine?<br/>_The denomination of this shrine is {denomination}_ | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### images_no_blur
|
|
||||||
Same as `images`, but uploaded request to disable blurring to the panoramax server
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload(,,,true)}*
|
|
||||||
|
|
||||||
### artwork-artwork_type
|
### artwork-artwork_type
|
||||||
The question is `What is the type of this artwork?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
- *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>
|
The question is *What is the type of this artwork?*
|
||||||
- *Painting* 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%3Dpainting' target='_blank'>painting</a>
|
|
||||||
- *Sculpture* 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%3Dsculpture' target='_blank'>sculpture</a>
|
This rendering asks information about the property [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type)
|
||||||
- *Statue* 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%3Dstatue' target='_blank'>statue</a>
|
|
||||||
- *Bust* 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%3Dbust' target='_blank'>bust</a>
|
This is rendered with `This is a {artwork_type}`
|
||||||
- *Stone* 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%3Dstone' target='_blank'>stone</a>
|
|
||||||
- *Installation* 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%3Dinstallation' target='_blank'>installation</a>
|
|
||||||
- *Graffiti* 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%3Dgraffiti' target='_blank'>graffiti</a>
|
|
||||||
- *Relief* 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%3Drelief' target='_blank'>relief</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>
|
- *Architecture* corresponds with `artwork_type=architecture`
|
||||||
- *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>
|
- *Mural* corresponds with `artwork_type=mural`
|
||||||
- *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>
|
- *Painting* corresponds with `artwork_type=painting`
|
||||||
|
- *Sculpture* corresponds with `artwork_type=sculpture`
|
||||||
|
- *Statue* corresponds with `artwork_type=statue`
|
||||||
|
- *Bust* corresponds with `artwork_type=bust`
|
||||||
|
- *Stone* corresponds with `artwork_type=stone`
|
||||||
|
- *Installation* corresponds with `artwork_type=installation`
|
||||||
|
- *Graffiti* corresponds with `artwork_type=graffiti`
|
||||||
|
- *Relief* corresponds with `artwork_type=relief`
|
||||||
|
- *Azulejo (Spanish decorative tilework)* corresponds with `artwork_type=azulejo`
|
||||||
|
- *Tilework* corresponds with `artwork_type=tilework`
|
||||||
|
- *Woodcarving* corresponds with `artwork_type=woodcarving`
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
This tagrendering has labels `artwork-question`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### artwork-artist-wikidata
|
### artwork-artist-wikidata
|
||||||
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.
|
|
||||||
|
|
||||||
|
The question is *Who made this artwork?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata)
|
||||||
|
|
||||||
|
This is rendered with `This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
This tagrendering has labels `artwork-question`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### artwork-artist_name
|
### artwork-artist_name
|
||||||
The question is `Which artist created this?`
|
|
||||||
|
|
||||||
*Created by {artist_name}* is shown if `artist_name` is set.
|
|
||||||
|
|
||||||
|
The question is *Which artist created this?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name)
|
||||||
|
|
||||||
|
This is rendered with `Created by {artist_name}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
This tagrendering has labels `artwork-question`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### artwork-website
|
### artwork-website
|
||||||
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.
|
|
||||||
|
|
||||||
|
The question is *Is there a website with more information about this artwork?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
|
|
||||||
|
This is rendered with `More information on <a href='{website}' target='_blank'>this website</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
This tagrendering has labels `artwork-question`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### 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?`
|
|
||||||
|
|
||||||
*{wikipedia():max-height:25rem}* is shown if `wikidata` is set.
|
The question is *What is the corresponding Wikidata entity?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata)
|
||||||
|
|
||||||
|
This is rendered with `{wikipedia():max-height:25rem}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *{wikipedia():max-height:25rem}* corresponds with `wikipedia~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *No Wikipedia page has been linked yet* corresponds with ``
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- *{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_
|
|
||||||
|
|
||||||
### artwork_subject
|
### artwork_subject
|
||||||
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.
|
|
||||||
|
|
||||||
|
The question is *What does this artwork depict?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata)
|
||||||
|
|
||||||
|
This is rendered with `This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `subject:wikidata~.+`
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
This tagrendering has labels `artwork-question`
|
||||||
|
|
||||||
### doubles_as_memorial
|
|
||||||
The question is `Does this artwork serve as a memorial?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/memorial/memorial.svg'> *This artwork also serves as a memorial* is shown if with <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 artwork does not serve as a memorial* is shown if with historic=
|
|
||||||
|
|
||||||
### memorial-type
|
|
||||||
The question is `What type of memorial is this?`
|
|
||||||
|
|
||||||
*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 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 commemorative bench* 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%3Dbench' target='_blank'>bench</a>
|
|
||||||
- *This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash* 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%3Dghost_bike' target='_blank'>ghost_bike</a>
|
|
||||||
- *This is a stolperstein (stumbing stone)* 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%3Dstolperstein' target='_blank'>stolperstein</a>
|
|
||||||
- *This is a stele* 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%3Dstele' target='_blank'>stele</a>
|
|
||||||
- *This is a memorial stone* 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%3Dstone' target='_blank'>stone</a>
|
|
||||||
- *This is a bust* 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%3Dbust' target='_blank'>bust</a>
|
|
||||||
- *This is a sculpture* 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%3Dsculpture' target='_blank'>sculpture</a>
|
|
||||||
- *This is an obelisk* 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%3Dobelisk' target='_blank'>obelisk</a>
|
|
||||||
- *This is a cross* 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%3Dcross' target='_blank'>cross</a>
|
|
||||||
- *This is a blue 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%3Dblue_plaque' target='_blank'>blue_plaque</a>
|
|
||||||
- *This is a historic tank, permanently placed in public space as memorial* 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%3Dtank' target='_blank'>tank</a>
|
|
||||||
- *This is a memorial tree* 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%3Dtree' target='_blank'>tree</a>
|
|
||||||
- *This is a gravestone; the person is buried here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dtomb' target='_blank'>tomb</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 `memorial-questions`
|
|
||||||
|
|
||||||
### inscription
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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 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> & memorial!=bench
|
|
||||||
This tagrendering has labels `memorial-questions`
|
|
||||||
|
|
||||||
### memorial-wikidata
|
|
||||||
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.
|
|
||||||
|
|
||||||
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 `memorial-specific` `memorial-questions`
|
|
||||||
|
|
||||||
### subject-wikidata
|
|
||||||
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.
|
|
||||||
|
|
||||||
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 `memorial-specific` `memorial-questions`
|
|
||||||
|
|
||||||
### doubles_as_bench
|
### doubles_as_bench
|
||||||
The question is `Does this artwork serve as a bench?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/bench.svg'> *This artwork also serves as a bench* is shown if with <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>
|
|
||||||
- *This artwork does not serve as a bench* is shown if with amenity=
|
|
||||||
- *This artwork does not serve as a bench* is shown if with amenity!=bench. _This option cannot be chosen as answer_
|
The question is *Does this artwork serve as a bench?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This artwork also serves as a bench* corresponds with `amenity=bench`
|
||||||
|
- *This artwork does not serve as a bench* corresponds with ``
|
||||||
|
- *This artwork does not serve as a bench* corresponds with `amenity!=bench`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-backrest
|
### bench-backrest
|
||||||
The question is `Does this bench have a backrest?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/two_sided.svg'> *This bench is two-sided and shares the backrest* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:two_sided' target='_blank'>two_sided</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:two_sided%3Dyes' target='_blank'>yes</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/one_sided.svg'> *This bench does have a backrest* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/no_backrest.svg'> *This bench does <b>not</b> have a backrest* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
|
|
||||||
|
The question is *Does this bench have a backrest?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bench is two-sided and shares the backrest* corresponds with `backrest=yes&two_sided=yes`
|
||||||
|
- *Does have a backrest* corresponds with `backrest=yes`
|
||||||
|
- *Does <b>not</b> have a backrest* corresponds with `backrest=no`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bench`
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
### bench-armrest
|
|
||||||
The question is `Does this bench have one or more armrests?`
|
|
||||||
|
|
||||||
- *This bench does have one or more armrests* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:armrest' target='_blank'>armrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This bench does <b>not</b> have any armrests* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:armrest' target='_blank'>armrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:armrest%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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
|
|
||||||
This tagrendering has labels `bench-questions`
|
|
||||||
|
|
||||||
### bench-seats
|
### bench-seats
|
||||||
The question is `How many seats does this bench have?`
|
|
||||||
|
|
||||||
*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 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>
|
The question is *How many seats does this bench have?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [seats](https://wiki.openstreetmap.org/wiki/Key:seats)
|
||||||
|
|
||||||
|
This is rendered with `{seats} seats`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bench does not have separated seats* corresponds with `seats:separated=no`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bench`
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-material
|
### bench-material
|
||||||
The question is `What is the bench (seating) made from?`
|
|
||||||
|
|
||||||
*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 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 stone* 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%3Dstone' target='_blank'>stone</a>
|
|
||||||
- *The seating is made from concrete* 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%3Dconcrete' target='_blank'>concrete</a>
|
|
||||||
- *The seating is made from plastic* 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%3Dplastic' target='_blank'>plastic</a>
|
|
||||||
- *The seating is made from steel* 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%3Dsteel' target='_blank'>steel</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%3Dbench' target='_blank'>bench</a>
|
The question is *What is the bench (seating) made from?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material)
|
||||||
|
|
||||||
|
This is rendered with `Material: {material}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *The seating is made from wood* corresponds with `material=wood`
|
||||||
|
- *The seating is made from metal* corresponds with `material=metal`
|
||||||
|
- *The seating is made from stone* corresponds with `material=stone`
|
||||||
|
- *The seating is made from concrete* corresponds with `material=concrete`
|
||||||
|
- *The seating is made from plastic* corresponds with `material=plastic`
|
||||||
|
- *The seating is made from steel* corresponds with `material=steel`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bench`
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-direction
|
### bench-direction
|
||||||
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.
|
|
||||||
|
|
||||||
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
|
|
||||||
|
The question is *In which direction are you looking when sitting on the bench?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
||||||
|
|
||||||
|
This is rendered with `When sitting on the bench, one looks towards {direction}°.`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bench`
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-colour
|
### bench-colour
|
||||||
The question is `Which colour does this bench have?`
|
|
||||||
|
|
||||||
*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: 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: gray* 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%3Dgray' target='_blank'>gray</a>
|
|
||||||
- *Colour: white* 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%3Dwhite' target='_blank'>white</a>
|
|
||||||
- *Colour: red* 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%3Dred' target='_blank'>red</a>
|
|
||||||
- *Colour: black* 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%3Dblack' target='_blank'>black</a>
|
|
||||||
- *Colour: blue* 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%3Dblue' target='_blank'>blue</a>
|
|
||||||
- *Colour: yellow* 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%3Dyellow' target='_blank'>yellow</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%3Dbench' target='_blank'>bench</a>
|
The question is *Which colour does this bench have?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour)
|
||||||
|
|
||||||
|
This is rendered with `Colour: {colour}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Colour: brown* corresponds with `colour=brown`
|
||||||
|
- *Colour: green* corresponds with `colour=green`
|
||||||
|
- *Colour: gray* corresponds with `colour=gray`
|
||||||
|
- *Colour: white* corresponds with `colour=white`
|
||||||
|
- *Colour: red* corresponds with `colour=red`
|
||||||
|
- *Colour: black* corresponds with `colour=black`
|
||||||
|
- *Colour: blue* corresponds with `colour=blue`
|
||||||
|
- *Colour: yellow* corresponds with `colour=yellow`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bench`
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-survey:date
|
### bench-survey:date
|
||||||
The question is `When was this bench last surveyed?`
|
|
||||||
|
|
||||||
*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set.
|
|
||||||
|
|
||||||
- *Surveyed today!* is shown if with survey:date=
|
|
||||||
|
|
||||||
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>
|
The question is *When was this bench last surveyed?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
||||||
|
|
||||||
|
This is rendered with `This bench was last surveyed on {survey:date}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Surveyed today!* corresponds with `survey:date=`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bench`
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-inscription
|
### bench-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 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 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>
|
The question is *Does this bench have an inscription?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription)
|
||||||
|
|
||||||
|
This is rendered with `This bench does have the following inscription:<br/><p><i>{inscription}</i></p>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bench does not have an inscription* corresponds with `not:inscription=yes`
|
||||||
|
- *This bench does <span class='subtle'>(probably)</span> not have an inscription* corresponds with ``
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bench`
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-memorial
|
### bench-memorial
|
||||||
The question is `Does this bench act as memorial for someone or something?`
|
|
||||||
|
|
||||||
- *This bench is a memorial for someone or something* is shown if with <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 bench is a <b>not</b> a memorial for someone or something* is shown if with historic= & <a href='https://wiki.openstreetmap.org/wiki/Key:not:historic' target='_blank'>not:historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not: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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a> & (<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> | <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbench' target='_blank'>bench</a> | <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> | inscription~.+)
|
|
||||||
|
The question is *Does this bench act as memorial for someone or something?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bench is a memorial for someone or something* corresponds with `historic=memorial`
|
||||||
|
- *This bench is a <b>not</b> a memorial for someone or something* corresponds with `not:historic=memorial`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bench`
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
### doubles_as_wayside_shrine
|
|
||||||
The question is `Does this artwork also double as wayside shrine?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/wayside_shrine/shrine.svg'> *This artwork acts as a wayside shrine* is shown if with <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>
|
|
||||||
- *This artwork does not act as a wayside shrine* is shown if with historic=
|
|
||||||
|
|
||||||
### shrine_name
|
#### Filters
|
||||||
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.
|
|
||||||
|
|
||||||
- *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 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>
|
|
||||||
This tagrendering has labels `shrine_questions`
|
|
||||||
|
|
||||||
### religion
|
|
||||||
The question is `To which religion is this shrine dedicated?`
|
|
||||||
|
|
||||||
*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 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 Hindu 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%3Dhindu' target='_blank'>hindu</a>
|
|
||||||
- *This is a Jain 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%3Djain' target='_blank'>jain</a>
|
|
||||||
- *This is a Jewish 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%3Djewish' target='_blank'>jewish</a>
|
|
||||||
- *This is an Islamic 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%3Dmuslim' target='_blank'>muslim</a>
|
|
||||||
- *This is a Pagan 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%3Dpagan' target='_blank'>pagan</a>
|
|
||||||
- *This is a Shinto 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%3Dshinto' target='_blank'>shinto</a>
|
|
||||||
- *This is a Sikh 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%3Dsikh' target='_blank'>sikh</a>
|
|
||||||
- *This is a Taoist 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%3Dtaoist' target='_blank'>taoist</a>
|
|
||||||
- *This is a Zoroastrian 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%3Dzoroastrian' target='_blank'>zoroastrian</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%3Dwayside_shrine' target='_blank'>wayside_shrine</a>
|
|
||||||
This tagrendering has labels `shrine_questions`
|
|
||||||
|
|
||||||
### denomination_christian
|
|
||||||
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 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 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 Greek-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%3Dgreek_orthodox' target='_blank'>greek_orthodox</a>
|
|
||||||
- *The religious subdenomination is Russian-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%3Drussian_orthodox' target='_blank'>russian_orthodox</a>
|
|
||||||
- *The religious subdenomination is Serbian 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%3Dserbian_orthodox' target='_blank'>serbian_orthodox</a>
|
|
||||||
- *The religious subdenomination is Protestant* 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%3Dprotestant' target='_blank'>protestant</a>
|
|
||||||
- *The religious subdenomination is Anglican* 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%3Danglican' target='_blank'>anglican</a>
|
|
||||||
- *The religious subdenomination is Adventist* 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%3Dadventist' target='_blank'>adventist</a>
|
|
||||||
- *The religious subdenomination is evangelical* 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%3Devangelical' target='_blank'>evangelical</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%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <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 tagrendering has labels `shrine_questions`
|
|
||||||
|
|
||||||
### denomination_muslim
|
|
||||||
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 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 Sufi* 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%3Dsufi' target='_blank'>sufi</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%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim' target='_blank'>muslim</a>
|
|
||||||
This tagrendering has labels `shrine_questions`
|
|
||||||
|
|
||||||
### denomination_jewish
|
|
||||||
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 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 Hasidic* 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%3Dhasidic' target='_blank'>hasidic</a>
|
|
||||||
- *The religious subdenomination is Reform* 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%3Dreform' target='_blank'>reform</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%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish' target='_blank'>jewish</a>
|
|
||||||
This tagrendering has labels `shrine_questions`
|
|
||||||
|
|
||||||
### denomination_other
|
|
||||||
The question is `What's the denomination of this shrine?`
|
|
||||||
|
|
||||||
*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 has labels `shrine_questions`
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| has_image.0 | *With and without images* (default) | |
|
|
||||||
| has_image.1 | Has at least one image | image~.+ | ^(image:[0-9]+)$~~.+ | ^(panoramax:[0-9]+)$~~.+ | mapillary~.+ |
|
|
||||||
| has_image.2 | Probably does not have an image | (image!~.+ | ^(image:[0-9]+!)$~~.+ | ^(panoramax:[0-9]+!)$~~.+ | mapillary!~.+) |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| artwork-artwork_type.0 | *What is the type of this artwork?* (default) | |
|
|
||||||
| artwork-artwork_type.1 | Architecture | artwork_type=architecture |
|
|
||||||
| artwork-artwork_type.2 | Mural | artwork_type=mural |
|
|
||||||
| artwork-artwork_type.3 | Painting | artwork_type=painting |
|
|
||||||
| artwork-artwork_type.4 | Sculpture | artwork_type=sculpture |
|
|
||||||
| artwork-artwork_type.5 | Statue | artwork_type=statue |
|
|
||||||
| artwork-artwork_type.6 | Bust | artwork_type=bust |
|
|
||||||
| artwork-artwork_type.7 | Stone | artwork_type=stone |
|
|
||||||
| artwork-artwork_type.8 | Installation | artwork_type=installation |
|
|
||||||
| artwork-artwork_type.9 | Graffiti | artwork_type=graffiti |
|
|
||||||
| artwork-artwork_type.10 | Relief | artwork_type=relief |
|
|
||||||
| artwork-artwork_type.11 | Azulejo (Spanish decorative tilework) | artwork_type=azulejo |
|
|
||||||
| artwork-artwork_type.12 | Tilework | artwork_type=tilework |
|
|
||||||
| artwork-artwork_type.13 | Woodcarving | artwork_type=woodcarving |
|
|
||||||
| artwork-artwork_type.14 | Poem | artwork_type=poem |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| memorial-type.0 | *What type of memorial is this?* (default) | |
|
|
||||||
| memorial-type.1 | This is a statue | memorial=statue |
|
|
||||||
| memorial-type.2 | This is a plaque | memorial=plaque |
|
|
||||||
| memorial-type.3 | This is a commemorative bench | memorial=bench |
|
|
||||||
| memorial-type.4 | This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash | memorial=ghost_bike |
|
|
||||||
| memorial-type.5 | This is a stolperstein (stumbing stone) | memorial=stolperstein |
|
|
||||||
| memorial-type.6 | This is a stele | memorial=stele |
|
|
||||||
| memorial-type.7 | This is a memorial stone | memorial=stone |
|
|
||||||
| memorial-type.8 | This is a bust | memorial=bust |
|
|
||||||
| memorial-type.9 | This is a sculpture | memorial=sculpture |
|
|
||||||
| memorial-type.10 | This is an obelisk | memorial=obelisk |
|
|
||||||
| memorial-type.11 | This is a cross | memorial=cross |
|
|
||||||
| memorial-type.12 | This is a blue plaque | memorial=blue_plaque |
|
|
||||||
| memorial-type.13 | This is a historic tank, permanently placed in public space as memorial | memorial=tank |
|
|
||||||
| memorial-type.14 | This is a memorial tree | memorial=tree |
|
|
||||||
| memorial-type.15 | This is a gravestone; the person is buried here | historic=tomb |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/artwork/artwork.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/artwork/artwork.json)
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
has_image.0 | With and without images (default) |
|
||||||
|
has_image.1 | Has at least one image | image~.+\|image:0~.+|image:1~.+|image:2~.+|image:3~.+|mapillary~.+
|
||||||
|
has_image.2 | Probably does not have an image |
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/artwork/artwork.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/artwork/artwork.json)
|
||||||
|
|
|
||||||
|
|
@ -1,540 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# artwork_on_wall
|
|
||||||
|
|
||||||
This layer is based on [artwork](../Layers/artwork.md)
|
|
||||||
|
|
||||||
An open map of statues, busts, graffitis and other artwork all over the world
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **16** and higher
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [historic_or_not](#historic_or_not)
|
|
||||||
- [images_no_blur](#images_no_blur)
|
|
||||||
- [artwork-artwork_type](#artwork-artwork_type)
|
|
||||||
- [artwork-artist-wikidata](#artwork-artist-wikidata)
|
|
||||||
- [artwork-artist_name](#artwork-artist_name)
|
|
||||||
- [artwork-website](#artwork-website)
|
|
||||||
- [wikipedia](#wikipedia)
|
|
||||||
- [artwork_subject](#artwork_subject)
|
|
||||||
- [doubles_as_memorial](#doubles_as_memorial)
|
|
||||||
- [memorial-type](#memorial-type)
|
|
||||||
- [inscription](#inscription)
|
|
||||||
- [memorial-wikidata](#memorial-wikidata)
|
|
||||||
- [subject-wikidata](#subject-wikidata)
|
|
||||||
- [doubles_as_bench](#doubles_as_bench)
|
|
||||||
- [bench-backrest](#bench-backrest)
|
|
||||||
- [bench-armrest](#bench-armrest)
|
|
||||||
- [bench-seats](#bench-seats)
|
|
||||||
- [bench-material](#bench-material)
|
|
||||||
- [bench-direction](#bench-direction)
|
|
||||||
- [bench-colour](#bench-colour)
|
|
||||||
- [bench-survey:date](#bench-surveydate)
|
|
||||||
- [bench-inscription](#bench-inscription)
|
|
||||||
- [bench-memorial](#bench-memorial)
|
|
||||||
- [doubles_as_wayside_shrine](#doubles_as_wayside_shrine)
|
|
||||||
- [shrine_name](#shrine_name)
|
|
||||||
- [religion](#religion)
|
|
||||||
- [denomination_christian](#denomination_christian)
|
|
||||||
- [denomination_muslim](#denomination_muslim)
|
|
||||||
- [denomination_jewish](#denomination_jewish)
|
|
||||||
- [denomination_other](#denomination_other)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [lod](#lod)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
5. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [ghostsigns](https://mapcomplete.org/ghostsigns)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
|
||||||
|
|
||||||
0. <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>
|
|
||||||
1. <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> | <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%3Dgraffiti' target='_blank'>graffiti</a> | <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%3Dmosaic' target='_blank'>mosaic</a> | <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%3Drelief' target='_blank'>relief</a> | <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%3Dpainting' target='_blank'>painting</a> | <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_painting' target='_blank'>mural_painting</a>
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22artwork%22%5D%5B%22artwork_type%22%3D%22mural%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22artwork%22%5D%5B%22artwork_type%22%3D%22graffiti%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22artwork%22%5D%5B%22artwork_type%22%3D%22mosaic%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22artwork%22%5D%5B%22artwork_type%22%3D%22relief%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22artwork%22%5D%5B%22artwork_type%22%3D%22painting%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22artwork%22%5D%5B%22artwork_type%22%3D%22mural_painting%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/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 | [historic=advertising](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising) [historic](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) | [artwork_type=architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [artwork_type=mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [artwork_type=painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [artwork_type=sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [artwork_type=statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [artwork_type=bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [artwork_type=stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [artwork_type=installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [artwork_type=graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [artwork_type=relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [artwork_type=azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [artwork_type=tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [artwork_type=woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) [artwork_type=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_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/wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/subject:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/subject%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
| <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 | [historic=memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [historic](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/memorial#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/memorial/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [memorial](https://wiki.openstreetmap.org/wiki/Key:memorial) | [string](../SpecialInputElements.md#string) | [memorial=statue](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstatue) [memorial=plaque](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dplaque) [memorial=bench](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbench) [memorial=ghost_bike](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dghost_bike) [memorial=stolperstein](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstolperstein) [memorial=stele](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstele) [memorial=stone](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dstone) [memorial=bust](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbust) [memorial=sculpture](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dsculpture) [memorial=obelisk](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dobelisk) [memorial=cross](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dcross) [memorial=blue_plaque](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dblue_plaque) [memorial=tank](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dtank) [memorial=tree](https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dtree) |
|
|
||||||
| <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/wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/subject:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/subject%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/amenity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/amenity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [amenity=bench](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench) [amenity](https://wiki.openstreetmap.org/wiki/Tag:amenity%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/backrest#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/backrest/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [backrest=yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [backrest=yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [backrest=no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/armrest#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/armrest/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [armrest](https://wiki.openstreetmap.org/wiki/Key:armrest) | Multiple choice | [armrest=yes](https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dyes) [armrest=no](https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/seats#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/seats/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/material#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/material/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [material=wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [material=metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [material=stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [material=concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [material=plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [material=steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/direction#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/direction/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/colour#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/colour/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [colour=brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [colour=green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [colour=gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [colour=white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [colour=red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [colour=black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [colour=blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [colour=yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) |
|
|
||||||
| <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) | [survey: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/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 | [historic=memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [historic](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 | [historic=wayside_shrine](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine) [historic](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
|
|
||||||
| <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/religion#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/religion/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [religion](https://wiki.openstreetmap.org/wiki/Key:religion) | [string](../SpecialInputElements.md#string) | [religion=christian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian) [religion=buddhist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist) [religion=hindu](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dhindu) [religion=jain](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djain) [religion=jewish](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish) [religion=muslim](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim) [religion=pagan](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dpagan) [religion=shinto](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dshinto) [religion=sikh](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dsikh) [religion=taoist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dtaoist) [religion=zoroastrian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dzoroastrian) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [denomination=catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic) [denomination=roman_catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic) [denomination=orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [denomination=greek_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dgreek_orthodox) [denomination=russian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Drussian_orthodox) [denomination=serbian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dserbian_orthodox) [denomination=protestant](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dprotestant) [denomination=anglican](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Danglican) [denomination=adventist](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dadventist) [denomination=evangelical](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Devangelical) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [denomination=shia](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia) [denomination=sunni](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni) [denomination=sufi](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsufi) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | [denomination=conservative](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative) [denomination=orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [denomination=hasidic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dhasidic) [denomination=reform](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dreform) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/denomination#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/denomination/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [denomination](https://wiki.openstreetmap.org/wiki/Key:denomination) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [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_ |
|
|
||||||
| [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_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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [artwork_subject](#artwork_subject) | What does this artwork depict?<br/>_This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}_ | artwork-question | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
|
|
||||||
| [doubles_as_memorial](#doubles_as_memorial) | Does this artwork serve as a memorial?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [memorial-type](#memorial-type) <br/> _(Original in [memorial](./memorial.md#memorial-type))_ | What type of memorial is this?<br/>_This is a {memorial}_<br/>15 options | memorial-questions | *[memorial](https://wiki.osm.org/wiki/Key:memorial)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [inscription](#inscription) <br/> _(Original in [memorial](./memorial.md#inscription))_ | What is the inscription on this memorial?<br/>_The inscription on this memorial reads: <p><i>{inscription}<i></p>_<br/>1 options | memorial-questions | *[inscription](https://wiki.osm.org/wiki/Key:inscription)* ([text](../SpecialInputElements.md#text)) |
|
|
||||||
| [memorial-wikidata](#memorial-wikidata) <br/> _(Original in [memorial](./memorial.md#memorial-wikidata))_ | What is the Wikipedia page about this memorial?<br/>_<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}_ | memorial-specific, memorial-questions | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
|
|
||||||
| [subject-wikidata](#subject-wikidata) <br/> _(Original in [memorial](./memorial.md#subject-wikidata))_ | What is the Wikipedia page about the person or event that is remembered here?<br/>_<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}_ | memorial-specific, memorial-questions | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
|
|
||||||
| [doubles_as_bench](#doubles_as_bench) | Does this artwork serve as a bench?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [bench-backrest](#bench-backrest) <br/> _(Original in [bench](./bench.md#bench-backrest))_ | Does this bench have a backrest?<br/>3 options | bench-questions | _Multiple choice only_ |
|
|
||||||
| [bench-armrest](#bench-armrest) <br/> _(Original in [bench](./bench.md#bench-armrest))_ | Does this bench have one or more armrests?<br/>2 options | bench-questions | _Multiple choice only_ |
|
|
||||||
| [bench-seats](#bench-seats) <br/> _(Original in [bench](./bench.md#bench-seats))_ | How many seats does this bench have?<br/>_This bench has {seats} seats_<br/>1 options | bench-questions | *[seats](https://wiki.osm.org/wiki/Key:seats)* ([nat](../SpecialInputElements.md#nat)) |
|
|
||||||
| [bench-material](#bench-material) <br/> _(Original in [bench](./bench.md#bench-material))_ | What is the bench (seating) made from?<br/>_Material: {material}_<br/>6 options | bench-questions | *[material](https://wiki.osm.org/wiki/Key:material)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [bench-direction](#bench-direction) <br/> _(Original in [bench](./bench.md#bench-direction))_ | In which direction are you looking when sitting on the bench?<br/>_When sitting on the bench, one looks towards {direction}°._ | bench-questions | *[direction](https://wiki.osm.org/wiki/Key:direction)* ([direction](../SpecialInputElements.md#direction)) |
|
|
||||||
| [bench-colour](#bench-colour) <br/> _(Original in [bench](./bench.md#bench-colour))_ | Which colour does this bench have?<br/>_Colour: {colour}_<br/>8 options | bench-questions | *[colour](https://wiki.osm.org/wiki/Key:colour)* ([color](../SpecialInputElements.md#color)) |
|
|
||||||
| [bench-survey:date](#bench-survey:date) <br/> _(Original in [bench](./bench.md#bench-survey:date))_ | When was this bench last surveyed?<br/>_This bench was last surveyed on {survey:date}_<br/>1 options | bench-questions | *[survey:date](https://wiki.osm.org/wiki/Key:survey:date)* ([date](../SpecialInputElements.md#date)) |
|
|
||||||
| [bench-inscription](#bench-inscription) <br/> _(Original in [bench](./bench.md#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-memorial](#bench-memorial) <br/> _(Original in [bench](./bench.md#bench-memorial))_ | Does this bench act as memorial for someone or something?<br/>2 options | bench-questions | _Multiple choice only_ |
|
|
||||||
| [doubles_as_wayside_shrine](#doubles_as_wayside_shrine) | Does this artwork also double as wayside shrine?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [shrine_name](#shrine_name) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#shrine_name))_ | What's the name of this ?<br/>_The name of this {title()} is <b>{name}</b>_<br/>1 options | shrine_questions | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [religion](#religion) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#religion))_ | To which religion is this shrine dedicated?<br/>_This shrine is {religion}_<br/>11 options | shrine_questions | *[religion](https://wiki.osm.org/wiki/Key:religion)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [denomination_christian](#denomination_christian) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_christian))_ | What's the Christian denomination of this ?<br/>_The religious denomination is <b>{denomination}</b>_<br/>10 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [denomination_muslim](#denomination_muslim) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_muslim))_ | What's the Muslim denomination of this shrine?<br/>_The religious subdenomination is {denomination}_<br/>3 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [denomination_jewish](#denomination_jewish) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_jewish))_ | What's the Jewish denomination of this shrine?<br/>_The religious subdenomination is {denomination}_<br/>4 options | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [denomination_other](#denomination_other) <br/> _(Original in [wayside_shrine](./wayside_shrine.md#denomination_other))_ | What's the denomination of this shrine?<br/>_The denomination of this shrine is {denomination}_ | shrine_questions | *[denomination](https://wiki.osm.org/wiki/Key:denomination)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### historic_or_not
|
|
||||||
The question is `Is this artwork a historic advertisement?`
|
|
||||||
|
|
||||||
- *This artwork is a historic advertisement* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dadvertising' target='_blank'>advertising</a>
|
|
||||||
- *This artwork is not a historic advertisement* is shown if with historic=
|
|
||||||
|
|
||||||
### images_no_blur
|
|
||||||
Same as `images`, but uploaded request to disable blurring to the panoramax server
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload(,,,true)}*
|
|
||||||
|
|
||||||
### artwork-artwork_type
|
|
||||||
The question is `What is the type of this artwork?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
- *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>
|
|
||||||
- *Painting* 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%3Dpainting' target='_blank'>painting</a>
|
|
||||||
- *Sculpture* 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%3Dsculpture' target='_blank'>sculpture</a>
|
|
||||||
- *Statue* 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%3Dstatue' target='_blank'>statue</a>
|
|
||||||
- *Bust* 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%3Dbust' target='_blank'>bust</a>
|
|
||||||
- *Stone* 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%3Dstone' target='_blank'>stone</a>
|
|
||||||
- *Installation* 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%3Dinstallation' target='_blank'>installation</a>
|
|
||||||
- *Graffiti* 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%3Dgraffiti' target='_blank'>graffiti</a>
|
|
||||||
- *Relief* 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%3Drelief' target='_blank'>relief</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>
|
|
||||||
- *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 `artwork-question`
|
|
||||||
|
|
||||||
### artwork-artist-wikidata
|
|
||||||
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 tagrendering has labels `artwork-question`
|
|
||||||
|
|
||||||
### artwork-artist_name
|
|
||||||
The question is `Which artist created this?`
|
|
||||||
|
|
||||||
*Created by {artist_name}* is shown if `artist_name` is set.
|
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
|
||||||
|
|
||||||
### artwork-website
|
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
|
||||||
|
|
||||||
### wikipedia
|
|
||||||
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?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
### artwork_subject
|
|
||||||
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 has labels `artwork-question`
|
|
||||||
|
|
||||||
### doubles_as_memorial
|
|
||||||
The question is `Does this artwork serve as a memorial?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/memorial/memorial.svg'> *This artwork also serves as a memorial* is shown if with <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 artwork does not serve as a memorial* is shown if with historic=
|
|
||||||
|
|
||||||
### memorial-type
|
|
||||||
The question is `What type of memorial is this?`
|
|
||||||
|
|
||||||
*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 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 commemorative bench* 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%3Dbench' target='_blank'>bench</a>
|
|
||||||
- *This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash* 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%3Dghost_bike' target='_blank'>ghost_bike</a>
|
|
||||||
- *This is a stolperstein (stumbing stone)* 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%3Dstolperstein' target='_blank'>stolperstein</a>
|
|
||||||
- *This is a stele* 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%3Dstele' target='_blank'>stele</a>
|
|
||||||
- *This is a memorial stone* 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%3Dstone' target='_blank'>stone</a>
|
|
||||||
- *This is a bust* 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%3Dbust' target='_blank'>bust</a>
|
|
||||||
- *This is a sculpture* 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%3Dsculpture' target='_blank'>sculpture</a>
|
|
||||||
- *This is an obelisk* 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%3Dobelisk' target='_blank'>obelisk</a>
|
|
||||||
- *This is a cross* 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%3Dcross' target='_blank'>cross</a>
|
|
||||||
- *This is a blue 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%3Dblue_plaque' target='_blank'>blue_plaque</a>
|
|
||||||
- *This is a historic tank, permanently placed in public space as memorial* 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%3Dtank' target='_blank'>tank</a>
|
|
||||||
- *This is a memorial tree* 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%3Dtree' target='_blank'>tree</a>
|
|
||||||
- *This is a gravestone; the person is buried here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:historic' target='_blank'>historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:historic%3Dtomb' target='_blank'>tomb</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 `memorial-questions`
|
|
||||||
|
|
||||||
### inscription
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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 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> & memorial!=bench
|
|
||||||
This tagrendering has labels `memorial-questions`
|
|
||||||
|
|
||||||
### memorial-wikidata
|
|
||||||
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.
|
|
||||||
|
|
||||||
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 `memorial-specific` `memorial-questions`
|
|
||||||
|
|
||||||
### subject-wikidata
|
|
||||||
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.
|
|
||||||
|
|
||||||
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 `memorial-specific` `memorial-questions`
|
|
||||||
|
|
||||||
### doubles_as_bench
|
|
||||||
The question is `Does this artwork serve as a bench?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/bench.svg'> *This artwork also serves as a bench* is shown if with <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>
|
|
||||||
- *This artwork does not serve as a bench* is shown if with amenity=
|
|
||||||
- *This artwork does not serve as a bench* is shown if with amenity!=bench. _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
### bench-backrest
|
|
||||||
The question is `Does this bench have a backrest?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/two_sided.svg'> *This bench is two-sided and shares the backrest* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:two_sided' target='_blank'>two_sided</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:two_sided%3Dyes' target='_blank'>yes</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/one_sided.svg'> *This bench does have a backrest* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/no_backrest.svg'> *This bench does <b>not</b> have a backrest* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
|
|
||||||
This tagrendering has labels `bench-questions`
|
|
||||||
|
|
||||||
### bench-armrest
|
|
||||||
The question is `Does this bench have one or more armrests?`
|
|
||||||
|
|
||||||
- *This bench does have one or more armrests* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:armrest' target='_blank'>armrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This bench does <b>not</b> have any armrests* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:armrest' target='_blank'>armrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:armrest%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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a>
|
|
||||||
This tagrendering has labels `bench-questions`
|
|
||||||
|
|
||||||
### bench-seats
|
|
||||||
The question is `How many seats does this bench have?`
|
|
||||||
|
|
||||||
*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 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>
|
|
||||||
This tagrendering has labels `bench-questions`
|
|
||||||
|
|
||||||
### bench-material
|
|
||||||
The question is `What is the bench (seating) made from?`
|
|
||||||
|
|
||||||
*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 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 stone* 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%3Dstone' target='_blank'>stone</a>
|
|
||||||
- *The seating is made from concrete* 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%3Dconcrete' target='_blank'>concrete</a>
|
|
||||||
- *The seating is made from plastic* 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%3Dplastic' target='_blank'>plastic</a>
|
|
||||||
- *The seating is made from steel* 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%3Dsteel' target='_blank'>steel</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%3Dbench' target='_blank'>bench</a>
|
|
||||||
This tagrendering has labels `bench-questions`
|
|
||||||
|
|
||||||
### bench-direction
|
|
||||||
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.
|
|
||||||
|
|
||||||
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 `bench-questions`
|
|
||||||
|
|
||||||
### bench-colour
|
|
||||||
The question is `Which colour does this bench have?`
|
|
||||||
|
|
||||||
*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: 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: gray* 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%3Dgray' target='_blank'>gray</a>
|
|
||||||
- *Colour: white* 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%3Dwhite' target='_blank'>white</a>
|
|
||||||
- *Colour: red* 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%3Dred' target='_blank'>red</a>
|
|
||||||
- *Colour: black* 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%3Dblack' target='_blank'>black</a>
|
|
||||||
- *Colour: blue* 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%3Dblue' target='_blank'>blue</a>
|
|
||||||
- *Colour: yellow* 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%3Dyellow' target='_blank'>yellow</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%3Dbench' target='_blank'>bench</a>
|
|
||||||
This tagrendering has labels `bench-questions`
|
|
||||||
|
|
||||||
### bench-survey:date
|
|
||||||
The question is `When was this bench last surveyed?`
|
|
||||||
|
|
||||||
*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set.
|
|
||||||
|
|
||||||
- *Surveyed today!* is shown if with survey:date=
|
|
||||||
|
|
||||||
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>
|
|
||||||
This tagrendering has labels `bench-questions`
|
|
||||||
|
|
||||||
### bench-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 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 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>
|
|
||||||
This tagrendering has labels `bench-questions`
|
|
||||||
|
|
||||||
### bench-memorial
|
|
||||||
The question is `Does this bench act as memorial for someone or something?`
|
|
||||||
|
|
||||||
- *This bench is a memorial for someone or something* is shown if with <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 bench is a <b>not</b> a memorial for someone or something* is shown if with historic= & <a href='https://wiki.openstreetmap.org/wiki/Key:not:historic' target='_blank'>not:historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not: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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbench' target='_blank'>bench</a> & (<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> | <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbench' target='_blank'>bench</a> | <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> | inscription~.+)
|
|
||||||
This tagrendering has labels `bench-questions`
|
|
||||||
|
|
||||||
### doubles_as_wayside_shrine
|
|
||||||
The question is `Does this artwork also double as wayside shrine?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/wayside_shrine/shrine.svg'> *This artwork acts as a wayside shrine* is shown if with <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>
|
|
||||||
- *This artwork does not act as a wayside shrine* is shown if with historic=
|
|
||||||
|
|
||||||
### shrine_name
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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 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>
|
|
||||||
This tagrendering has labels `shrine_questions`
|
|
||||||
|
|
||||||
### religion
|
|
||||||
The question is `To which religion is this shrine dedicated?`
|
|
||||||
|
|
||||||
*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 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 Hindu 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%3Dhindu' target='_blank'>hindu</a>
|
|
||||||
- *This is a Jain 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%3Djain' target='_blank'>jain</a>
|
|
||||||
- *This is a Jewish 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%3Djewish' target='_blank'>jewish</a>
|
|
||||||
- *This is an Islamic 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%3Dmuslim' target='_blank'>muslim</a>
|
|
||||||
- *This is a Pagan 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%3Dpagan' target='_blank'>pagan</a>
|
|
||||||
- *This is a Shinto 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%3Dshinto' target='_blank'>shinto</a>
|
|
||||||
- *This is a Sikh 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%3Dsikh' target='_blank'>sikh</a>
|
|
||||||
- *This is a Taoist 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%3Dtaoist' target='_blank'>taoist</a>
|
|
||||||
- *This is a Zoroastrian 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%3Dzoroastrian' target='_blank'>zoroastrian</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%3Dwayside_shrine' target='_blank'>wayside_shrine</a>
|
|
||||||
This tagrendering has labels `shrine_questions`
|
|
||||||
|
|
||||||
### denomination_christian
|
|
||||||
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 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 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 Greek-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%3Dgreek_orthodox' target='_blank'>greek_orthodox</a>
|
|
||||||
- *The religious subdenomination is Russian-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%3Drussian_orthodox' target='_blank'>russian_orthodox</a>
|
|
||||||
- *The religious subdenomination is Serbian 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%3Dserbian_orthodox' target='_blank'>serbian_orthodox</a>
|
|
||||||
- *The religious subdenomination is Protestant* 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%3Dprotestant' target='_blank'>protestant</a>
|
|
||||||
- *The religious subdenomination is Anglican* 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%3Danglican' target='_blank'>anglican</a>
|
|
||||||
- *The religious subdenomination is Adventist* 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%3Dadventist' target='_blank'>adventist</a>
|
|
||||||
- *The religious subdenomination is evangelical* 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%3Devangelical' target='_blank'>evangelical</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%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <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 tagrendering has labels `shrine_questions`
|
|
||||||
|
|
||||||
### denomination_muslim
|
|
||||||
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 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 Sufi* 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%3Dsufi' target='_blank'>sufi</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%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim' target='_blank'>muslim</a>
|
|
||||||
This tagrendering has labels `shrine_questions`
|
|
||||||
|
|
||||||
### denomination_jewish
|
|
||||||
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 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 Hasidic* 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%3Dhasidic' target='_blank'>hasidic</a>
|
|
||||||
- *The religious subdenomination is Reform* 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%3Dreform' target='_blank'>reform</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%3Dwayside_shrine' target='_blank'>wayside_shrine</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:religion' target='_blank'>religion</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish' target='_blank'>jewish</a>
|
|
||||||
This tagrendering has labels `shrine_questions`
|
|
||||||
|
|
||||||
### denomination_other
|
|
||||||
The question is `What's the denomination of this shrine?`
|
|
||||||
|
|
||||||
*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 has labels `shrine_questions`
|
|
||||||
|
|
||||||
### 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`
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| has_image.0 | *With and without images* (default) | |
|
|
||||||
| has_image.1 | Has at least one image | image~.+ | ^(image:[0-9]+)$~~.+ | ^(panoramax:[0-9]+)$~~.+ | mapillary~.+ |
|
|
||||||
| has_image.2 | Probably does not have an image | (image!~.+ | ^(image:[0-9]+!)$~~.+ | ^(panoramax:[0-9]+!)$~~.+ | mapillary!~.+) |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| artwork-artwork_type.0 | *What is the type of this artwork?* (default) | |
|
|
||||||
| artwork-artwork_type.1 | Architecture | artwork_type=architecture |
|
|
||||||
| artwork-artwork_type.2 | Mural | artwork_type=mural |
|
|
||||||
| artwork-artwork_type.3 | Painting | artwork_type=painting |
|
|
||||||
| artwork-artwork_type.4 | Sculpture | artwork_type=sculpture |
|
|
||||||
| artwork-artwork_type.5 | Statue | artwork_type=statue |
|
|
||||||
| artwork-artwork_type.6 | Bust | artwork_type=bust |
|
|
||||||
| artwork-artwork_type.7 | Stone | artwork_type=stone |
|
|
||||||
| artwork-artwork_type.8 | Installation | artwork_type=installation |
|
|
||||||
| artwork-artwork_type.9 | Graffiti | artwork_type=graffiti |
|
|
||||||
| artwork-artwork_type.10 | Relief | artwork_type=relief |
|
|
||||||
| artwork-artwork_type.11 | Azulejo (Spanish decorative tilework) | artwork_type=azulejo |
|
|
||||||
| artwork-artwork_type.12 | Tilework | artwork_type=tilework |
|
|
||||||
| artwork-artwork_type.13 | Woodcarving | artwork_type=woodcarving |
|
|
||||||
| artwork-artwork_type.14 | Poem | artwork_type=poem |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| memorial-type.0 | *What type of memorial is this?* (default) | |
|
|
||||||
| memorial-type.1 | This is a statue | memorial=statue |
|
|
||||||
| memorial-type.2 | This is a plaque | memorial=plaque |
|
|
||||||
| memorial-type.3 | This is a commemorative bench | memorial=bench |
|
|
||||||
| memorial-type.4 | This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash | memorial=ghost_bike |
|
|
||||||
| memorial-type.5 | This is a stolperstein (stumbing stone) | memorial=stolperstein |
|
|
||||||
| memorial-type.6 | This is a stele | memorial=stele |
|
|
||||||
| memorial-type.7 | This is a memorial stone | memorial=stone |
|
|
||||||
| memorial-type.8 | This is a bust | memorial=bust |
|
|
||||||
| memorial-type.9 | This is a sculpture | memorial=sculpture |
|
|
||||||
| memorial-type.10 | This is an obelisk | memorial=obelisk |
|
|
||||||
| memorial-type.11 | This is a cross | memorial=cross |
|
|
||||||
| memorial-type.12 | This is a blue plaque | memorial=blue_plaque |
|
|
||||||
| memorial-type.13 | This is a historic tank, permanently placed in public space as memorial | memorial=tank |
|
|
||||||
| memorial-type.14 | This is a memorial tree | memorial=tree |
|
|
||||||
| memorial-type.15 | This is a gravestone; the person is buried here | historic=tomb |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/themes/ghostsigns/ghostsigns.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/ghostsigns/ghostsigns.json)
|
|
||||||
|
|
@ -1,113 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# assembly_point
|
|
||||||
|
|
||||||
This layer contains assembly points and waiting areas where all employees, passengers or a large crowd assemble in case of an emergency.
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **10** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [assembly_point_name](#assembly_point_name)
|
|
||||||
- [assembly_point_operator](#assembly_point_operator)
|
|
||||||
- [disaster_type](#disaster_type)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [disaster_response](https://mapcomplete.org/disaster_response)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **an assembly point** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dassembly_point' target='_blank'>assembly_point</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:emergency' target='_blank'>emergency</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dassembly_point' target='_blank'>assembly_point</a>**
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22emergency%22%3D%22assembly_point%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/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/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [assembly_point_name](#assembly_point_name) | What is the name of this assembly point?<br/>_This assembly point is named <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [assembly_point_operator](#assembly_point_operator) | What organization operates this assembly point?<br/>_This assembly point is operated by <b>{operator}</b>_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [disaster_type](#disaster_type) | For which disaster type is this assembly point meant?<br/>4 options | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### assembly_point_name
|
|
||||||
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.
|
|
||||||
|
|
||||||
### assembly_point_operator
|
|
||||||
The question is `What organization operates this assembly point?`
|
|
||||||
|
|
||||||
*This assembly point is operated by <b>{operator}</b>* is shown if `operator` is set.
|
|
||||||
|
|
||||||
### disaster_type
|
|
||||||
The question is `For which disaster type is this assembly point meant?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/assembly_point/earthquake.svg'> *Earthquake* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:assembly_point:earthquake' target='_blank'>assembly_point:earthquake</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:assembly_point:earthquake%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add assembly_point:earthquake=
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/assembly_point/flood.svg'> *Flood* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:assembly_point:flood' target='_blank'>assembly_point:flood</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:assembly_point:flood%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add assembly_point:flood=
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/assembly_point/fire.svg'> *Fire* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:assembly_point:fire' target='_blank'>assembly_point:fire</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:assembly_point:fire%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add assembly_point:fire=
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/assembly_point/landslide.svg'> *Landslide* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:assembly_point:landslide' target='_blank'>assembly_point:landslide</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:assembly_point:landslide%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add assembly_point:landslide=
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/assembly_point/assembly_point.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/assembly_point/assembly_point.json)
|
|
||||||
|
|
@ -1,196 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# assisted_repair
|
|
||||||
|
|
||||||
A self-assisted workshop is a location where people can come and repair their goods with help of volunteers and with the tools available at the given location. A repair café is a type of event organized regularly along the same principles.
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **1** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [preset_description](#preset_description)
|
|
||||||
- [name](#name)
|
|
||||||
- [opening_hours_by_appointment](#opening_hours_by_appointment)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [email](#email)
|
|
||||||
- [website](#website)
|
|
||||||
- [mastodon](#mastodon)
|
|
||||||
- [facebook](#facebook)
|
|
||||||
- [item:repair](#itemrepair)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [circular_economy](https://mapcomplete.org/circular_economy)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **an assisted repair workshop** 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%3Dworkshop' target='_blank'>workshop</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:repair' target='_blank'>repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:repair%3Dassisted_self_service' target='_blank'>assisted_self_service</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:repair' target='_blank'>repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:repair%3Dassisted_self_service' target='_blank'>assisted_self_service</a>**
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22repair%22%3D%22assisted_self_service%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/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/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) | [opening_hours="by appointment"](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment") |
|
|
||||||
| <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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/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:facebook#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/contact%3Afacebook/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [contact:facebook](https://wiki.openstreetmap.org/wiki/Key:contact:facebook) | [url](../SpecialInputElements.md#url) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [preset_description](#preset_description) <br/> _(Original in [questions](./BuiltinQuestions.md#preset_description))_ | _{preset_description()}_ | | _Multiple choice only_ |
|
|
||||||
| [name](#name) | What is the name of this repair workshop?<br/>_This workshop is called <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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) <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)) |
|
|
||||||
| [item:repair](#item:repair) | What type of items are repaired here?<br/>6 options | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### preset_description
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{preset_description()}*
|
|
||||||
|
|
||||||
### name
|
|
||||||
The question is `What is the name of this repair workshop?`
|
|
||||||
|
|
||||||
*This workshop is called <b>{name}</b>* is shown if `name` is set.
|
|
||||||
|
|
||||||
### opening_hours_by_appointment
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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_
|
|
||||||
- *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
|
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### email
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### website
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### mastodon
|
|
||||||
Shows and asks for the mastodon handle
|
|
||||||
The question is `What is the Mastodon-handle of {title()}?`
|
|
||||||
|
|
||||||
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set.
|
|
||||||
|
|
||||||
### facebook
|
|
||||||
Shows and asks for the facebook handle
|
|
||||||
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.
|
|
||||||
|
|
||||||
### item:repair
|
|
||||||
The question is `What type of items are repaired here?`
|
|
||||||
|
|
||||||
- *Mobile phones are repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:mobile_phone:repair' target='_blank'>service:mobile_phone:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:mobile_phone:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:mobile_phone:repair' target='_blank'>service:mobile_phone:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:mobile_phone:repair%3Dno' target='_blank'>no</a>
|
|
||||||
- *Computers are repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:computer:repair' target='_blank'>service:computer:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:computer:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:computer:repair' target='_blank'>service:computer:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:computer:repair%3Dno' target='_blank'>no</a>
|
|
||||||
- *Bicycles are repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno' target='_blank'>no</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/recycling/small_electrical_appliances.svg'> *Electronic devices are repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electronics:repair' target='_blank'>service:electronics:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electronics:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:electronics:repair' target='_blank'>service:electronics:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electronics:repair%3Dno' target='_blank'>no</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/recycling/furniture.svg'> *Furniture is repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:furniture:repair' target='_blank'>service:furniture:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:furniture:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:furniture:repair' target='_blank'>service:furniture:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:furniture:repair%3Dno' target='_blank'>no</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/recycling/clothes.svg'> *Clothes are repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:clothes:repair' target='_blank'>service:clothes:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:clothes:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:clothes:repair' target='_blank'>service:clothes:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:clothes:repair%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/assisted_repair/assisted_repair.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/assisted_repair/assisted_repair.json)
|
|
||||||
|
|
@ -1,215 +1,221 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# atm
|
atm
|
||||||
|
=====
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/atm/atm.svg' height="100px">
|
||||||
|
|
||||||
ATMs to withdraw money
|
ATMs to withdraw money
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **13** and higher
|
- This layer is shown at zoomlevel **13** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [name](#name)
|
|
||||||
- [brand](#brand)
|
|
||||||
- [operator](#operator)
|
|
||||||
- [opening_hours_24_7](#opening_hours_24_7)
|
|
||||||
- [indoor](#indoor)
|
|
||||||
- [cash_out](#cash_out)
|
|
||||||
- [cash_in](#cash_in)
|
|
||||||
- [cash_in-types](#cash_in-types)
|
|
||||||
- [cash_out-denominations-notes](#cash_out-denominations-notes)
|
|
||||||
- [speech_output](#speech_output)
|
|
||||||
- [speech_output_language](#speech_output_language)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [atm](https://mapcomplete.org/atm)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [stations](https://mapcomplete.org/stations)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **an ATM** 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%3Datm' target='_blank'>atm</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Datm' target='_blank'>atm</a>**
|
- [atm](https://mapcomplete.osm.be/atm)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22atm%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 |
|
Basic tags for this layer
|
||||||
-----|-----|----- |
|
---------------------------
|
||||||
| <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) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <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) | [opening_hours=24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) |
|
|
||||||
| <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 | [indoor=yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [indoor=no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) |
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cash_out#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cash_out/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cash_out](https://wiki.openstreetmap.org/wiki/Key:cash_out) | Multiple choice | [cash_out=yes](https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dyes) [cash_out=no](https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cash_in#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cash_in/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cash_in](https://wiki.openstreetmap.org/wiki/Key:cash_in) | Multiple choice | [cash_in=yes](https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dyes) [cash_in=no](https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cash_out:notes:denominations#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cash_out%3Anotes%3Adenominations/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cash_out:notes:denominations](https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations) | Multiple choice | [cash_out:notes:denominations=5 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D5 EUR) [cash_out:notes:denominations=10 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D10 EUR) [cash_out:notes:denominations=20 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D20 EUR) [cash_out:notes:denominations=50 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D50 EUR) [cash_out:notes:denominations=100 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D100 EUR) [cash_out:notes:denominations=200 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D200 EUR) [cash_out:notes:denominations=500 EUR](https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D500 EUR) |
|
|
||||||
| <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 | [speech_output=yes](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes) [speech_output=no](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dno) |
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Datm' target='_blank'>atm</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22atm%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cash_out#values) [cash_out](https://wiki.openstreetmap.org/wiki/Key:cash_out) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cash_in#values) [cash_in](https://wiki.openstreetmap.org/wiki/Key:cash_in) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/speech_output#values) [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)
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [name](#name) | _The name of this ATM is {name}_ | | _Multiple choice only_ |
|
|
||||||
| [brand](#brand) | What brand is this ATM?<br/>_The brand of this ATM is {brand}_ | | *[brand](https://wiki.osm.org/wiki/Key:brand)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [operator](#operator) <br/> _(Original in [questions](./BuiltinQuestions.md#operator))_ | What company operates this ATM?<br/>_The ATM is operated by {operator}_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([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)) |
|
|
||||||
| [indoor](#indoor) <br/> _(Original in [questions](./BuiltinQuestions.md#indoor))_ | Is this ATM located indoors?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [cash_out](#cash_out) | Can you withdraw cash from this ATM?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [cash_in](#cash_in) | Can you deposit cash into this ATM?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [cash_in-types](#cash_in-types) | In what ways can you deposit cash at this ATM?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [cash_out-denominations-notes](#cash_out-denominations-notes) | What notes can you withdraw here?<br/>7 options | | _Multiple choice only_ |
|
|
||||||
| [speech_output](#speech_output) | Does this ATM have speech output for visually impaired users?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [speech_output_language](#speech_output_language) | _{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,,)}_ | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### name
|
### name
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*The name of this ATM is {name}*
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: name~.+
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `name~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### brand
|
### brand
|
||||||
The question is `What brand is this ATM?`
|
|
||||||
|
|
||||||
*The brand of this ATM is {brand}* is shown if `brand` is set.
|
|
||||||
|
|
||||||
|
The question is *What brand is this ATM?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand)
|
||||||
|
|
||||||
|
This is rendered with `The brand of this ATM is {brand}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### operator
|
### operator
|
||||||
The question is `What company operates this ATM?`
|
|
||||||
|
|
||||||
*The ATM is operated by {operator}* is shown if `operator` is set.
|
|
||||||
|
|
||||||
### 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.
|
The question is *What company operates this ATM?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
|
|
||||||
|
This is rendered with `The ATM is operated by {operator}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### opening_hours
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What are the opening hours of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
### indoor
|
|
||||||
The question is `Is this ATM located indoors?`
|
|
||||||
|
|
||||||
- *This ATM is located indoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This ATM is located outdoors* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### cash_out
|
### cash_out
|
||||||
The question is `Can you withdraw cash from this ATM?`
|
|
||||||
|
|
||||||
- *You can withdraw cash from this ATM* is shown if with cash_out=. _This option cannot be chosen as answer_
|
|
||||||
- *You can withdraw cash from this ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_out' target='_blank'>cash_out</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *You cannot withdraw cash from this ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_out' target='_blank'>cash_out</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_out%3Dno' target='_blank'>no</a>
|
The question is *Can you withdraw cash from this ATM?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You can withdraw cash from this ATM* corresponds with ``
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *You can withdraw cash from this ATM* corresponds with `cash_out=yes`
|
||||||
|
- *You cannot withdraw cash from this ATM* corresponds with `cash_out=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### cash_in
|
### cash_in
|
||||||
The question is `Can you deposit cash into this ATM?`
|
|
||||||
|
|
||||||
- *You probably cannot deposit cash into this ATM* is shown if with cash_in=. _This option cannot be chosen as answer_
|
|
||||||
- *You can deposit cash into this ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_in' target='_blank'>cash_in</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *You cannot deposit cash into this ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_in' target='_blank'>cash_in</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### cash_in-types
|
|
||||||
The question is `In what ways can you deposit cash at this ATM?`
|
|
||||||
|
|
||||||
- *You can deposit coins at this ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_in:coins' target='_blank'>cash_in:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_in:coins%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:cash_in:coins' target='_blank'>cash_in:coins</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_in:coins%3Dno' target='_blank'>no</a>
|
The question is *Can you deposit cash into this ATM?*
|
||||||
- *You can deposit notes at this ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_in:notes' target='_blank'>cash_in:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_in:notes%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:cash_in:notes' target='_blank'>cash_in:notes</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_in:notes%3Dno' target='_blank'>no</a>
|
|
||||||
- *You can deposit sealed bags at this ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_in:sealbags' target='_blank'>cash_in:sealbags</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_in:sealbags%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:cash_in:sealbags' target='_blank'>cash_in:sealbags</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_in:sealbags%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You probably cannot deposit cash into this ATM* corresponds with ``
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *You can deposit cash into this ATM* corresponds with `cash_in=yes`
|
||||||
|
- *You cannot deposit cash into this ATM* corresponds with `cash_in=no`
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:cash_in' target='_blank'>cash_in</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_in%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
### cash_out-denominations-notes
|
|
||||||
The question is `What notes can you withdraw here?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/denominations/eur/5euro.svg'> *5 euro notes can be withdrawn* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations' target='_blank'>cash_out:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_out: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 can be withdrawn* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations' target='_blank'>cash_out:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_out: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 can be withdrawn* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations' target='_blank'>cash_out:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_out: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 can be withdrawn* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations' target='_blank'>cash_out:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_out: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 can be withdrawn* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations' target='_blank'>cash_out:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_out: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 can be withdrawn* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations' target='_blank'>cash_out:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_out: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 can be withdrawn* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cash_out:notes:denominations' target='_blank'>cash_out:notes:denominations</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cash_out:notes:denominations%3D500 EUR' target='_blank'>500 EUR</a>
|
|
||||||
|
|
||||||
### speech_output
|
### speech_output
|
||||||
The question is `Does this ATM have speech output for visually impaired users?`
|
|
||||||
|
|
||||||
- *This ATM has speech output, usually available through a headphone jack* is shown if with <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 ATM does not have speech output* is shown if with <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%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### speech_output_language
|
|
||||||
_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,,)}*
|
The question is *Does this ATM have speech output for visually impaired users?*
|
||||||
|
|
||||||
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
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### move-button
|
- *This ATM has speech output, usually available through a headphone jack* corresponds with `speech_output=yes`
|
||||||
_This tagrendering has no question and is thus read-only_
|
- *This ATM does not have speech output* corresponds with `speech_output=no`
|
||||||
|
|
||||||
*{move_button()}*
|
|
||||||
|
|
||||||
### delete-button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{delete_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| speech_output.0 | With speech output | speech_output=yes |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/atm/atm.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/atm/atm.json)
|
### speech_output_language
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `speech_output=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Filters
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
open_now.0 | Open now | _isOpen=yes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
speech_output.0 | With speech output | speech_output=yes
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/atm/atm.json)
|
||||||
|
|
|
||||||
|
|
@ -1,109 +1,103 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bank
|
bank
|
||||||
|
======
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/bank/bank.svg' height="100px">
|
||||||
|
|
||||||
A financial institution to deposit money
|
A financial institution to deposit money
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **0** and higher
|
- This layer is shown at zoomlevel **0** and higher
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [has_atm](#has_atm)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
5. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [atm](https://mapcomplete.org/atm)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbank' target='_blank'>bank</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%22bank%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
|
- [atm](https://mapcomplete.osm.be/atm)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/atm#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/atm/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [atm=yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [atm=no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [atm=separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [has_atm](#has_atm) | Does this bank have an ATM?<br/>3 options | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### images
|
Basic tags for this layer
|
||||||
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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### has_atm
|
|
||||||
The question is `Does this bank have an ATM?`
|
|
||||||
|
|
||||||
- *This bank has an ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:atm' target='_blank'>atm</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes' target='_blank'>yes</a>
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
- *This bank does <b>not</b> have an ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:atm' target='_blank'>atm</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno' target='_blank'>no</a>
|
|
||||||
- *This bank does have an ATM, but it is mapped as a different icon* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:atm' target='_blank'>atm</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate' target='_blank'>separate</a>
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbank' target='_blank'>bank</a>
|
||||||
|
|
||||||
### move-button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{move_button()}*
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bank%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||||
|
|
||||||
### delete-button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{delete_button()}*
|
|
||||||
|
|
||||||
### spacer
|
Supported attributes
|
||||||
_This tagrendering has no question and is thus read-only_
|
----------------------
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
Warning:
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
this quick overview is incomplete
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
attribute | type | values which are supported by this layer
|
||||||
-----|-----|----- |
|
----------- | ------ | ------------------------------------------
|
||||||
| has_atm.0 | With an ATM | atm=yes |
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/atm#values) [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/bank/bank.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bank/bank.json)
|
### has_atm
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Does this bank have an ATM?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bank has an ATM* corresponds with `atm=yes`
|
||||||
|
- *This bank does <b>not</b> have an ATM* corresponds with `atm=no`
|
||||||
|
- *This bank does have an ATM, but it is mapped as a different icon* corresponds with `atm=separate`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Filters
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
open_now.0 | Open now | _isOpen=yes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
has_atm.0 | With an ATM | atm=yes
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/bank/bank.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bank/bank.json)
|
||||||
|
|
|
||||||
|
|
@ -1,109 +1,128 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# banks_with_atm
|
banks_with_atm
|
||||||
|
================
|
||||||
|
|
||||||
This layer is based on [bank](../Layers/bank.md)
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/bank/bank.svg' height="100px">
|
||||||
|
|
||||||
A financial institution to deposit money
|
A financial institution to deposit money
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **14** and higher
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [has_atm](#has_atm)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [lod](#lod)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
5. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [atm](https://mapcomplete.org/atm)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
- This layer is shown at zoomlevel **0** and higher
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
|
|
||||||
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%3Dbank' target='_blank'>bank</a>
|
|
||||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:atm' target='_blank'>atm</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:atm%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%22bank%22%5D%5B%22atm%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
|
||||||
|
|
||||||
## Supported attributes
|
#### Themes using this layer
|
||||||
|
|
||||||
**Warning:**: this quick overview is incomplete
|
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/atm#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/atm/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [atm=yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [atm=no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [atm=separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [has_atm](#has_atm) | Does this bank have an ATM?<br/>3 options | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### images
|
- [atm](https://mapcomplete.osm.be/atm)
|
||||||
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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### has_atm
|
|
||||||
The question is `Does this bank have an ATM?`
|
|
||||||
|
|
||||||
- *This bank has an ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:atm' target='_blank'>atm</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This bank does <b>not</b> have an ATM* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:atm' target='_blank'>atm</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno' target='_blank'>no</a>
|
|
||||||
- *This bank does have an ATM, but it is mapped as a different icon* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:atm' target='_blank'>atm</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate' target='_blank'>separate</a>
|
|
||||||
|
|
||||||
### leftover-questions
|
Basic tags for this layer
|
||||||
_This tagrendering has no question and is thus read-only_
|
---------------------------
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### move-button
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
_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()}*
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbank' target='_blank'>bank</a>
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:atm' target='_blank'>atm</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes' target='_blank'>yes</a>
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bank%22%5D%5B%22atm%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
Supported attributes
|
||||||
|
----------------------
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
Warning:
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
this quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
attribute | type | values which are supported by this layer
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/atm#values) [atm](https://wiki.openstreetmap.org/wiki/Key:atm) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:atm%3Dseparate)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/themes/atm/atm.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/atm/atm.json)
|
### has_atm
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Does this bank have an ATM?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bank has an ATM* corresponds with `atm=yes`
|
||||||
|
- *This bank does <b>not</b> have an ATM* corresponds with `atm=no`
|
||||||
|
- *This bank does have an ATM, but it is mapped as a different icon* corresponds with `atm=separate`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Show the images block at this location
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Shows a small map with the feature. Added by default to every popup
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Filters
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
open_now.0 | Open now | _isOpen=yes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
has_atm.0 | With an ATM | atm=yes
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/themes/atm/atm.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/atm/atm.json)
|
||||||
|
|
|
||||||
|
|
@ -1,187 +1,226 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# barrier
|
barrier
|
||||||
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/layers/barrier/barrier.svg' height="100px">
|
||||||
|
|
||||||
Obstacles while cycling, such as bollards and cycle barriers
|
Obstacles while cycling, such as bollards and cycle barriers
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **17** and higher
|
- This layer is shown at zoomlevel **17** and higher
|
||||||
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: preset `a bollard` snaps to this layer (barrier.presets[0])
|
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0])
|
||||||
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: preset `a cycle barrier` snaps to this layer (barrier.presets[1])
|
- This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1])
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [bicycle=yes/no](#bicycle=yesno)
|
|
||||||
- [barrier_type](#barrier_type)
|
|
||||||
- [Bollard type](#bollard-type)
|
|
||||||
- [Cycle barrier type](#cycle-barrier-type)
|
|
||||||
- [MaxWidth](#maxwidth)
|
|
||||||
- [Space between barrier (cyclebarrier)](#space-between-barrier-(cyclebarrier))
|
|
||||||
- [Width of opening (cyclebarrier)](#width-of-opening-(cyclebarrier))
|
|
||||||
- [Overlap (cyclebarrier)](#overlap-(cyclebarrier))
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [cycle_infra](https://mapcomplete.org/cycle_infra)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a bollard** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a> (snaps to layers `cycleways_and_roads`)
|
|
||||||
- **a cycle barrier** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a> (snaps to layers `cycleways_and_roads`)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **any** of the following expressions:
|
- [cycle_infra](https://mapcomplete.osm.be/cycle_infra)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22barrier%22%3D%22bollard%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22barrier%22%3D%22cycle_barrier%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
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22barrier%22%3D%22bollard%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22barrier%22%3D%22cycle_barrier%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle#values) [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/barrier#values) [barrier](https://wiki.openstreetmap.org/wiki/Key:barrier) | Multiple choice | [bollard](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bollard#values) [bollard](https://wiki.openstreetmap.org/wiki/Key:bollard) | Multiple choice | [removable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable) [fixed](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed) [foldable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable) [flexible](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible) [rising](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cycle_barrier#values) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Key:cycle_barrier) | Multiple choice | [single](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle) [double](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble) [triple](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple) [squeeze](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/maxwidth:physical#values) [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) | [distance](../SpecialInputElements.md#distance) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:separation#values) [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [distance](../SpecialInputElements.md#distance) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/width:opening#values) [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [distance](../SpecialInputElements.md#distance) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/overlap#values) [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [distance](../SpecialInputElements.md#distance) |
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [bicycle=yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [bicycle=no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/barrier#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/barrier/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [barrier](https://wiki.openstreetmap.org/wiki/Key:barrier) | Multiple choice | [barrier=bollard](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard) [barrier=cycle_barrier](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bollard#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bollard/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bollard](https://wiki.openstreetmap.org/wiki/Key:bollard) | Multiple choice | [bollard=removable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable) [bollard=fixed](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed) [bollard=foldable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable) [bollard=flexible](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible) [bollard=rising](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cycle_barrier#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cycle_barrier/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cycle_barrier](https://wiki.openstreetmap.org/wiki/Key:cycle_barrier) | Multiple choice | [cycle_barrier=single](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle) [cycle_barrier=double](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble) [cycle_barrier=triple](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple) [cycle_barrier=squeeze](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/maxwidth:physical#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/maxwidth%3Aphysical/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) | [distance](../SpecialInputElements.md#distance) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/width:separation#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/width%3Aseparation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [distance](../SpecialInputElements.md#distance) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/width:opening#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/width%3Aopening/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [distance](../SpecialInputElements.md#distance) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/overlap#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/overlap/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [distance](../SpecialInputElements.md#distance) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [bicycle=yes/no](#bicycle=yes/no) | Can a bicycle go past this barrier?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [barrier_type](#barrier_type) | 2 options | | _Multiple choice only_ |
|
|
||||||
| [Bollard type](#Bollard type) | What kind of bollard is this?<br/>5 options | | _Multiple choice only_ |
|
|
||||||
| [Cycle barrier type](#Cycle barrier type) | What kind of cycling barrier is this?<br/>4 options | | _Multiple choice only_ |
|
|
||||||
| [MaxWidth](#MaxWidth) | How wide is the gap left over besides the barrier?<br/>_Maximum width: {maxwidth:physical} m_ | | *[maxwidth:physical](https://wiki.osm.org/wiki/Key:maxwidth:physical)* ([distance](../SpecialInputElements.md#distance)) |
|
|
||||||
| [Space between barrier (cyclebarrier)](#Space between barrier (cyclebarrier)) | How much space is there between the barriers (along the length of the road)?<br/>_Space between barriers (along the length of the road): {width:separation} m_ | | *[width:separation](https://wiki.osm.org/wiki/Key:width:separation)* ([distance](../SpecialInputElements.md#distance)) |
|
|
||||||
| [Width of opening (cyclebarrier)](#Width of opening (cyclebarrier)) | How wide is the smallest opening next to the barriers?<br/>_Width of opening: {width:opening} m_ | | *[width:opening](https://wiki.osm.org/wiki/Key:width:opening)* ([distance](../SpecialInputElements.md#distance)) |
|
|
||||||
| [Overlap (cyclebarrier)](#Overlap (cyclebarrier)) | How much overlap do the barriers have?<br/>_Overlap: {overlap} m_ | | *[overlap](https://wiki.osm.org/wiki/Key:overlap)* ([distance](../SpecialInputElements.md#distance)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle=yes/no
|
### bicycle=yes/no
|
||||||
The question is `Can a bicycle go past this barrier?`
|
|
||||||
|
|
||||||
- *A cyclist can go past this.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *A cyclist can not go past this.* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle' target='_blank'>bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: _referencing_ways~.+
|
|
||||||
|
The question is *Can a bicycle go past this barrier?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *A cyclist can go past this.* corresponds with `bicycle=yes`
|
||||||
|
- *A cyclist can not go past this.* corresponds with `bicycle=no`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `_referencing_ways~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### barrier_type
|
### barrier_type
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
- *This is a single bollard in the road* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>
|
|
||||||
- *This is a cycle barrier slowing down cyclists* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This is a single bollard in the road* corresponds with `barrier=bollard`
|
||||||
|
- *This is a cycle barrier slowing down cyclists* corresponds with `barrier=cycle_barrier`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Bollard type
|
### Bollard type
|
||||||
The question is `What kind of bollard is this?`
|
|
||||||
|
|
||||||
- *Removable bollard* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable' target='_blank'>removable</a>
|
|
||||||
- *Fixed bollard* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed' target='_blank'>fixed</a>
|
|
||||||
- *Bollard that can be folded down* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable' target='_blank'>foldable</a>
|
|
||||||
- *Flexible bollard, usually plastic* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible' target='_blank'>flexible</a>
|
|
||||||
- *Rising bollard* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bollard' target='_blank'>bollard</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising' target='_blank'>rising</a>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard' target='_blank'>bollard</a>
|
|
||||||
|
The question is *What kind of bollard is this?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Removable bollard* corresponds with `bollard=removable`
|
||||||
|
- *Fixed bollard* corresponds with `bollard=fixed`
|
||||||
|
- *Bollard that can be folded down* corresponds with `bollard=foldable`
|
||||||
|
- *Flexible bollard, usually plastic* corresponds with `bollard=flexible`
|
||||||
|
- *Rising bollard* corresponds with `bollard=rising`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `barrier=bollard`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Cycle barrier type
|
### Cycle barrier type
|
||||||
The question is `What kind of cycling barrier is this?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/cycle_infra/Cycle_barrier_single.png'> *Single, just two barriers with a space inbetween* is shown if with <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%3Dsingle' target='_blank'>single</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/cycle_infra/Cycle_barrier_double.svg'> *Double, two barriers behind each other* is shown if with <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>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/cycle_infra/Cycle_barrier_triple.png'> *Triple, three barriers behind each other* is shown if with <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>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/themes/cycle_infra/Cycle_barrier_squeeze.png'> *Squeeze gate, gap is smaller at top, than at the bottom* is shown if with <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%3Dsqueeze' target='_blank'>squeeze</a>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier' target='_blank'>cycle_barrier</a>
|
|
||||||
|
The question is *What kind of cycling barrier is this?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Single, just two barriers with a space inbetween* corresponds with `cycle_barrier=single`
|
||||||
|
- *Double, two barriers behind each other* corresponds with `cycle_barrier=double`
|
||||||
|
- *Triple, three barriers behind each other* corresponds with `cycle_barrier=triple`
|
||||||
|
- *Squeeze gate, gap is smaller at top, than at the bottom* corresponds with `cycle_barrier=squeeze`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `barrier=cycle_barrier`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### MaxWidth
|
### MaxWidth
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: _referencing_ways~.+ & cycle_barrier!=double & cycle_barrier!=triple
|
|
||||||
|
The question is *How wide is the gap left over besides the barrier?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical)
|
||||||
|
|
||||||
|
This is rendered with `Maximum width: {maxwidth:physical} m`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `cycle_barrier!=double&cycle_barrier!=triple&_referencing_ways~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### 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)?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
|
The question is *How much space is there between the barriers (along the length of the road)?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation)
|
||||||
|
|
||||||
|
This is rendered with `Space between barriers (along the length of the road): {width:separation} m`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `cycle_barrier=double|cycle_barrier=triple`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Width of opening (cyclebarrier)
|
### Width of opening (cyclebarrier)
|
||||||
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.
|
|
||||||
|
|
||||||
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>
|
|
||||||
|
The question is *How wide is the smallest opening next to the barriers?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening)
|
||||||
|
|
||||||
|
This is rendered with `Width of opening: {width:opening} m`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `cycle_barrier=double|cycle_barrier=triple`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Overlap (cyclebarrier)
|
### Overlap (cyclebarrier)
|
||||||
The question is `How much overlap do the barriers have?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/barrier/barrier.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/barrier/barrier.json)
|
|
||||||
|
The question is *How much overlap do the barriers have?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap)
|
||||||
|
|
||||||
|
This is rendered with `Overlap: {overlap} m`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `cycle_barrier=double|cycle_barrier=triple`
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/barrier/barrier.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/barrier/barrier.json)
|
||||||
|
|
|
||||||
|
|
@ -1,129 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# bbq
|
|
||||||
|
|
||||||
A permanently installed barbecue, typically accessible to the public.
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **8** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [access](#access)
|
|
||||||
- [covered](#covered)
|
|
||||||
- [fuel](#fuel)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [fireplace](https://mapcomplete.org/fireplace)
|
|
||||||
- [nature](https://mapcomplete.org/nature)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [playgrounds](https://mapcomplete.org/playgrounds)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **BBQ** 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%3Dbbq' target='_blank'>bbq</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbbq' target='_blank'>bbq</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%22bbq%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/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) | Multiple choice | [access=yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [access=no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) [access=private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) [access=permissive](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermissive) [access=customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [access=permit](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpermit) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/covered#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/covered/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [covered](https://wiki.openstreetmap.org/wiki/Key:covered) | Multiple choice | [covered=no](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno) [covered=yes](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/fuel#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/fuel/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [fuel](https://wiki.openstreetmap.org/wiki/Key:fuel) | Multiple choice | [fuel=wood](https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dwood) [fuel=charcoal](https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dcharcoal) [fuel=electric](https://wiki.openstreetmap.org/wiki/Tag:fuel%3Delectric) [fuel=gas](https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dgas) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [access](#access) | Who is allowed to use this barbecue?<br/>6 options | | _Multiple choice only_ |
|
|
||||||
| [covered](#covered) | Is this barbecue covered?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [fuel](#fuel) | How is this barbecue fuelled?<br/>4 options | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### access
|
|
||||||
The question is `Who is allowed to use this barbecue?`
|
|
||||||
|
|
||||||
- *This barbecue can be used by anyone* 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>
|
|
||||||
- *This barbecue can't be used by anyone* 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%3Dno' target='_blank'>no</a>
|
|
||||||
- *This barbecue is private* 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%3Dprivate' target='_blank'>private</a>
|
|
||||||
- *This barbecue can be used by anyone, but the owner can revoke access at any time* 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%3Dpermissive' target='_blank'>permissive</a>
|
|
||||||
- *This barbecue can only be used by customers* 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>
|
|
||||||
- *This barbecue can only be used by authorized persons* 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%3Dpermit' target='_blank'>permit</a>
|
|
||||||
|
|
||||||
### covered
|
|
||||||
The question is `Is this barbecue covered?`
|
|
||||||
|
|
||||||
- *This barbecue is not covered* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno' target='_blank'>no</a>
|
|
||||||
- *This barbecue is covered* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
### fuel
|
|
||||||
The question is `How is this barbecue fuelled?`
|
|
||||||
|
|
||||||
- *This barbecue uses wood as fuel* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dwood' target='_blank'>wood</a>
|
|
||||||
- *This barbecue uses charcoal as fuel* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dcharcoal' target='_blank'>charcoal</a>
|
|
||||||
- *This barbecue is powered by electricity* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Delectric' target='_blank'>electric</a>
|
|
||||||
- *This barbecue uses gas as fuel* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:fuel' target='_blank'>fuel</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:fuel%3Dgas' target='_blank'>gas</a>
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/bbq/bbq.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bbq/bbq.json)
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,104 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# beehive
|
|
||||||
|
|
||||||
Layer showing beehives
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **11** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [capacity](#capacity)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [insects](https://mapcomplete.org/insects)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a beehive** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dbeehive' target='_blank'>beehive</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dbeehive' target='_blank'>beehive</a>**
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22man_made%22%3D%22beehive%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/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) | [pnat](../SpecialInputElements.md#pnat) | [capacity=1](https://wiki.openstreetmap.org/wiki/Tag:capacity%3D1) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [capacity](#capacity) | How many beehives are there?<br/>_There are {capacity} beehives_<br/>1 options | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### capacity
|
|
||||||
The question is `How many beehives are there?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/beehive/beehive.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/beehive/beehive.json)
|
|
||||||
|
|
@ -1,346 +1,420 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bench
|
bench
|
||||||
|
=======
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/layers/bench/bench.svg' height="100px">
|
||||||
|
|
||||||
A bench is a wooden, metal, stone, … surface where a human can sit. This layers visualises them and asks a few questions about them.
|
A bench is a wooden, metal, stone, … surface where a human can sit. This layers visualises them and asks a few questions about them.
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **14** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [bench-backrest](#bench-backrest)
|
|
||||||
- [bench-armrest](#bench-armrest)
|
|
||||||
- [bench-seats](#bench-seats)
|
|
||||||
- [bench-material](#bench-material)
|
|
||||||
- [bench-direction](#bench-direction)
|
|
||||||
- [bench-colour](#bench-colour)
|
|
||||||
- [bench-survey:date](#bench-surveydate)
|
|
||||||
- [bench-inscription](#bench-inscription)
|
|
||||||
- [bench-artwork](#bench-artwork)
|
|
||||||
- [bench-memorial](#bench-memorial)
|
|
||||||
- [artwork-artwork_type](#artwork-artwork_type)
|
|
||||||
- [artwork-artist-wikidata](#artwork-artist-wikidata)
|
|
||||||
- [artwork-artist_name](#artwork-artist_name)
|
|
||||||
- [artwork-website](#artwork-website)
|
|
||||||
- [artwork_subject](#artwork_subject)
|
|
||||||
- [memorial-wikidata](#memorial-wikidata)
|
|
||||||
- [subject-wikidata](#subject-wikidata)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [create_copy](#create_copy)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [artwork](https://mapcomplete.org/artwork)
|
|
||||||
- [benches](https://mapcomplete.org/benches)
|
|
||||||
- [memorials](https://mapcomplete.org/memorials)
|
|
||||||
- [nature](https://mapcomplete.org/nature)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [playgrounds](https://mapcomplete.org/playgrounds)
|
|
||||||
- [stations](https://mapcomplete.org/stations)
|
|
||||||
- [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen)
|
|
||||||
|
|
||||||
## Presets
|
- This layer is shown at zoomlevel **17** and higher
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a bench** 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%3Dbench' target='_blank'>bench</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<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>**
|
#### Themes using this layer
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bench%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/backrest#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/backrest/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [backrest=yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [backrest=yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [backrest=no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/armrest#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/armrest/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [armrest](https://wiki.openstreetmap.org/wiki/Key:armrest) | Multiple choice | [armrest=yes](https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dyes) [armrest=no](https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/seats#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/seats/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/material#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/material/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [material=wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [material=metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [material=stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [material=concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [material=plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [material=steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/direction#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/direction/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/colour#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/colour/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [colour=brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [colour=green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [colour=gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [colour=white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [colour=red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [colour=black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [colour=blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [colour=yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) |
|
|
||||||
| <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) | [survey: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/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 | [historic=memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [historic](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) | [artwork_type=architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [artwork_type=mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [artwork_type=painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [artwork_type=sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [artwork_type=statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [artwork_type=bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [artwork_type=stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [artwork_type=installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [artwork_type=graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [artwork_type=relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [artwork_type=azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [artwork_type=tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) [artwork_type=woodcarving](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dwoodcarving) [artwork_type=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_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/subject:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/subject%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/subject:wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/subject%3Awikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
- [benches](https://mapcomplete.osm.be/benches)
|
||||||
|
- [nature](https://mapcomplete.osm.be/nature)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <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>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bench%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/backrest#values) [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/seats#values) [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/tourism#values) [tourism](https://wiki.openstreetmap.org/wiki/Key:tourism) | Multiple choice | [artwork](https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dartwork) [](https://wiki.openstreetmap.org/wiki/Tag:tourism%3D)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/historic#values) [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)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artwork_type#values) [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)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artist:wikidata#values) [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/artist_name#values) [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/subject:wikidata#values) [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [bench-backrest](#bench-backrest) | Does this bench have a backrest?<br/>3 options | bench-questions | _Multiple choice only_ |
|
|
||||||
| [bench-armrest](#bench-armrest) | Does this bench have one or more armrests?<br/>2 options | bench-questions | _Multiple choice only_ |
|
|
||||||
| [bench-seats](#bench-seats) | How many seats does this bench have?<br/>_This bench has {seats} seats_<br/>1 options | bench-questions | *[seats](https://wiki.osm.org/wiki/Key:seats)* ([nat](../SpecialInputElements.md#nat)) |
|
|
||||||
| [bench-material](#bench-material) | What is the bench (seating) made from?<br/>_Material: {material}_<br/>6 options | bench-questions | *[material](https://wiki.osm.org/wiki/Key:material)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [bench-direction](#bench-direction) | In which direction are you looking when sitting on the bench?<br/>_When sitting on the bench, one looks towards {direction}°._ | bench-questions | *[direction](https://wiki.osm.org/wiki/Key:direction)* ([direction](../SpecialInputElements.md#direction)) |
|
|
||||||
| [bench-colour](#bench-colour) | Which colour does this bench have?<br/>_Colour: {colour}_<br/>8 options | bench-questions | *[colour](https://wiki.osm.org/wiki/Key:colour)* ([color](../SpecialInputElements.md#color)) |
|
|
||||||
| [bench-survey:date](#bench-survey:date) | When was this bench last surveyed?<br/>_This bench was last surveyed on {survey:date}_<br/>1 options | bench-questions | *[survey:date](https://wiki.osm.org/wiki/Key:survey:date)* ([date](../SpecialInputElements.md#date)) |
|
|
||||||
| [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-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/>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_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_subject](#artwork_subject) <br/> _(Original in [artwork](./artwork.md#artwork_subject))_ | What does this artwork depict?<br/>_This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}_ | artwork-question | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
|
|
||||||
| [memorial-wikidata](#memorial-wikidata) <br/> _(Original in [memorial](./memorial.md#memorial-wikidata))_ | What is the Wikipedia page about this memorial?<br/>_<h3>Wikipedia page about the memorial</h3>{wikipedia(wikidata)}_ | memorial-specific, memorial-questions | *[wikidata](https://wiki.osm.org/wiki/Key:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
|
|
||||||
| [subject-wikidata](#subject-wikidata) <br/> _(Original in [memorial](./memorial.md#subject-wikidata))_ | What is the Wikipedia page about the person or event that is remembered here?<br/>_<h3>Wikipedia page about the remembered event or person</h3>{wikipedia(subject:wikidata)}_ | memorial-specific, memorial-questions | *[subject:wikidata](https://wiki.osm.org/wiki/Key:subject:wikidata)* ([wikidata](../SpecialInputElements.md#wikidata)) |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [create_copy](#create_copy) | _{create_copy()}_ | | _Multiple choice only_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-backrest
|
### bench-backrest
|
||||||
The question is `Does this bench have a backrest?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/two_sided.svg'> *This bench is two-sided and shares the backrest* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:two_sided' target='_blank'>two_sided</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:two_sided%3Dyes' target='_blank'>yes</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/one_sided.svg'> *This bench does have a backrest* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes' target='_blank'>yes</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bench/no_backrest.svg'> *This bench does <b>not</b> have a backrest* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:backrest' target='_blank'>backrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno' target='_blank'>no</a>
|
The question is *Does this bench have a backrest?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bench is two-sided and shares the backrest* corresponds with `backrest=yes&two_sided=yes`
|
||||||
|
- *Does have a backrest* corresponds with `backrest=yes`
|
||||||
|
- *Does <b>not</b> have a backrest* corresponds with `backrest=no`
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
### bench-armrest
|
|
||||||
The question is `Does this bench have one or more armrests?`
|
|
||||||
|
|
||||||
- *This bench does have one or more armrests* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:armrest' target='_blank'>armrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This bench does <b>not</b> have any armrests* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:armrest' target='_blank'>armrest</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:armrest%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
|
||||||
|
|
||||||
### bench-seats
|
### bench-seats
|
||||||
The question is `How many seats does this bench have?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
|
The question is *How many seats does this bench have?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [seats](https://wiki.openstreetmap.org/wiki/Key:seats)
|
||||||
|
|
||||||
|
This is rendered with `{seats} seats`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bench does not have separated seats* corresponds with `seats:separated=no`
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-material
|
### bench-material
|
||||||
The question is `What is the bench (seating) made from?`
|
|
||||||
|
|
||||||
*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 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 question is *What is the bench (seating) made from?*
|
||||||
- *The seating is made from stone* 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%3Dstone' target='_blank'>stone</a>
|
|
||||||
- *The seating is made from concrete* 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%3Dconcrete' target='_blank'>concrete</a>
|
This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material)
|
||||||
- *The seating is made from plastic* 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%3Dplastic' target='_blank'>plastic</a>
|
|
||||||
- *The seating is made from steel* 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%3Dsteel' target='_blank'>steel</a>
|
This is rendered with `Material: {material}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *The seating is made from wood* corresponds with `material=wood`
|
||||||
|
- *The seating is made from metal* corresponds with `material=metal`
|
||||||
|
- *The seating is made from stone* corresponds with `material=stone`
|
||||||
|
- *The seating is made from concrete* corresponds with `material=concrete`
|
||||||
|
- *The seating is made from plastic* corresponds with `material=plastic`
|
||||||
|
- *The seating is made from steel* corresponds with `material=steel`
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-direction
|
### bench-direction
|
||||||
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.
|
|
||||||
|
|
||||||
|
The question is *In which direction are you looking when sitting on the bench?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
||||||
|
|
||||||
|
This is rendered with `When sitting on the bench, one looks towards {direction}°.`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-colour
|
### bench-colour
|
||||||
The question is `Which colour does this bench have?`
|
|
||||||
|
|
||||||
*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: 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>
|
The question is *Which colour does this bench have?*
|
||||||
- *Colour: gray* 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%3Dgray' target='_blank'>gray</a>
|
|
||||||
- *Colour: white* 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%3Dwhite' target='_blank'>white</a>
|
This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour)
|
||||||
- *Colour: red* 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%3Dred' target='_blank'>red</a>
|
|
||||||
- *Colour: black* 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%3Dblack' target='_blank'>black</a>
|
This is rendered with `Colour: {colour}`
|
||||||
- *Colour: blue* 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%3Dblue' target='_blank'>blue</a>
|
|
||||||
- *Colour: yellow* 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%3Dyellow' target='_blank'>yellow</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Colour: brown* corresponds with `colour=brown`
|
||||||
|
- *Colour: green* corresponds with `colour=green`
|
||||||
|
- *Colour: gray* corresponds with `colour=gray`
|
||||||
|
- *Colour: white* corresponds with `colour=white`
|
||||||
|
- *Colour: red* corresponds with `colour=red`
|
||||||
|
- *Colour: black* corresponds with `colour=black`
|
||||||
|
- *Colour: blue* corresponds with `colour=blue`
|
||||||
|
- *Colour: yellow* corresponds with `colour=yellow`
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-survey:date
|
### bench-survey:date
|
||||||
The question is `When was this bench last surveyed?`
|
|
||||||
|
|
||||||
*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set.
|
|
||||||
|
|
||||||
- *Surveyed today!* is shown if with survey:date=
|
|
||||||
|
The question is *When was this bench last surveyed?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date)
|
||||||
|
|
||||||
|
This is rendered with `This bench was last surveyed on {survey:date}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Surveyed today!* corresponds with `survey:date=`
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-inscription
|
### bench-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 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_
|
The question is *Does this bench have an inscription?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription)
|
||||||
|
|
||||||
|
This is rendered with `This bench does have the following inscription:<br/><p><i>{inscription}</i></p>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bench does not have an inscription* corresponds with `not:inscription=yes`
|
||||||
|
- *This bench does <span class='subtle'>(probably)</span> not have an inscription* corresponds with ``
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-artwork
|
### bench-artwork
|
||||||
The question is `Does this bench have an artistic element?`
|
|
||||||
|
|
||||||
- *This bench has an integrated artwork* is shown if with <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 bench does not have an integrated artwork* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:not:tourism:artwork' target='_blank'>not:tourism:artwork</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not:tourism:artwork%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This bench <span class="subtle">probably</span> doesn't have an integrated artwork* is shown if with tourism=. _This option cannot be chosen as answer_
|
The question is *Does this bench have an artistic element?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bench has an integrated artwork* corresponds with `tourism=artwork`
|
||||||
|
- *This bench does not have an integrated artwork* corresponds with ``
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench-memorial
|
### bench-memorial
|
||||||
The question is `Does this bench act as memorial for someone or something?`
|
|
||||||
|
|
||||||
- *This bench is a memorial for someone or something* is shown if with <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 bench is a <b>not</b> a memorial for someone or something* is shown if with historic= & <a href='https://wiki.openstreetmap.org/wiki/Key:not:historic' target='_blank'>not:historic</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:not: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> | <a href='https://wiki.openstreetmap.org/wiki/Key:memorial' target='_blank'>memorial</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:memorial%3Dbench' target='_blank'>bench</a> | <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> | inscription~.+
|
|
||||||
|
The question is *Does this bench act as memorial for someone or something?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bench is a memorial for someone or something* corresponds with `historic=memorial`
|
||||||
|
- *This bench is a <b>not</b> a memorial for someone or something* corresponds with `not:historic=memorial`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `historic=memorial|inscription~.+|memorial=bench|tourism=artwork`
|
||||||
|
|
||||||
This tagrendering has labels `bench-questions`
|
This tagrendering has labels `bench-questions`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### artwork-artwork_type
|
### artwork-artwork_type
|
||||||
The question is `What is the type of this artwork?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
- *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>
|
|
||||||
- *Painting* 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%3Dpainting' target='_blank'>painting</a>
|
|
||||||
- *Sculpture* 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%3Dsculpture' target='_blank'>sculpture</a>
|
|
||||||
- *Statue* 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%3Dstatue' target='_blank'>statue</a>
|
|
||||||
- *Bust* 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%3Dbust' target='_blank'>bust</a>
|
|
||||||
- *Stone* 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%3Dstone' target='_blank'>stone</a>
|
|
||||||
- *Installation* 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%3Dinstallation' target='_blank'>installation</a>
|
|
||||||
- *Graffiti* 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%3Dgraffiti' target='_blank'>graffiti</a>
|
|
||||||
- *Relief* 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%3Drelief' target='_blank'>relief</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>
|
|
||||||
- *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>
|
The question is *What is the type of this artwork?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type)
|
||||||
|
|
||||||
|
This is rendered with `This is a {artwork_type}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Architecture* corresponds with `artwork_type=architecture`
|
||||||
|
- *Mural* corresponds with `artwork_type=mural`
|
||||||
|
- *Painting* corresponds with `artwork_type=painting`
|
||||||
|
- *Sculpture* corresponds with `artwork_type=sculpture`
|
||||||
|
- *Statue* corresponds with `artwork_type=statue`
|
||||||
|
- *Bust* corresponds with `artwork_type=bust`
|
||||||
|
- *Stone* corresponds with `artwork_type=stone`
|
||||||
|
- *Installation* corresponds with `artwork_type=installation`
|
||||||
|
- *Graffiti* corresponds with `artwork_type=graffiti`
|
||||||
|
- *Relief* corresponds with `artwork_type=relief`
|
||||||
|
- *Azulejo (Spanish decorative tilework)* corresponds with `artwork_type=azulejo`
|
||||||
|
- *Tilework* corresponds with `artwork_type=tilework`
|
||||||
|
- *Woodcarving* corresponds with `artwork_type=woodcarving`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `tourism=artwork`
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
This tagrendering has labels `artwork-question`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### artwork-artist-wikidata
|
### artwork-artist-wikidata
|
||||||
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 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>
|
|
||||||
|
The question is *Who made this artwork?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [artist:wikidata](https://wiki.openstreetmap.org/wiki/Key:artist:wikidata)
|
||||||
|
|
||||||
|
This is rendered with `This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `tourism=artwork`
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
This tagrendering has labels `artwork-question`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### artwork-artist_name
|
### artwork-artist_name
|
||||||
The question is `Which artist created this?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
|
The question is *Which artist created this?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name)
|
||||||
|
|
||||||
|
This is rendered with `Created by {artist_name}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `tourism=artwork`
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
This tagrendering has labels `artwork-question`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### artwork-website
|
### artwork-website
|
||||||
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.
|
|
||||||
|
|
||||||
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>
|
|
||||||
|
The question is *Is there a website with more information about this artwork?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
|
|
||||||
|
This is rendered with `More information on <a href='{website}' target='_blank'>this website</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `tourism=artwork`
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
This tagrendering has labels `artwork-question`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### artwork_subject
|
### artwork_subject
|
||||||
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: <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>
|
|
||||||
|
The question is *What does this artwork depict?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [subject:wikidata](https://wiki.openstreetmap.org/wiki/Key:subject:wikidata)
|
||||||
|
|
||||||
|
This is rendered with `This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `tourism=artwork`
|
||||||
|
|
||||||
This tagrendering has labels `artwork-question`
|
This tagrendering has labels `artwork-question`
|
||||||
|
|
||||||
### memorial-wikidata
|
|
||||||
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.
|
|
||||||
|
|
||||||
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>
|
#### Filters
|
||||||
This tagrendering has labels `memorial-specific` `memorial-questions`
|
|
||||||
|
|
||||||
### subject-wikidata
|
|
||||||
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.
|
|
||||||
|
|
||||||
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 `memorial-specific` `memorial-questions`
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### create_copy
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{create_copy()}*
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| bench_is_memorial.0 | is a memorial | historic=memorial | memorial=bench |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| has_backrest.0 | *With and without backrest* (default) | |
|
|
||||||
| has_backrest.1 | Has a backrest | backrest=yes |
|
|
||||||
| has_backrest.2 | Has no backrest | backrest=no |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| has_image.0 | *With and without images* (default) | |
|
|
||||||
| has_image.1 | Has at least one image | image~.+ | ^(image:[0-9]+)$~~.+ | ^(panoramax:[0-9]+)$~~.+ | mapillary~.+ |
|
|
||||||
| has_image.2 | Probably does not have an image | (image!~.+ | ^(image:[0-9]+!)$~~.+ | ^(panoramax:[0-9]+!)$~~.+ | mapillary!~.+) |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/bench/bench.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bench/bench.json)
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
bench_is_memorial.0 | is a memorial | historic=memorial\|memorial=bench
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
has_backrest.0 | With and without backrest (default) |
|
||||||
|
has_backrest.1 | Has a backrest | backrest=yes
|
||||||
|
has_backrest.2 | Has no backrest | backrest=no
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
has_image.0 | With and without images (default) |
|
||||||
|
has_image.1 | Has at least one image | image~.+\|image:0~.+|image:1~.+|image:2~.+|image:3~.+|mapillary~.+
|
||||||
|
has_image.2 | Probably does not have an image |
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/bench/bench.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench/bench.json)
|
||||||
|
|
|
||||||
|
|
@ -1,101 +1,111 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bench_at_pt
|
bench_at_pt
|
||||||
|
=============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/themes/benches/bench_public_transport.svg' height="100px">
|
||||||
|
|
||||||
A layer showing all public-transport-stops which do have a bench
|
A layer showing all public-transport-stops which do have a bench
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **14** and higher
|
- This layer is shown at zoomlevel **14** and higher
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [bench_at_pt-name](#bench_at_pt-name)
|
|
||||||
- [bench_at_pt-bench_type](#bench_at_pt-bench_type)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [benches](https://mapcomplete.org/benches)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
|
||||||
|
|
||||||
0. <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dbus_stop' target='_blank'>bus_stop</a>
|
|
||||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22highway%22%3D%22bus_stop%22%5D%5B%22bench%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22bus_stop%22%5D%5B%22bench%22%3D%22stand_up_bench%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
|
||||||
|
|
||||||
## Supported attributes
|
- [benches](https://mapcomplete.osm.be/benches)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
**Warning:**: this quick overview is incomplete
|
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <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/bench#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bench/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bench](https://wiki.openstreetmap.org/wiki/Key:bench) | Multiple choice | [bench=yes](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes) [bench=stand_up_bench](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench) [bench=no](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
Basic tags for this layer
|
||||||
-----|-----|-----|----- |
|
---------------------------
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [bench_at_pt-name](#bench_at_pt-name) | _{name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [bench_at_pt-bench_type](#bench_at_pt-bench_type) | What kind of bench is this?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:highway' target='_blank'>highway</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:highway%3Dbus_stop' target='_blank'>bus_stop</a>
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22highway%22%3D%22bus_stop%22%5D%5B%22bench%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22highway%22%3D%22bus_stop%22%5D%5B%22bench%22%3D%22stand_up_bench%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bench#values) [bench](https://wiki.openstreetmap.org/wiki/Key:bench) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes) [stand_up_bench](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench) [no](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench_at_pt-name
|
### bench_at_pt-name
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{name}* is shown if `name` is set.
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
|
|
||||||
|
This is rendered with `{name}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bench_at_pt-bench_type
|
### bench_at_pt-bench_type
|
||||||
The question is `What kind of bench is this?`
|
|
||||||
|
|
||||||
- *There is a normal, sit-down bench here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *Stand up bench* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench' target='_blank'>stand_up_bench</a>
|
|
||||||
- *There is no bench here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bench' target='_blank'>bench</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### delete-button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{delete_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/bench_at_pt/bench_at_pt.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bench_at_pt/bench_at_pt.json)
|
|
||||||
|
The question is *What kind of bench is this?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *There is a normal, sit-down bench here* corresponds with `bench=yes`
|
||||||
|
- *Stand up bench* corresponds with `bench=stand_up_bench`
|
||||||
|
- *There is no bench here* corresponds with `bench=no`
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/bench_at_pt/bench_at_pt.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench_at_pt/bench_at_pt.json)
|
||||||
|
|
|
||||||
|
|
@ -1,193 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# bicycle_assisted_repair_workshop
|
|
||||||
|
|
||||||
This layer is based on [assisted_repair](../Layers/assisted_repair.md)
|
|
||||||
|
|
||||||
A self-assisted workshop is a location where people can come and repair their goods with help of volunteers and with the tools available at the given location. A repair café is a type of event organized regularly along the same principles.
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **11** and higher
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [preset_description](#preset_description)
|
|
||||||
- [name](#name)
|
|
||||||
- [opening_hours_by_appointment](#opening_hours_by_appointment)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [email](#email)
|
|
||||||
- [website](#website)
|
|
||||||
- [mastodon](#mastodon)
|
|
||||||
- [facebook](#facebook)
|
|
||||||
- [item:repair](#itemrepair)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [lod](#lod)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
5. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.org/cyclofix)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
|
||||||
|
|
||||||
0. <a href='https://wiki.openstreetmap.org/wiki/Key:repair' target='_blank'>repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:repair%3Dassisted_self_service' target='_blank'>assisted_self_service</a>
|
|
||||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle:repair' target='_blank'>bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle:repair%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%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%22repair%22%3D%22assisted_self_service%22%5D%5B%22bicycle%3Arepair%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22repair%22%3D%22assisted_self_service%22%5D%5B%22service%3Abicycle%3Arepair%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/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/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) | [opening_hours="by appointment"](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D"by appointment") |
|
|
||||||
| <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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/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:facebook#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/contact%3Afacebook/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [contact:facebook](https://wiki.openstreetmap.org/wiki/Key:contact:facebook) | [url](../SpecialInputElements.md#url) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [preset_description](#preset_description) <br/> _(Original in [questions](./BuiltinQuestions.md#preset_description))_ | _{preset_description()}_ | | _Multiple choice only_ |
|
|
||||||
| [name](#name) | What is the name of this repair workshop?<br/>_This workshop is called <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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) <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)) |
|
|
||||||
| [item:repair](#item:repair) | What type of items are repaired here?<br/>6 options | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### preset_description
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{preset_description()}*
|
|
||||||
|
|
||||||
### name
|
|
||||||
The question is `What is the name of this repair workshop?`
|
|
||||||
|
|
||||||
*This workshop is called <b>{name}</b>* is shown if `name` is set.
|
|
||||||
|
|
||||||
### opening_hours_by_appointment
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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_
|
|
||||||
- *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
|
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### email
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### website
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### mastodon
|
|
||||||
Shows and asks for the mastodon handle
|
|
||||||
The question is `What is the Mastodon-handle of {title()}?`
|
|
||||||
|
|
||||||
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set.
|
|
||||||
|
|
||||||
### facebook
|
|
||||||
Shows and asks for the facebook handle
|
|
||||||
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.
|
|
||||||
|
|
||||||
### item:repair
|
|
||||||
The question is `What type of items are repaired here?`
|
|
||||||
|
|
||||||
- *Mobile phones are repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:mobile_phone:repair' target='_blank'>service:mobile_phone:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:mobile_phone:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:mobile_phone:repair' target='_blank'>service:mobile_phone:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:mobile_phone:repair%3Dno' target='_blank'>no</a>
|
|
||||||
- *Computers are repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:computer:repair' target='_blank'>service:computer:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:computer:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:computer:repair' target='_blank'>service:computer:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:computer:repair%3Dno' target='_blank'>no</a>
|
|
||||||
- *Bicycles are repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno' target='_blank'>no</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/recycling/small_electrical_appliances.svg'> *Electronic devices are repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:electronics:repair' target='_blank'>service:electronics:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electronics:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:electronics:repair' target='_blank'>service:electronics:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:electronics:repair%3Dno' target='_blank'>no</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/recycling/furniture.svg'> *Furniture is repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:furniture:repair' target='_blank'>service:furniture:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:furniture:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:furniture:repair' target='_blank'>service:furniture:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:furniture:repair%3Dno' target='_blank'>no</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/recycling/clothes.svg'> *Clothes are repaired here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:clothes:repair' target='_blank'>service:clothes:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:clothes:repair%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:service:clothes:repair' target='_blank'>service:clothes:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:clothes:repair%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### 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`
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/cyclofix/cyclofix.json)
|
|
||||||
|
|
@ -1,151 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# bicycle_counter
|
|
||||||
|
|
||||||
Layer showing monitoring stations for bicycle traffic
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **13** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [display](#display)
|
|
||||||
- [name](#name)
|
|
||||||
- [start_date](#start_date)
|
|
||||||
- [clock](#clock)
|
|
||||||
- [ref](#ref)
|
|
||||||
- [website](#website)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [cycle_infra](https://mapcomplete.org/cycle_infra)
|
|
||||||
- [cyclofix](https://mapcomplete.org/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a bicycle counter** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dmonitoring_station' target='_blank'>monitoring_station</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:monitoring:bicycle' target='_blank'>monitoring:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:monitoring:bicycle%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
|
||||||
|
|
||||||
0. <a href='https://wiki.openstreetmap.org/wiki/Key:monitoring:bicycle' target='_blank'>monitoring:bicycle</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:monitoring:bicycle%3Dyes' target='_blank'>yes</a>
|
|
||||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:man_made' target='_blank'>man_made</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:man_made%3Dmonitoring_station' target='_blank'>monitoring_station</a>
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22monitoring%3Abicycle%22%3D%22yes%22%5D%5B%22man_made%22%3D%22monitoring_station%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/display#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/display/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [display](https://wiki.openstreetmap.org/wiki/Key:display) | Multiple choice | [display=digital](https://wiki.openstreetmap.org/wiki/Tag:display%3Ddigital) [display=analog](https://wiki.openstreetmap.org/wiki/Tag:display%3Danalog) [display=no](https://wiki.openstreetmap.org/wiki/Tag:display%3Dno) |
|
|
||||||
| <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/start_date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/start_date/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/amenity#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/amenity/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [amenity=clock](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dclock) [amenity](https://wiki.openstreetmap.org/wiki/Tag:amenity%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) | |
|
|
||||||
| <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) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [display](#display) | Does this bicycle counter have a display showing the number of passing bicycles?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [name](#name) | What is the name of the counted location?<br/>_Name of the counted location: {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [start_date](#start_date) | When did this counter start counting?<br/>_This counter started counting on {start_date}_ | | *[start_date](https://wiki.osm.org/wiki/Key:start_date)* ([date](../SpecialInputElements.md#date)) |
|
|
||||||
| [clock](#clock) | Does this bicycle counter have a clock?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [ref](#ref) | What is the reference number of this counter?<br/>_Reference number of the counter: {ref}_<br/>1 options | | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [website](#website) | Is there a website for this bicycle counter?<br/>_Website of the counter: <a href='{website}'>{website}</a>_ | | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### display
|
|
||||||
The question is `Does this bicycle counter have a display showing the number of passing bicycles?`
|
|
||||||
|
|
||||||
- *This counter has a digital display* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:display' target='_blank'>display</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:display%3Ddigital' target='_blank'>digital</a>
|
|
||||||
- *This counter has an analog display* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:display' target='_blank'>display</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:display%3Danalog' target='_blank'>analog</a>
|
|
||||||
- *This counter has no display* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:display' target='_blank'>display</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:display%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### name
|
|
||||||
The question is `What is the name of the counted location?`
|
|
||||||
|
|
||||||
*Name of the counted location: {name}* is shown if `name` is set.
|
|
||||||
|
|
||||||
### start_date
|
|
||||||
The question is `When did this counter start counting?`
|
|
||||||
|
|
||||||
*This counter started counting on {start_date}* is shown if `start_date` is set.
|
|
||||||
|
|
||||||
### clock
|
|
||||||
The question is `Does this bicycle counter have a clock?`
|
|
||||||
|
|
||||||
- *This counter has a clock* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dclock' target='_blank'>clock</a>
|
|
||||||
- *This counter has no clock* is shown if with amenity=
|
|
||||||
|
|
||||||
### ref
|
|
||||||
The question is `What is the reference number of this counter?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
|
|
||||||
### website
|
|
||||||
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.
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/bicycle_counter/bicycle_counter.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bicycle_counter/bicycle_counter.json)
|
|
||||||
|
|
@ -1,188 +1,225 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bicycle_library
|
bicycle_library
|
||||||
|
=================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/pin:#22ff55;./assets/layers/bicycle_library/bicycle_library.svg' height="100px">
|
||||||
|
|
||||||
A facility where bicycles can be lent for longer period of times
|
A facility where bicycles can be lent for longer period of times
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **8** and higher
|
- This layer is shown at zoomlevel **8** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [bicycle_library-name](#bicycle_library-name)
|
|
||||||
- [website](#website)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [email](#email)
|
|
||||||
- [opening_hours](#opening_hours)
|
|
||||||
- [bicycle_library-charge](#bicycle_library-charge)
|
|
||||||
- [bicycle-library-target-group](#bicycle-library-target-group)
|
|
||||||
- [description](#description)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [bicyclelib](https://mapcomplete.org/bicyclelib)
|
#### Themes using this layer
|
||||||
- [circular_economy](https://mapcomplete.org/circular_economy)
|
|
||||||
- [cyclofix](https://mapcomplete.org/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a bicycle library** 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%3Dbicycle_library' target='_blank'>bicycle_library</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_library' target='_blank'>bicycle_library</a>**
|
- [bicyclelib](https://mapcomplete.osm.be/bicyclelib)
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_library%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 |
|
Basic tags for this layer
|
||||||
-----|-----|----- |
|
---------------------------
|
||||||
| <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/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/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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
Elements must have the all of following tags to be shown on 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) | |
|
|
||||||
| <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) | [charge](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) [charge=€20warranty + €20/year](https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/bicycle_library:for#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/bicycle_library%3Afor/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [bicycle_library:for](https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for) | Multiple choice | [bicycle_library:for=child](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild) [bicycle_library:for=adult](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult) [bicycle_library:for=disabled](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/description#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/description/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | |
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_library' target='_blank'>bicycle_library</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_library%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) [€20warranty + €20/year](https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle_library:for#values) [bicycle_library:for](https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for) | Multiple choice | [child](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild) [adult](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult) [disabled](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [bicycle_library-name](#bicycle_library-name) | What is the name of this bicycle library?<br/>_This bicycle library is called {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [bicycle_library-charge](#bicycle_library-charge) | How much does lending a bicycle cost?<br/>_Lending a bicycle costs {charge}_<br/>2 options | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [bicycle-library-target-group](#bicycle-library-target-group) | Who can loan bicycles here?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [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)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle_library-name
|
### bicycle_library-name
|
||||||
The question is `What is the name of this bicycle library?`
|
|
||||||
|
|
||||||
*This bicycle library is called {name}* is shown if `name` is set.
|
|
||||||
|
|
||||||
|
The question is *What is the name of this bicycle library?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
|
|
||||||
|
This is rendered with `This bicycle library is called {name}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### website
|
### website
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the website of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
|
|
||||||
|
This is rendered with `<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
### phone
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the phone number of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
|
|
||||||
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='tel:{contact:phone}'>{contact:phone}</a>* corresponds with `contact:phone~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
### email
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the email address of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
|
|
||||||
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>* corresponds with `contact:email~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### opening_hours
|
### opening_hours
|
||||||
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.
|
|
||||||
|
|
||||||
- *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_
|
|
||||||
|
The question is *What are the opening hours of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle_library-charge
|
### bicycle_library-charge
|
||||||
The question is `How much does lending a bicycle cost?`
|
|
||||||
|
|
||||||
*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 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>
|
The question is *How much does lending a bicycle cost?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
|
|
||||||
|
This is rendered with `Lending a bicycle costs {charge}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Lending a bicycle is free* corresponds with `fee=no`
|
||||||
|
- *Lending a bicycle costs €20/year and €20 warranty* corresponds with `fee=yes&charge=€20warranty + €20/year`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle-library-target-group
|
### bicycle-library-target-group
|
||||||
The question is `Who can loan bicycles here?`
|
|
||||||
|
|
||||||
- *Bikes for children available* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild' target='_blank'>child</a>
|
|
||||||
- *Bikes for adult available* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult' target='_blank'>adult</a>
|
|
||||||
- *Bikes for disabled persons available* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for' target='_blank'>bicycle_library:for</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled' target='_blank'>disabled</a>
|
|
||||||
|
|
||||||
### description
|
|
||||||
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.
|
The question is *Who can loan bicycles here?*
|
||||||
|
|
||||||
### 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()}*
|
- *Bikes for children available* corresponds with `bicycle_library:for=child`
|
||||||
|
- *Bikes for adult available* corresponds with `bicycle_library:for=adult`
|
||||||
|
- *Bikes for disabled persons available* corresponds with `bicycle_library:for=disabled`
|
||||||
|
|
||||||
### delete-button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{delete_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/bicycle_library/bicycle_library.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bicycle_library/bicycle_library.json)
|
### description
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is there still something relevant you couldn't give in the previous questions? Add it here.*
|
||||||
|
|
||||||
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
|
|
||||||
|
This is rendered with `{description}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/bicycle_library/bicycle_library.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_library/bicycle_library.json)
|
||||||
|
|
|
||||||
|
|
@ -1,302 +1,384 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bicycle_rental
|
bicycle_rental
|
||||||
|
================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/themes/bicycle_rental/logo.svg' height="100px">
|
||||||
|
|
||||||
Bicycle rental stations
|
Bicycle rental stations
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **12** and higher
|
- This layer is shown at zoomlevel **12** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [bicycle_rental_type](#bicycle_rental_type)
|
|
||||||
- [website](#website)
|
|
||||||
- [email](#email)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [opening_hours](#opening_hours)
|
|
||||||
- [payment-options](#payment-options)
|
|
||||||
- [payment-options-advanced](#payment-options-advanced)
|
|
||||||
- [bicycle-types](#bicycle-types)
|
|
||||||
- [rental-capacity-city_bike](#rental-capacity-city_bike)
|
|
||||||
- [rental-capacity-ebike](#rental-capacity-ebike)
|
|
||||||
- [rental-capacity-kid_bike](#rental-capacity-kid_bike)
|
|
||||||
- [rental-capacity-bmx](#rental-capacity-bmx)
|
|
||||||
- [rental-capacity-mtb](#rental-capacity-mtb)
|
|
||||||
- [rental-capacity-bicycle_pannier](#rental-capacity-bicycle_pannier)
|
|
||||||
- [rental-capacity-tandem_bicycle](#rental-capacity-tandem_bicycle)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [bicycle_rental](https://mapcomplete.org/bicycle_rental)
|
#### Themes using this layer
|
||||||
- [cyclofix](https://mapcomplete.org/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [stations](https://mapcomplete.org/stations)
|
|
||||||
- [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen)
|
|
||||||
- [velopark](https://mapcomplete.org/velopark)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a bicycle rental shop** 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%3Dbicycle_rental' target='_blank'>bicycle_rental</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dshop' target='_blank'>shop</a>
|
|
||||||
- **a bicycle rental** 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%3Dbicycle_rental' target='_blank'>bicycle_rental</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **any** of the following expressions:
|
- [bicycle_rental](https://mapcomplete.osm.be/bicycle_rental)
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_rental' target='_blank'>bicycle_rental</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>
|
|
||||||
- bicycle_rental~.+
|
|
||||||
- rental~^(.*bicycle.*)$
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Arental%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22bicycle_rental%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22rental%22~%22%5E%28.*bicycle.*%29%24%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
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_rental' target='_blank'>bicycle_rental</a>|bicycle_rental~.+|<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>|rental~^(.*bicycle.*)$
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Arental%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle_rental%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22rental%22~%22%5E(.*bicycle.*)%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) [bike_helmet](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:city_bike#values) [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values) [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:bmx#values) [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:mtb#values) [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values) [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:tandem_bicycle#values) [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/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) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/rental#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/rental/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [rental=city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [rental=ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [rental=bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [rental=mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [rental=kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [rental=tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [rental=racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) [rental=bike_helmet](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet) [rental=cargo_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcargo_bike) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:city_bike#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Acity_bike/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:ebike#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Aebike/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Akid_bike/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:bmx#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Abmx/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:mtb#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Amtb/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Abicycle_pannier/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:tandem_bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Atandem_bicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [bicycle_rental_type](#bicycle_rental_type) | What kind of bicycle rental is this?<br/>6 options | | _Multiple choice only_ |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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-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_ |
|
|
||||||
| [bicycle-types](#bicycle-types) | What kind of bicycles and accessories are rented here?<br/>_{rental} is rented here_<br/>9 options | bicycle_rental | *[rental](https://wiki.osm.org/wiki/Key:rental)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [rental-capacity-city_bike](#rental-capacity-city_bike) | How many city bikes can be rented here?<br/>_{capacity:city_bike} city bikes can be rented here_ | bicycle_rental | *[capacity:city_bike](https://wiki.osm.org/wiki/Key:capacity:city_bike)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-ebike](#rental-capacity-ebike) | How many electrical bikes can be rented here?<br/>_{capacity:ebike} electrical bikes can be rented here_ | bicycle_rental | *[capacity:ebike](https://wiki.osm.org/wiki/Key:capacity:ebike)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-kid_bike](#rental-capacity-kid_bike) | How many bikes for children can be rented here?<br/>_{capacity:kid_bike} bikes for children can be rented here_ | bicycle_rental | *[capacity:kid_bike](https://wiki.osm.org/wiki/Key:capacity:kid_bike)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-bmx](#rental-capacity-bmx) | How many BMX bikes can be rented here?<br/>_{capacity:bmx} BMX bikes can be rented here_ | bicycle_rental | *[capacity:bmx](https://wiki.osm.org/wiki/Key:capacity:bmx)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-mtb](#rental-capacity-mtb) | How many mountainbikes can be rented here?<br/>_{capacity:mtb} mountainbikes can be rented here_ | bicycle_rental | *[capacity:mtb](https://wiki.osm.org/wiki/Key:capacity:mtb)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-bicycle_pannier](#rental-capacity-bicycle_pannier) | How many bicycle panniers can be rented here?<br/>_{capacity:bicycle_pannier} bicycle panniers can be rented here_ | bicycle_rental | *[capacity:bicycle_pannier](https://wiki.osm.org/wiki/Key:capacity:bicycle_pannier)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-tandem_bicycle](#rental-capacity-tandem_bicycle) | How many tandem can be rented here?<br/>_{capacity:tandem_bicycle} tandem can be rented here_ | bicycle_rental | *[capacity:tandem_bicycle](https://wiki.osm.org/wiki/Key:capacity:tandem_bicycle)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle_rental_type
|
### bicycle_rental_type
|
||||||
The question is `What kind of bicycle rental is this?`
|
|
||||||
|
|
||||||
- *This is a shop whose main focus is bicycle rental* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dshop' target='_blank'>shop</a>
|
|
||||||
- *This is a rental business which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a>
|
|
||||||
- *This is a shop which sells or repairs bicycles, but also rents out bicycles* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle' target='_blank'>bicycle</a>
|
|
||||||
- *This is an automated docking station, where a bicycle is mechanically locked to a structure* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddocking_station' target='_blank'>docking_station</a>
|
|
||||||
- *A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dkey_dispensing_machine' target='_blank'>key_dispensing_machine</a>
|
|
||||||
- *This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddropoff_point' target='_blank'>dropoff_point</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_rental' target='_blank'>bicycle_rental</a>
|
|
||||||
|
The question is *What kind of bicycle rental is this?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This is a shop whose main focus is bicycle rental* corresponds with `shop=rental&bicycle_rental=shop`
|
||||||
|
- *This is a rental business which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus* corresponds with `shop=rental`
|
||||||
|
- *This is a shop which sells or repairs bicycles, but also rents out bicycles* corresponds with `service:bicycle:rental=yes&shop=bicycle`
|
||||||
|
- *This is an automated docking station, where a bicycle is mechanically locked to a structure* corresponds with `bicycle_rental=docking_station`
|
||||||
|
- *A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby* corresponds with `bicycle_rental=key_dispensing_machine`
|
||||||
|
- *This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only* corresponds with `bicycle_rental=dropoff_point`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### website
|
### website
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the website of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
|
|
||||||
|
This is rendered with `<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
### email
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the email address of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
|
|
||||||
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>* corresponds with `contact:email~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
### phone
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the phone number of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
|
|
||||||
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='tel:{contact:phone}'>{contact:phone}</a>* corresponds with `contact:phone~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### opening_hours
|
### opening_hours
|
||||||
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.
|
|
||||||
|
|
||||||
- *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_
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: opening_hours~.+ | shop~.+
|
The question is *What are the opening hours of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `shop~.+|opening_hours~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### payment-options
|
### payment-options
|
||||||
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>. Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
|
||||||
- <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>. Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
|
||||||
- <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>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: shop~.+
|
|
||||||
|
The question is *Which methods of payment are accepted here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||||
|
- Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
||||||
|
- *Payment cards are accepted here* corresponds with `payment:cards=yes`
|
||||||
|
- Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `shop~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### payment-options-advanced
|
### payment-options-advanced
|
||||||
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>. Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
|
||||||
- <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>. Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
|
||||||
- <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>
|
The question is *Which methods of payment are accepted here?*
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/smartphone.svg'> *Payment is done using a dedicated app* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dno' target='_blank'>no</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/nfc_card.svg'> *Payment is done using a membership card* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||||
|
- Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
||||||
|
- *Payment cards are accepted here* corresponds with `payment:cards=yes`
|
||||||
|
- Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
||||||
|
- *Payment is done using a dedicated app* corresponds with `payment:app=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dno' target='_blank'>no</a>
|
||||||
|
- *Payment is done using a membership card* corresponds with `payment:membership_card=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle-types
|
### bicycle-types
|
||||||
The question is `What kind of bicycles and accessories are rented here?`
|
|
||||||
|
|
||||||
*{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>
|
|
||||||
- *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>
|
The question is *What kind of bicycles and accessories are rented here?*
|
||||||
- *BMX 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%3Dbmx' target='_blank'>bmx</a>
|
|
||||||
- *Mountainbikes 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%3Dmtb' target='_blank'>mtb</a>
|
This rendering asks information about the property [rental](https://wiki.openstreetmap.org/wiki/Key:rental)
|
||||||
- *Bikes for children 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%3Dkid_bike' target='_blank'>kid_bike</a>
|
|
||||||
- *Tandem bicycles 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%3Dtandem' target='_blank'>tandem</a>
|
This is rendered with `{rental} is rented here`
|
||||||
- *Race bicycles 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%3Dracebike' target='_blank'>racebike</a>
|
|
||||||
- *Bike helmets 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%3Dbike_helmet' target='_blank'>bike_helmet</a>
|
|
||||||
- *Cargo 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%3Dcargo_bike' target='_blank'>cargo_bike</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Normal city bikes can be rented here* corresponds with `rental=city_bike`
|
||||||
|
- *Electrical bikes can be rented here* corresponds with `rental=ebike`
|
||||||
|
- *BMX bikes can be rented here* corresponds with `rental=bmx`
|
||||||
|
- *Mountainbikes can be rented here* corresponds with `rental=mtb`
|
||||||
|
- *Bikes for children can be rented here* corresponds with `rental=kid_bike`
|
||||||
|
- *Tandem bicycles can be rented here* corresponds with `rental=tandem`
|
||||||
|
- *Race bicycles can be rented here* corresponds with `rental=racebike`
|
||||||
|
- *Bike helmets can be rented here* corresponds with `rental=bike_helmet`
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-city_bike
|
### rental-capacity-city_bike
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*city_bike.*)$
|
|
||||||
|
The question is *How many city bikes can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:city_bike} city bikes can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*city_bike.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-ebike
|
### rental-capacity-ebike
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*ebike.*)$
|
|
||||||
|
The question is *How many electrical bikes can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:ebike} electrical bikes can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*ebike.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-kid_bike
|
### rental-capacity-kid_bike
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*kid_bike.*)$
|
|
||||||
|
The question is *How many bikes for children can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:kid_bike} bikes for children can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*kid_bike.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-bmx
|
### rental-capacity-bmx
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bmx.*)$
|
|
||||||
|
The question is *How many BMX bikes can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:bmx} BMX bikes can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*bmx.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-mtb
|
### rental-capacity-mtb
|
||||||
The question is `How many mountainbikes can be rented here?`
|
|
||||||
|
|
||||||
*{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.*)$
|
|
||||||
|
The question is *How many mountainbikes can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:mtb} mountainbikes can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*mtb.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-bicycle_pannier
|
### rental-capacity-bicycle_pannier
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bicycle_pannier.*)$
|
|
||||||
|
The question is *How many bicycle panniers can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:bicycle_pannier} bicycle panniers can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*bicycle_pannier.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-tandem_bicycle
|
### rental-capacity-tandem_bicycle
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*tandem_bicycle.*)$
|
|
||||||
|
The question is *How many tandem can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:tandem_bicycle} tandem can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*tandem_bicycle.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
### leftover-questions
|
This document is autogenerated from [assets/layers/bicycle_rental/bicycle_rental.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_rental/bicycle_rental.json)
|
||||||
_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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `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/bicycle_rental/bicycle_rental.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bicycle_rental/bicycle_rental.json)
|
|
||||||
|
|
|
||||||
|
|
@ -1,290 +1,407 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bicycle_rental_non_docking
|
bicycle_rental_non_docking
|
||||||
|
============================
|
||||||
|
|
||||||
This layer is based on [bicycle_rental](../Layers/bicycle_rental.md)
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/pin:#ba2792;./assets/themes/cyclofix/key.svg' height="100px">
|
||||||
|
|
||||||
Bicycle rental stations
|
Bicycle rental stations
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **14** and higher
|
- This layer is shown at zoomlevel **14** and higher
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [bicycle_rental_type](#bicycle_rental_type)
|
|
||||||
- [website](#website)
|
|
||||||
- [email](#email)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [opening_hours](#opening_hours)
|
|
||||||
- [payment-options](#payment-options)
|
|
||||||
- [payment-options-advanced](#payment-options-advanced)
|
|
||||||
- [bicycle-types](#bicycle-types)
|
|
||||||
- [rental-capacity-city_bike](#rental-capacity-city_bike)
|
|
||||||
- [rental-capacity-ebike](#rental-capacity-ebike)
|
|
||||||
- [rental-capacity-kid_bike](#rental-capacity-kid_bike)
|
|
||||||
- [rental-capacity-bmx](#rental-capacity-bmx)
|
|
||||||
- [rental-capacity-mtb](#rental-capacity-mtb)
|
|
||||||
- [rental-capacity-bicycle_pannier](#rental-capacity-bicycle_pannier)
|
|
||||||
- [rental-capacity-tandem_bicycle](#rental-capacity-tandem_bicycle)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [lod](#lod)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
5. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.org/cyclofix)
|
#### Themes using this layer
|
||||||
- [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen)
|
|
||||||
|
|
||||||
## 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%3Dbicycle_rental' target='_blank'>bicycle_rental</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a> | bicycle_rental~.+ | rental~^(.*bicycle.*)$
|
|
||||||
1. bicycle_rental!=docking_station
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Arental%22%3D%22yes%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22bicycle_rental%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22rental%22~%22%5E%28.*bicycle.*%29%24%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
|
||||||
|
|
||||||
## Supported attributes
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
|
||||||
**Warning:**: this quick overview is incomplete
|
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/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) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/rental#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/rental/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [rental=city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [rental=ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [rental=bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [rental=mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [rental=kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [rental=tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [rental=racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) [rental=bike_helmet](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet) [rental=cargo_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcargo_bike) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:city_bike#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Acity_bike/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:ebike#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Aebike/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Akid_bike/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:bmx#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Abmx/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:mtb#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Amtb/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Abicycle_pannier/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:tandem_bicycle#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Atandem_bicycle/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
Basic tags for this layer
|
||||||
-----|-----|-----|----- |
|
---------------------------
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [bicycle_rental_type](#bicycle_rental_type) | What kind of bicycle rental is this?<br/>6 options | | _Multiple choice only_ |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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-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_ |
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_rental' target='_blank'>bicycle_rental</a>|bicycle_rental~.+|<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a>|rental~^(.*bicycle.*)$
|
||||||
| [bicycle-types](#bicycle-types) | What kind of bicycles and accessories are rented here?<br/>_{rental} is rented here_<br/>9 options | bicycle_rental | *[rental](https://wiki.osm.org/wiki/Key:rental)* ([string](../SpecialInputElements.md#string)) |
|
- bicycle_rental!=docking_station
|
||||||
| [rental-capacity-city_bike](#rental-capacity-city_bike) | How many city bikes can be rented here?<br/>_{capacity:city_bike} city bikes can be rented here_ | bicycle_rental | *[capacity:city_bike](https://wiki.osm.org/wiki/Key:capacity:city_bike)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-ebike](#rental-capacity-ebike) | How many electrical bikes can be rented here?<br/>_{capacity:ebike} electrical bikes can be rented here_ | bicycle_rental | *[capacity:ebike](https://wiki.osm.org/wiki/Key:capacity:ebike)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-kid_bike](#rental-capacity-kid_bike) | How many bikes for children can be rented here?<br/>_{capacity:kid_bike} bikes for children can be rented here_ | bicycle_rental | *[capacity:kid_bike](https://wiki.osm.org/wiki/Key:capacity:kid_bike)* ([pnat](../SpecialInputElements.md#pnat)) |
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_rental%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Arental%22%3D%22yes%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22bicycle_rental%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22rental%22~%22%5E(.*bicycle.*)%24%22%5D%5B%22bicycle_rental%22!%3D%22docking_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||||
| [rental-capacity-bmx](#rental-capacity-bmx) | How many BMX bikes can be rented here?<br/>_{capacity:bmx} BMX bikes can be rented here_ | bicycle_rental | *[capacity:bmx](https://wiki.osm.org/wiki/Key:capacity:bmx)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-mtb](#rental-capacity-mtb) | How many mountainbikes can be rented here?<br/>_{capacity:mtb} mountainbikes can be rented here_ | bicycle_rental | *[capacity:mtb](https://wiki.osm.org/wiki/Key:capacity:mtb)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-bicycle_pannier](#rental-capacity-bicycle_pannier) | How many bicycle panniers can be rented here?<br/>_{capacity:bicycle_pannier} bicycle panniers can be rented here_ | bicycle_rental | *[capacity:bicycle_pannier](https://wiki.osm.org/wiki/Key:capacity:bicycle_pannier)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [rental-capacity-tandem_bicycle](#rental-capacity-tandem_bicycle) | How many tandem can be rented here?<br/>_{capacity:tandem_bicycle} tandem can be rented here_ | bicycle_rental | *[capacity:tandem_bicycle](https://wiki.osm.org/wiki/Key:capacity:tandem_bicycle)* ([pnat](../SpecialInputElements.md#pnat)) |
|
Supported attributes
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
Warning:
|
||||||
|
|
||||||
|
this quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
attribute | type | values which are supported by this layer
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) [tandem](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dtandem) [racebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dracebike) [bike_helmet](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbike_helmet)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:city_bike#values) [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values) [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:bmx#values) [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:mtb#values) [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values) [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:tandem_bicycle#values) [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle_rental_type
|
### bicycle_rental_type
|
||||||
The question is `What kind of bicycle rental is this?`
|
|
||||||
|
|
||||||
- *This is a shop whose main focus is bicycle rental* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dshop' target='_blank'>shop</a>
|
|
||||||
- *This is a rental business which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Drental' target='_blank'>rental</a>
|
|
||||||
- *This is a shop which sells or repairs bicycles, but also rents out bicycles* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental' target='_blank'>service:bicycle:rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:shop' target='_blank'>shop</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbicycle' target='_blank'>bicycle</a>
|
|
||||||
- *This is an automated docking station, where a bicycle is mechanically locked to a structure* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddocking_station' target='_blank'>docking_station</a>
|
|
||||||
- *A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Dkey_dispensing_machine' target='_blank'>key_dispensing_machine</a>
|
|
||||||
- *This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:bicycle_rental' target='_blank'>bicycle_rental</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bicycle_rental%3Ddropoff_point' target='_blank'>dropoff_point</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_rental' target='_blank'>bicycle_rental</a>
|
|
||||||
|
The question is *What kind of bicycle rental is this?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This is a shop whose main focus is bicycle rental* corresponds with `shop=rental&bicycle_rental=shop`
|
||||||
|
- *This is a rental business which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus* corresponds with `shop=rental`
|
||||||
|
- *This is a shop which sells or repairs bicycles, but also rents out bicycles* corresponds with `service:bicycle:rental=yes&shop=bicycle`
|
||||||
|
- *This is an automated docking station, where a bicycle is mechanically locked to a structure* corresponds with `bicycle_rental=docking_station`
|
||||||
|
- *A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby* corresponds with `bicycle_rental=key_dispensing_machine`
|
||||||
|
- *This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only* corresponds with `bicycle_rental=dropoff_point`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### website
|
### website
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the website of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
|
|
||||||
|
This is rendered with `<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
### email
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the email address of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
|
|
||||||
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>* corresponds with `contact:email~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
### phone
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the phone number of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
|
|
||||||
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='tel:{contact:phone}'>{contact:phone}</a>* corresponds with `contact:phone~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### opening_hours
|
### opening_hours
|
||||||
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.
|
|
||||||
|
|
||||||
- *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_
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: opening_hours~.+ | shop~.+
|
The question is *What are the opening hours of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `shop~.+|opening_hours~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### payment-options
|
### payment-options
|
||||||
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>. Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
|
||||||
- <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>. Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
|
||||||
- <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>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: shop~.+
|
|
||||||
|
The question is *Which methods of payment are accepted here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||||
|
- Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
||||||
|
- *Payment cards are accepted here* corresponds with `payment:cards=yes`
|
||||||
|
- Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `shop~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### payment-options-advanced
|
### payment-options-advanced
|
||||||
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>. Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
|
||||||
- <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>. Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
|
||||||
- <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>
|
The question is *Which methods of payment are accepted here?*
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/smartphone.svg'> *Payment is done using a dedicated app* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dno' target='_blank'>no</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/nfc_card.svg'> *Payment is done using a membership card* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dyes' target='_blank'>yes</a>. Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Cash is accepted here* corresponds with `payment:cash=yes`
|
||||||
|
- Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
||||||
|
- *Payment cards are accepted here* corresponds with `payment:cards=yes`
|
||||||
|
- Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
||||||
|
- *Payment is done using a dedicated app* corresponds with `payment:app=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:app' target='_blank'>payment:app</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:app%3Dno' target='_blank'>no</a>
|
||||||
|
- *Payment is done using a membership card* corresponds with `payment:membership_card=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:payment:membership_card' target='_blank'>payment:membership_card</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:payment:membership_card%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bicycle-types
|
### bicycle-types
|
||||||
The question is `What kind of bicycles and accessories are rented here?`
|
|
||||||
|
|
||||||
*{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>
|
|
||||||
- *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>
|
The question is *What kind of bicycles and accessories are rented here?*
|
||||||
- *BMX 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%3Dbmx' target='_blank'>bmx</a>
|
|
||||||
- *Mountainbikes 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%3Dmtb' target='_blank'>mtb</a>
|
This rendering asks information about the property [rental](https://wiki.openstreetmap.org/wiki/Key:rental)
|
||||||
- *Bikes for children 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%3Dkid_bike' target='_blank'>kid_bike</a>
|
|
||||||
- *Tandem bicycles 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%3Dtandem' target='_blank'>tandem</a>
|
This is rendered with `{rental} is rented here`
|
||||||
- *Race bicycles 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%3Dracebike' target='_blank'>racebike</a>
|
|
||||||
- *Bike helmets 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%3Dbike_helmet' target='_blank'>bike_helmet</a>
|
|
||||||
- *Cargo 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%3Dcargo_bike' target='_blank'>cargo_bike</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Normal city bikes can be rented here* corresponds with `rental=city_bike`
|
||||||
|
- *Electrical bikes can be rented here* corresponds with `rental=ebike`
|
||||||
|
- *BMX bikes can be rented here* corresponds with `rental=bmx`
|
||||||
|
- *Mountainbikes can be rented here* corresponds with `rental=mtb`
|
||||||
|
- *Bikes for children can be rented here* corresponds with `rental=kid_bike`
|
||||||
|
- *Tandem bicycles can be rented here* corresponds with `rental=tandem`
|
||||||
|
- *Race bicycles can be rented here* corresponds with `rental=racebike`
|
||||||
|
- *Bike helmets can be rented here* corresponds with `rental=bike_helmet`
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-city_bike
|
### rental-capacity-city_bike
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*city_bike.*)$
|
|
||||||
|
The question is *How many city bikes can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:city_bike} city bikes can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*city_bike.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-ebike
|
### rental-capacity-ebike
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*ebike.*)$
|
|
||||||
|
The question is *How many electrical bikes can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:ebike} electrical bikes can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*ebike.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-kid_bike
|
### rental-capacity-kid_bike
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*kid_bike.*)$
|
|
||||||
|
The question is *How many bikes for children can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:kid_bike} bikes for children can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*kid_bike.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-bmx
|
### rental-capacity-bmx
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bmx.*)$
|
|
||||||
|
The question is *How many BMX bikes can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:bmx} BMX bikes can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*bmx.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-mtb
|
### rental-capacity-mtb
|
||||||
The question is `How many mountainbikes can be rented here?`
|
|
||||||
|
|
||||||
*{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.*)$
|
|
||||||
|
The question is *How many mountainbikes can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:mtb} mountainbikes can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*mtb.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-bicycle_pannier
|
### rental-capacity-bicycle_pannier
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bicycle_pannier.*)$
|
|
||||||
|
The question is *How many bicycle panniers can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:bicycle_pannier} bicycle panniers can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*bicycle_pannier.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### rental-capacity-tandem_bicycle
|
### rental-capacity-tandem_bicycle
|
||||||
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.
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: rental~^(.*tandem_bicycle.*)$
|
|
||||||
|
The question is *How many tandem can be rented here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:tandem_bicycle](https://wiki.openstreetmap.org/wiki/Key:capacity:tandem_bicycle)
|
||||||
|
|
||||||
|
This is rendered with `{capacity:tandem_bicycle} tandem can be rented here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `rental~^(.*tandem_bicycle.*)$`
|
||||||
|
|
||||||
This tagrendering has labels `bicycle_rental`
|
This tagrendering has labels `bicycle_rental`
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
### questions
|
||||||
|
|
||||||
### 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`
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
## 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/themes/cyclofix/cyclofix.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/cyclofix/cyclofix.json)
|
Show the images block at this location
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Shows a small map with the feature. Added by default to every popup
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/themes/cyclofix/cyclofix.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/cyclofix/cyclofix.json)
|
||||||
|
|
|
||||||
201
Docs/Layers/bicycle_tube_vending_machine.md
Normal file
201
Docs/Layers/bicycle_tube_vending_machine.md
Normal file
|
|
@ -0,0 +1,201 @@
|
||||||
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
|
bicycle_tube_vending_machine
|
||||||
|
==============================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/pin:#ffffff;./assets/layers/bicycle_tube_vending_machine/pinIcon.svg' height="100px">
|
||||||
|
|
||||||
|
A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, …)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is shown at zoomlevel **13** and higher
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Themes using this layer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <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>
|
||||||
|
- vending~^(.*bicycle_tube.*)$
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22vending_machine%22%5D%5B%22vending%22~%22%5E(.*bicycle_tube.*)%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operational_status#values) [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/brand#values) [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)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:operator%3DSchwalbe) [Continental](https://wiki.openstreetmap.org/wiki/Tag:operator%3DContinental)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### images
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Still in use?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is this vending machine still operational?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status)
|
||||||
|
|
||||||
|
This is rendered with `The operational status is <i>{operational_status}</i>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This vending machine works* corresponds with ``
|
||||||
|
- *This vending machine is broken* corresponds with `operational_status=broken`
|
||||||
|
- *This vending machine is closed* corresponds with `operational_status=closed`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### bicycle_tube_vending_machine-charge
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *How much does a bicycle tube cost?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
|
|
||||||
|
This is rendered with `A bicycle tube costs {charge}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### vending-machine-payment-methods
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *How can one pay at this tube vending machine?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Payment with coins is possible* corresponds with `payment:coins=yes`
|
||||||
|
- 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>
|
||||||
|
- *Payment with notes is possible* corresponds with `payment:notes=yes`
|
||||||
|
- 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>
|
||||||
|
- *Payment with cards is possible* corresponds with `payment:cards=yes`
|
||||||
|
- Unselecting this answer will add <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%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### bicycle_tube_vending_machine-brand
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Which brand of tubes are sold here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand)
|
||||||
|
|
||||||
|
This is rendered with `{brand} tubes are sold here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Continental tubes are sold here* corresponds with `brand=Continental`
|
||||||
|
- *Schwalbe tubes are sold here* corresponds with `brand=Schwalbe`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### bicycle_tube_vending_machine-operator
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Who maintains this vending machine?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
|
|
||||||
|
This is rendered with `This vending machine is maintained by {operator}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Maintained by Schwalbe* corresponds with `operator=Schwalbe`
|
||||||
|
- *Maintained by Continental* corresponds with `operator=Continental`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### bicycle_tube_vending_maching-other-items
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Are other bicycle bicycle accessories sold here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Bicycle lights are sold here* corresponds with `vending:bicycle_light=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_light' target='_blank'>vending:bicycle_light</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_light%3Dno' target='_blank'>no</a>
|
||||||
|
- *Gloves are sold here* corresponds with `vending:gloves=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:gloves' target='_blank'>vending:gloves</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:gloves%3Dno' target='_blank'>no</a>
|
||||||
|
- *Bicycle repair kits are sold here* corresponds with `vending:bicycle_repair_kit=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_repair_kit' target='_blank'>vending:bicycle_repair_kit</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_repair_kit%3Dno' target='_blank'>no</a>
|
||||||
|
- *Bicycle pumps are sold here* corresponds with `vending:bicycle_pump=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_pump' target='_blank'>vending:bicycle_pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_pump%3Dno' target='_blank'>no</a>
|
||||||
|
- *Bicycle locks are sold here* corresponds with `vending:bicycle_lock=yes`
|
||||||
|
- Unselecting this answer will add <a href='https://wiki.openstreetmap.org/wiki/Key:vending:bicycle_lock' target='_blank'>vending:bicycle_lock</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:vending:bicycle_lock%3Dno' target='_blank'>no</a>
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json)
|
||||||
|
|
@ -1,187 +1,222 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bike_cafe
|
bike_cafe
|
||||||
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/pin:#684c2b;./assets/layers/bike_cafe/bike_cafe.svg' height="100px">
|
||||||
|
|
||||||
A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, …
|
A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, …
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **13** and higher
|
- This layer is shown at zoomlevel **13** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [bike_cafe-name](#bike_cafe-name)
|
|
||||||
- [bike_cafe-bike-pump](#bike_cafe-bike-pump)
|
|
||||||
- [bike_cafe-repair-tools](#bike_cafe-repair-tools)
|
|
||||||
- [bike_cafe-repair-service](#bike_cafe-repair-service)
|
|
||||||
- [website](#website)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [email](#email)
|
|
||||||
- [opening_hours](#opening_hours)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.org/cyclofix)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a bike cafe** 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%3Dpub' target='_blank'>pub</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dcycling' target='_blank'>cycling</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
0. <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
|
||||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dcycling' target='_blank'>cycling</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dbicycle' target='_blank'>bicycle</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dcycling' target='_blank'>cycling</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dbicycle' target='_blank'>bicycle</a> | ^(service:bicycle:.*)$~~.+
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22pub%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22pub%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22theme%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22theme%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B~%22%5E%28service%3Abicycle%3A.*%29%24%22~%22.%2B%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22pub%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22pub%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22theme%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22theme%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B~%22%5E%28service%3Abicycle%3A.*%29%24%22~%22.%2B%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22pub%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22pub%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22theme%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22theme%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B~%22%5E%28service%3Abicycle%3A.*%29%24%22~%22.%2B%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22pub%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22pub%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22theme%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22theme%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B~%22%5E%28service%3Abicycle%3A.*%29%24%22~%22.%2B%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
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub' target='_blank'>pub</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar' target='_blank'>bar</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe' target='_blank'>cafe</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant' target='_blank'>restaurant</a>
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:pub' target='_blank'>pub</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:pub%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dbicycle' target='_blank'>bicycle</a>|^(service:bicycle:.*)$~~.+
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22pub%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22pub%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22theme%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B%22theme%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22pub%22%5D%5B~%22%5E(service%3Abicycle%3A.*)%24%22~%22.%2B%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22pub%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22pub%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22theme%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B%22theme%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bar%22%5D%5B~%22%5E(service%3Abicycle%3A.*)%24%22~%22.%2B%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22pub%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22pub%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22theme%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B%22theme%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22cafe%22%5D%5B~%22%5E(service%3Abicycle%3A.*)%24%22~%22.%2B%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22pub%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22pub%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22theme%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B%22theme%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22restaurant%22%5D%5B~%22%5E(service%3Abicycle%3A.*)%24%22~%22.%2B%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values) [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <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/service:bicycle:pump#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Apump/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [service:bicycle:pump=yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [service:bicycle:pump=no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Adiy/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [service:bicycle:diy=yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [service:bicycle:diy=no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Arepair/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [service:bicycle:repair=yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [service:bicycle:repair=no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) |
|
|
||||||
| <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/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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [bike_cafe-name](#bike_cafe-name) | What is the name of this bike cafe?<br/>_This bike cafe is called {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [bike_cafe-bike-pump](#bike_cafe-bike-pump) | Does this bike cafe offer a bike pump for use by anyone?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [bike_cafe-repair-tools](#bike_cafe-repair-tools) | Are tools offered to repair your own bike?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [bike_cafe-repair-service](#bike_cafe-repair-service) | Does this bike cafe repair bikes?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | When it this bike café opened?<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)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cafe-name
|
### bike_cafe-name
|
||||||
The question is `What is the name of this bike cafe?`
|
|
||||||
|
|
||||||
*This bike cafe is called {name}* is shown if `name` is set.
|
|
||||||
|
|
||||||
|
The question is *What is the name of this bike cafe?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
|
|
||||||
|
This is rendered with `This bike cafe is called {name}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cafe-bike-pump
|
### bike_cafe-bike-pump
|
||||||
The question is `Does this bike cafe offer a bike pump for use by anyone?`
|
|
||||||
|
|
||||||
- *This bike cafe offers a bike pump for anyone* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This bike cafe doesn't offer a bike pump for anyone* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
|
||||||
|
The question is *Does this bike cafe offer a bike pump for use by anyone?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bike cafe offers a bike pump for anyone* corresponds with `service:bicycle:pump=yes`
|
||||||
|
- *This bike cafe doesn't offer a bike pump for anyone* corresponds with `service:bicycle:pump=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cafe-repair-tools
|
### bike_cafe-repair-tools
|
||||||
The question is `Are tools offered to repair your own bike?`
|
|
||||||
|
|
||||||
- *This bike cafe offers tools for DIY repair* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This bike cafe doesn't offer tools for DIY repair* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy' target='_blank'>service:bicycle:diy</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno' target='_blank'>no</a>
|
|
||||||
|
The question is *Are tools offered to repair your own bike?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bike cafe offers tools for DIY repair* corresponds with `service:bicycle:diy=yes`
|
||||||
|
- *This bike cafe doesn't offer tools for DIY repair* corresponds with `service:bicycle:diy=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_cafe-repair-service
|
### bike_cafe-repair-service
|
||||||
The question is `Does this bike cafe repair bikes?`
|
|
||||||
|
|
||||||
- *This bike cafe repairs bikes* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This bike cafe doesn't repair bikes* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair' target='_blank'>service:bicycle:repair</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno' target='_blank'>no</a>
|
|
||||||
|
The question is *Does this bike cafe repair bikes?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This bike cafe repairs bikes* corresponds with `service:bicycle:repair=yes`
|
||||||
|
- *This bike cafe doesn't repair bikes* corresponds with `service:bicycle:repair=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### website
|
### website
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the website of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
|
|
||||||
|
This is rendered with `<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
### phone
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the phone number of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
|
|
||||||
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='tel:{contact:phone}'>{contact:phone}</a>* corresponds with `contact:phone~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
### email
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the email address of {title()}?*
|
||||||
|
|
||||||
### opening_hours
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
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.
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</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_
|
|
||||||
|
|
||||||
### 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
|
- *<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>* corresponds with `contact:email~.+`
|
||||||
_This tagrendering has no question and is thus read-only_
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
*{move_button()}*
|
|
||||||
|
|
||||||
### delete-button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{delete_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/bike_cafe/bike_cafe.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_cafe/bike_cafe.json)
|
### opening_hours
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *When it this bike café opened?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/bike_cafe/bike_cafe.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cafe/bike_cafe.json)
|
||||||
|
|
|
||||||
|
|
@ -1,234 +1,122 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bike_cleaning
|
bike_cleaning
|
||||||
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/layers/bike_cleaning/bike_cleaning.svg' height="100px">
|
||||||
|
|
||||||
A layer showing facilities where one can clean their bike
|
A layer showing facilities where one can clean their bike
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **13** and higher
|
- This layer is shown at zoomlevel **13** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [opening_hours_24_7](#opening_hours_24_7)
|
|
||||||
- [bike_cleaning-service_bicycle_cleaning_charge](#bike_cleaning-service_bicycle_cleaning_charge)
|
|
||||||
- [bike_cleaning-charge](#bike_cleaning-charge)
|
|
||||||
- [payment-options-split](#payment-options-split)
|
|
||||||
- [denominations-coins](#denominations-coins)
|
|
||||||
- [denominations-notes](#denominations-notes)
|
|
||||||
- [automated](#automated)
|
|
||||||
- [self_service](#self_service)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.org/cyclofix)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a bike cleaning service** 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%3Dbicycle_wash' target='_blank'>bicycle_wash</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **any** of the following expressions:
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
- <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>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes' target='_blank'>yes</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy' target='_blank'>diy</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%22bicycle_wash%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Acleaning%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Acleaning%22%3D%22diy%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
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes' target='_blank'>yes</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning' target='_blank'>service:bicycle:cleaning</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy' target='_blank'>diy</a>|<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>|<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbike_wash' target='_blank'>bike_wash</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_wash%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22amenity%22%3D%22bike_wash%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Acleaning%22%3D%22yes%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22service%3Abicycle%3Acleaning%22%3D%22diy%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
||||||
|
|
||||||
| 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) | [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/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 | [payment:coins:denominations=0.01 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.01 EUR) [payment:coins:denominations=0.02 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.02 EUR) [payment:coins:denominations=0.05 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 EUR) [payment:coins:denominations=0.10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 EUR) [payment:coins:denominations=0.20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 EUR) [payment:coins:denominations=0.50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 EUR) [payment:coins:denominations=1 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 EUR) [payment:coins:denominations=2 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 EUR) [payment:coins:denominations=0.05 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.05 CHF) [payment:coins:denominations=0.10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.10 CHF) [payment:coins:denominations=0.20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.20 CHF) [payment:coins:denominations=0.50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D0.50 CHF) [payment:coins:denominations=1 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D1 CHF) [payment:coins:denominations=2 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:coins:denominations%3D2 CHF) [payment:coins:denominations=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 | [payment:notes:denominations=5 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D5 EUR) [payment:notes:denominations=10 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 EUR) [payment:notes:denominations=20 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 EUR) [payment:notes:denominations=50 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 EUR) [payment:notes:denominations=100 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 EUR) [payment:notes:denominations=200 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 EUR) [payment:notes:denominations=500 EUR](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D500 EUR) [payment:notes:denominations=10 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D10 CHF) [payment:notes:denominations=20 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D20 CHF) [payment:notes:denominations=50 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D50 CHF) [payment:notes:denominations=100 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D100 CHF) [payment:notes:denominations=200 CHF](https://wiki.openstreetmap.org/wiki/Tag:payment:notes:denominations%3D200 CHF) [payment:notes:denominations=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 | [automated=no](https://wiki.openstreetmap.org/wiki/Tag:automated%3Dno) [automated=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 | [self_service=yes](https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dyes) [self_service=no](https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dno) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [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-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_ |
|
|
||||||
| [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_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{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.
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
- <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>
|
This tagrendering has no question and is thus read-only
|
||||||
- *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
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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_
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: amenity!=bicycle_wash & service:bicycle:cleaning!=no & service:bicycle:cleaning~.+
|
|
||||||
|
|
||||||
### bike_cleaning-charge
|
### bike_cleaning-service:bicycle:cleaning:charge
|
||||||
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.
|
|
||||||
|
|
||||||
- *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>
|
|
||||||
|
|
||||||
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>
|
The question is *How much does it cost to use the cleaning service?*
|
||||||
|
|
||||||
### payment-options-split
|
This rendering asks information about the property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge)
|
||||||
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=
|
This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}`
|
||||||
- <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 cleaning service is free to use* corresponds with `service:bicycle:cleaning:fee=no`
|
||||||
The question is `what notes can you use to pay here?`
|
- *Free to use* corresponds with `service:bicycle:cleaning:fee=yes`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
- <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
|
|
||||||
The question is `Is this bicycle cleaning service automated?`
|
|
||||||
|
|
||||||
- *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. 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>
|
|
||||||
|
|
||||||
### self_service
|
|
||||||
The question is `Is this cleaning service self-service?`
|
|
||||||
|
|
||||||
- *This cleaning service is self-service* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:self_service' target='_blank'>self_service</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:self_service%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This cleaning service is operated by an employee* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:self_service' target='_blank'>self_service</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:self_service%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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_wash' target='_blank'>bicycle_wash</a>
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `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)
|
### bike_cleaning-charge
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *How much does it cost to use the cleaning service?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
|
|
||||||
|
This is rendered with `Using the cleaning service costs {charge}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This cleaning service is free to use* corresponds with `fee=no`
|
||||||
|
- *This cleaning service is paid* corresponds with `fee=yes`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `amenity=bike_wash|amenity=bicycle_wash`
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/bike_cleaning/bike_cleaning.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cleaning/bike_cleaning.json)
|
||||||
|
|
|
||||||
|
|
@ -1,276 +1,214 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bike_parking
|
bike_parking
|
||||||
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/pin:#5473de;./assets/layers/bike_parking/parking.svg' height="100px">
|
||||||
|
|
||||||
A layer showing where you can park your bike
|
A layer showing where you can park your bike
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **17** and higher
|
- This layer is shown at zoomlevel **17** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [Bicycle parking type](#bicycle-parking-type)
|
|
||||||
- [location](#location)
|
|
||||||
- [covered_and_building](#covered_and_building)
|
|
||||||
- [Capacity](#capacity)
|
|
||||||
- [Access](#access)
|
|
||||||
- [fee](#fee)
|
|
||||||
- [charge](#charge)
|
|
||||||
- [opening_hours_24_7_default](#opening_hours_24_7_default)
|
|
||||||
- [operator](#operator)
|
|
||||||
- [operator_phone](#operator_phone)
|
|
||||||
- [operator_website](#operator_website)
|
|
||||||
- [operator_email](#operator_email)
|
|
||||||
- [Cargo bike spaces?](#cargo-bike-spaces)
|
|
||||||
- [Cargo bike capacity?](#cargo-bike-capacity)
|
|
||||||
- [maxstay](#maxstay)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [create_copy](#create_copy)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [bicycle_parkings](https://mapcomplete.org/bicycle_parkings)
|
#### Themes using this layer
|
||||||
- [cyclofix](https://mapcomplete.org/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [stations](https://mapcomplete.org/stations)
|
|
||||||
- [transit](https://mapcomplete.org/transit)
|
|
||||||
- [velopark](https://mapcomplete.org/velopark)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a bike parking** 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%3Dbicycle_parking' target='_blank'>bicycle_parking</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_parking' target='_blank'>bicycle_parking</a>**
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
- [transit](https://mapcomplete.osm.be/transit)
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_parking%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 |
|
Basic tags for 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) | [bicycle_parking=stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [bicycle_parking=safe_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dsafe_loops) [bicycle_parking=wall_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops) [bicycle_parking=handlebar_holder](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder) [bicycle_parking=rack](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack) [bicycle_parking=two_tier](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier) [bicycle_parking=bollard](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard) [bicycle_parking=floor](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor) [bicycle_parking=lockers](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlockers) [bicycle_parking=lean_and_stick](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dlean_and_stick) [bicycle_parking=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 | [location=underground](https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground) [location=surface](https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface) [location=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/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) | [access=yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [access=customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [access=members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [access=private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) |
|
Elements must have the all of following tags to be shown on 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 | [fee=yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [fee=no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) |
|
|
||||||
| <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/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) | [opening_hours=24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_parking' target='_blank'>bicycle_parking</a>
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator:phone#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator%3Aphone/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator:phone](https://wiki.openstreetmap.org/wiki/Key:operator:phone) | [phone](../SpecialInputElements.md#phone) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator:website#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator%3Awebsite/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator:website](https://wiki.openstreetmap.org/wiki/Key:operator:website) | [url](../SpecialInputElements.md#url) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator:email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator%3Aemail/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator:email](https://wiki.openstreetmap.org/wiki/Key:operator:email) | [email](../SpecialInputElements.md#email) | |
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_parking%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cargo_bike#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cargo_bike/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cargo_bike](https://wiki.openstreetmap.org/wiki/Key:cargo_bike) | Multiple choice | [cargo_bike=yes](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes) [cargo_bike=designated](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated) [cargo_bike=no](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/capacity:cargo_bike#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Acargo_bike/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike) | [nat](../SpecialInputElements.md#nat) | |
|
|
||||||
| <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) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
|
Supported attributes
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Warning:
|
||||||
|
|
||||||
|
this quick overview is incomplete
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
attribute | type | values which are supported by this layer
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/bicycle_parking#values) [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) | [string](../SpecialInputElements.md#string) | [stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [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) [shed](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dshed) [bollard](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard) [floor](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/location#values) [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)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/covered#values) [covered](https://wiki.openstreetmap.org/wiki/Key:covered) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [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) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/cargo_bike#values) [cargo_bike](https://wiki.openstreetmap.org/wiki/Key:cargo_bike) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes) [designated](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated) [no](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity:cargo_bike#values) [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike) | [nat](../SpecialInputElements.md#nat) |
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [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/>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_ |
|
|
||||||
| [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)) |
|
|
||||||
| [Access](#Access) | Who can use this bicycle parking?<br/>_{access}_<br/>4 options | | *[access](https://wiki.osm.org/wiki/Key:access)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [fee](#fee) | Are these bicycle parkings free to use?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [charge](#charge) | How much does it cost to park your bike here?<br/>_Parking your bike costs {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([currency](../SpecialInputElements.md#currency)) |
|
|
||||||
| [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)) |
|
|
||||||
| [operator](#operator) | Who maintains this bicycle parking?<br/>_This bicycle parking is maintained by {operator}_ | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [operator_phone](#operator_phone) | What is the phone number of the operator of this bicycle parking?<br/>_<a href='tel:{operator:phone}'>{operator:phone}</a>_<br/>2 options | | *[operator:phone](https://wiki.osm.org/wiki/Key:operator:phone)* ([phone](../SpecialInputElements.md#phone)) |
|
|
||||||
| [operator_website](#operator_website) | What is the website number of the operator of this bicycle parking?<br/>_<a href='{operator:website}'>{operator:website}</a>_<br/>2 options | | *[operator:website](https://wiki.osm.org/wiki/Key:operator:website)* ([url](../SpecialInputElements.md#url)) |
|
|
||||||
| [operator_email](#operator_email) | What is the email address of the operator of this bicycle parking?<br/>_<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>_ | | *[operator:email](https://wiki.osm.org/wiki/Key:operator:email)* ([email](../SpecialInputElements.md#email)) |
|
|
||||||
| [Cargo bike spaces?](#Cargo bike spaces?) | Does this bicycle parking have spots for cargo bikes?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [Cargo bike capacity?](#Cargo bike capacity?) | How many cargo bicycles fit in this bicycle parking?<br/>_This parking fits {capacity:cargo_bike} cargo bikes_<br/>1 options | | *[capacity:cargo_bike](https://wiki.osm.org/wiki/Key:capacity:cargo_bike)* ([nat](../SpecialInputElements.md#nat)) |
|
|
||||||
| [maxstay](#maxstay) | What is the maximum allowed parking duration?<br/>_A bike can be parked here for at most {canonical(maxstay)}_ | | *[maxstay](https://wiki.osm.org/wiki/Key:maxstay)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [create_copy](#create_copy) | _{create_copy()}_ | | _Multiple choice only_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Bicycle parking type
|
### Bicycle parking type
|
||||||
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.
|
|
||||||
|
|
||||||
- <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/wall_loops.svg'> *Wheelbenders / rack* 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%3Dwall_loops' target='_blank'>wall_loops</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bike_parking/handlebar_holder.svg'> *Handlebar holder* 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%3Dhandlebar_holder' target='_blank'>handlebar_holder</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bike_parking/rack.svg'> *Rack* 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%3Drack' target='_blank'>rack</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bike_parking/two_tier.svg'> *Two-tiered* 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%3Dtwo_tier' target='_blank'>two_tier</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bike_parking/shed.svg'> *Shed* 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%3Dshed' target='_blank'>shed</a>. _This option cannot be chosen as answer_
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/bike_parking/bollard.svg'> *Bollard* 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%3Dbollard' target='_blank'>bollard</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 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
|
The question is *What is the type of this bicycle parking?*
|
||||||
The question is `What is the relative location of this bicycle parking?`
|
|
||||||
|
This rendering asks information about the property [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking)
|
||||||
|
|
||||||
|
This is rendered with `This is a bicycle parking of the type: {bicycle_parking}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Staple racks* corresponds with `bicycle_parking=stands`
|
||||||
|
- *Wheel rack/loops* corresponds with `bicycle_parking=wall_loops`
|
||||||
|
- *Handlebar holder* corresponds with `bicycle_parking=handlebar_holder`
|
||||||
|
- *Rack* corresponds with `bicycle_parking=rack`
|
||||||
|
- *Two-tiered* corresponds with `bicycle_parking=two_tier`
|
||||||
|
- *Shed* corresponds with `bicycle_parking=shed`
|
||||||
|
- *Bollard* corresponds with `bicycle_parking=bollard`
|
||||||
|
- *An area on the floor which is marked for bicycle parking* corresponds with `bicycle_parking=floor`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Underground?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What is the relative location of this bicycle parking?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Underground parking* corresponds with `location=underground`
|
||||||
|
- *Surface level parking* corresponds with `location=surface`
|
||||||
|
- *Rooftop parking* corresponds with `location=rooftop`
|
||||||
|
- *Surface level parking* corresponds with ``
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Is covered?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is this parking covered? Also select "covered" for indoor parkings.*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This parking is covered (it has a roof)* corresponds with `covered=yes`
|
||||||
|
- *This parking is not covered* corresponds with `covered=no`
|
||||||
|
|
||||||
- *Underground parking* 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>
|
|
||||||
- *Surface level parking* 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%3Dsurface' target='_blank'>surface</a>
|
|
||||||
- *Rooftop parking* 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%3Drooftop' target='_blank'>rooftop</a>
|
|
||||||
- *Surface level parking* is shown if with location=. _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
### covered_and_building
|
|
||||||
The question is `Is this parking covered?`
|
|
||||||
|
|
||||||
- *This is a bicycle shed (with walls on at least three sides)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dbicycle_shed' target='_blank'>bicycle_shed</a>
|
|
||||||
- *This is a bicycle parking under a roof; the roof only serves the bicycle parking* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Droof' target='_blank'>roof</a>
|
|
||||||
- *This bicycle parking is located in a building behind a door or gate* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This bicycle parking is under (a part of) a building* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:indoor' target='_blank'>indoor</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno' target='_blank'>no</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This parking is covered (it has a roof)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This parking is not covered* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:covered' target='_blank'>covered</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### Capacity
|
### Capacity
|
||||||
The question is `How many bicycles fit in this bicycle parking?`
|
|
||||||
|
|
||||||
*Place for {capacity} bikes* is shown if `capacity` is set.
|
|
||||||
|
|
||||||
|
The question is *How many bicycles fit in this bicycle parking (including possible cargo bicycles)?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
||||||
|
|
||||||
|
This is rendered with `Place for {capacity} bikes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Access
|
### Access
|
||||||
The question is `Who can use this bicycle parking?`
|
|
||||||
|
|
||||||
*{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>
|
|
||||||
- *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 limited to members of a school, company or organisation* 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%3Dmembers' target='_blank'>members</a>
|
|
||||||
- *Private bicycle parking which is never available to the public, also not via a membership fee* 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%3Dprivate' target='_blank'>private</a>
|
|
||||||
|
|
||||||
### fee
|
The question is *Who can use this bicycle parking?*
|
||||||
The question is `Are these bicycle parkings free to use?`
|
|
||||||
|
|
||||||
- *One has to <b>pay</b> to use this bicycle parking* 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 rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access)
|
||||||
- *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
|
This is rendered with `{access}`
|
||||||
The question is `How much does it cost to park your bike here?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
|
|
||||||
### opening_hours_24_7_default
|
|
||||||
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>
|
- *Publicly accessible* corresponds with `access=yes`
|
||||||
- *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_
|
- *Access is primarily for visitors to a business* corresponds with `access=customers`
|
||||||
|
- *Access is limited to members of a school, company or organisation* corresponds with `access=private`
|
||||||
|
|
||||||
### operator
|
|
||||||
The question is `Who maintains this bicycle parking?`
|
|
||||||
|
|
||||||
*This bicycle parking is maintained by {operator}* is shown if `operator` is set.
|
|
||||||
|
|
||||||
### operator_phone
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
### operator_website
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
### operator_email
|
|
||||||
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.
|
|
||||||
|
|
||||||
### Cargo bike spaces?
|
### Cargo bike spaces?
|
||||||
The question is `Does this bicycle parking have spots for cargo bikes?`
|
|
||||||
|
|
||||||
- *This parking has room for cargo bikes* 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%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This parking has designated (official) spots for cargo bikes.* 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%3Ddesignated' target='_blank'>designated</a>
|
|
||||||
- *You're not allowed to park cargo bikes or there are no places provided for cargo bikes* 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>
|
|
||||||
|
|
||||||
### Cargo bike capacity?
|
|
||||||
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.
|
The question is *Does this bicycle parking have spots for cargo bikes?*
|
||||||
|
|
||||||
- *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>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$
|
|
||||||
|
|
||||||
### maxstay
|
|
||||||
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.
|
|
||||||
|
|
||||||
### leftover-questions
|
- *This parking has room for cargo bikes* corresponds with `cargo_bike=yes`
|
||||||
_This tagrendering has no question and is thus read-only_
|
- *This parking has designated (official) spots for cargo bikes.* corresponds with `cargo_bike=designated`
|
||||||
|
- *You're not allowed to park cargo bikes* corresponds with `cargo_bike=no`
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### create_copy
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{create_copy()}*
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/bike_parking/bike_parking.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_parking/bike_parking.json)
|
### Cargo bike capacity?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *How many cargo bicycles fit in this bicycle parking?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike)
|
||||||
|
|
||||||
|
This is rendered with `This parking fits {capacity:cargo_bike} cargo bikes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `cargo_bike~^(designated|yes)$`
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/bike_parking/bike_parking.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_parking/bike_parking.json)
|
||||||
|
|
|
||||||
|
|
@ -1,283 +1,344 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bike_repair_station
|
bike_repair_station
|
||||||
|
=====================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/pin:#88d32c;./assets/layers/bike_repair_station/repair_station.svg' height="100px">
|
||||||
|
|
||||||
A layer showing bicycle pumps and bicycle repair tool stands
|
A layer showing bicycle pumps and bicycle repair tool stands
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **13** and higher
|
- This layer is shown at zoomlevel **13** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [bike_repair_station-available-services](#bike_repair_station-available-services)
|
|
||||||
- [Operational status](#operational-status)
|
|
||||||
- [opening_hours_24_7](#opening_hours_24_7)
|
|
||||||
- [access](#access)
|
|
||||||
- [bike_repair_station-operator](#bike_repair_station-operator)
|
|
||||||
- [bike_repair_station-email](#bike_repair_station-email)
|
|
||||||
- [bike_repair_station-phone](#bike_repair_station-phone)
|
|
||||||
- [bike_repair_station-bike-chain-tool](#bike_repair_station-bike-chain-tool)
|
|
||||||
- [bike_repair_station-bike-stand](#bike_repair_station-bike-stand)
|
|
||||||
- [send_email_about_broken_pump](#send_email_about_broken_pump)
|
|
||||||
- [bike_repair_station-valves](#bike_repair_station-valves)
|
|
||||||
- [bike_repair_station-electrical_pump](#bike_repair_station-electrical_pump)
|
|
||||||
- [bike_repair_station-manometer](#bike_repair_station-manometer)
|
|
||||||
- [repeated](#repeated)
|
|
||||||
- [single_level](#single_level)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [circular_economy](https://mapcomplete.org/circular_economy)
|
#### Themes using this layer
|
||||||
- [cyclofix](https://mapcomplete.org/cyclofix)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [toerisme_vlaanderen](https://mapcomplete.org/toerisme_vlaanderen)
|
|
||||||
- [velopark](https://mapcomplete.org/velopark)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a bike pump** 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%3Dbicycle_repair_station' target='_blank'>bicycle_repair_station</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno' target='_blank'>no</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **a bike repair station and pump** 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%3Dbicycle_repair_station' target='_blank'>bicycle_repair_station</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
- **a bike repair station without pump** 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%3Dbicycle_repair_station' target='_blank'>bicycle_repair_station</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_repair_station' target='_blank'>bicycle_repair_station</a>**
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_repair_station%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 |
|
Basic tags for this layer
|
||||||
-----|-----|----- |
|
---------------------------
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:tools#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Atools/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:tools](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools) | Multiple choice | [service:bicycle:tools=no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno) [service:bicycle:tools=yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes) [service:bicycle:tools=yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:pump:operational_status#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Apump%3Aoperational_status/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:pump:operational_status](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status) | Multiple choice | [service:bicycle:pump:operational_status=broken](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken) [service:bicycle:pump:operational_status=operational](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Doperational) |
|
|
||||||
| <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) | [opening_hours=24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) |
|
|
||||||
| <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) | Multiple choice | [access=yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [access=customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [access=private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/service:bicycle:chain_tool#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Achain_tool/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:chain_tool](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool) | Multiple choice | [service:bicycle:chain_tool=yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes) [service:bicycle:chain_tool=no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/service:bicycle:stand#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/service%3Abicycle%3Astand/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [service:bicycle:stand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand) | Multiple choice | [service:bicycle:stand=yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes) [service:bicycle:stand=no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/valves#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/valves/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [valves](https://wiki.openstreetmap.org/wiki/Key:valves) | [string](../SpecialInputElements.md#string) | [valves=sclaverand](https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand) [valves=dunlop](https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop) [valves=schrader](https://wiki.openstreetmap.org/wiki/Tag:valves%3Dschrader) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/manual#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/manual/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [manual](https://wiki.openstreetmap.org/wiki/Key:manual) | Multiple choice | [manual=yes](https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes) [manual=no](https://wiki.openstreetmap.org/wiki/Tag:manual%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/manometer#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/manometer/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [manometer](https://wiki.openstreetmap.org/wiki/Key:manometer) | Multiple choice | [manometer=yes](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes) [manometer=no](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno) [manometer=broken](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken) |
|
|
||||||
| <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) | [level=0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [level=1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [level=-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [bike_repair_station-available-services](#bike_repair_station-available-services) | Which services are available at this location?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [Operational status](#Operational status) | Is the bike pump still operational?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [opening_hours_24_7](#opening_hours_24_7) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours_24_7))_ | When is this bicycle repair point open?<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)) |
|
|
||||||
| [access](#access) | Who is allowed to use this repair station?<br/>5 options | | _Multiple choice only_ |
|
|
||||||
| [bike_repair_station-operator](#bike_repair_station-operator) | Who maintains this cycle pump?<br/>_Maintained by {operator}_ | operator-info | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [bike_repair_station-email](#bike_repair_station-email) | What is the email address of the maintainer?<br/>_<a href='mailto:{email}'>{email}</a>_ | operator-info | *[email](https://wiki.osm.org/wiki/Key:email)* ([email](../SpecialInputElements.md#email)) |
|
|
||||||
| [bike_repair_station-phone](#bike_repair_station-phone) | What is the phone number of the maintainer?<br/>_<a href='tel:{phone}'>{phone}</a>_ | operator-info | *[phone](https://wiki.osm.org/wiki/Key:phone)* ([phone](../SpecialInputElements.md#phone)) |
|
|
||||||
| [bike_repair_station-bike-chain-tool](#bike_repair_station-bike-chain-tool) | Does this bike repair station have a special tool to repair your bike chain?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [bike_repair_station-bike-stand](#bike_repair_station-bike-stand) | Does this bike station have a hook to hang your bike on or a stand to raise it?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [send_email_about_broken_pump](#send_email_about_broken_pump) | _{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.
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbicycle_repair_station' target='_blank'>bicycle_repair_station</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22bicycle_repair_station%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:tools#values) [service:bicycle:tools](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:pump:operational_status#values) [service:bicycle:pump:operational_status](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status) | Multiple choice | [broken](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken) [operational](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Doperational)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [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)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:chain_tool#values) [service:bicycle:chain_tool](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/service:bicycle:stand#values) [service:bicycle:stand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/valves#values) [valves](https://wiki.openstreetmap.org/wiki/Key:valves) | [string](../SpecialInputElements.md#string) | [sclaverand](https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand) [dunlop](https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop) [schrader](https://wiki.openstreetmap.org/wiki/Tag:valves%3Dschrader)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/manual#values) [manual](https://wiki.openstreetmap.org/wiki/Key:manual) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manual%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/manometer#values) [manometer](https://wiki.openstreetmap.org/wiki/Key:manometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno) [broken](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/level#values) [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)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Kind regards,Report this bicycle pump as broken)}_ | | _Multiple choice only_ |
|
|
||||||
| [bike_repair_station-valves](#bike_repair_station-valves) | What valves are supported?<br/>_This pump supports the following valves: {valves}_<br/>3 options | | *[valves](https://wiki.osm.org/wiki/Key:valves)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [bike_repair_station-electrical_pump](#bike_repair_station-electrical_pump) | Is this an electric bike pump?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [bike_repair_station-manometer](#bike_repair_station-manometer) | Does the pump have a pressure indicator or manometer?<br/>3 options | | _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)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-available-services
|
### bike_repair_station-available-services
|
||||||
The question is `Which services are available at this location?`
|
|
||||||
|
|
||||||
- *There is only a pump present* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno' target='_blank'>no</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *There are only tools (screwdrivers, pliers, …) present* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno' target='_blank'>no</a>
|
|
||||||
- *There are both tools and a pump present* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
The question is *Which services are available at this location?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *There is only a pump present* corresponds with `service:bicycle:tools=no&service:bicycle:pump=yes`
|
||||||
|
- *There are only tools (screwdrivers, pliers, …) present* corresponds with `service:bicycle:tools=yes&service:bicycle:pump=no`
|
||||||
|
- *There are both tools and a pump present* corresponds with `service:bicycle:tools=yes&service:bicycle:pump=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Operational status
|
### Operational status
|
||||||
The question is `Is the bike pump still operational?`
|
|
||||||
|
|
||||||
- *The bike pump is broken* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>service:bicycle:pump:operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken' target='_blank'>broken</a>
|
|
||||||
- *The bike pump is operational* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>service:bicycle:pump:operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Doperational' target='_blank'>operational</a>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
The question is *Is the bike pump still operational?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *The bike pump is broken* corresponds with `service:bicycle:pump:operational_status=broken`
|
||||||
|
- *The bike pump is operational* corresponds with `service:bicycle:pump:operational_status=operational`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `service:bicycle:pump=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### opening_hours_24_7
|
### opening_hours_24_7
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
The question is *When is this bicycle repair point open?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *24/7 opened (including holidays)* corresponds with `opening_hours=24/7`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### access
|
### access
|
||||||
The question is `Who is allowed to use this repair station?`
|
|
||||||
|
|
||||||
- *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_
|
|
||||||
- *Only for customers* 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>
|
The question is *Who is allowed to use this repair station?*
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/invalid.svg'> *Not accessible to the general public* 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%3Dprivate' target='_blank'>private</a>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/svg/invalid.svg'> *Not accessible to the general public* 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%3Dno' target='_blank'>no</a>. _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Publicly accessible* corresponds with `access=yes`
|
||||||
|
- *Publicly accessible* corresponds with `access=public`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *Only for customers* corresponds with `access=customers`
|
||||||
|
- *Not accessible to the general public* corresponds with `access=private`
|
||||||
|
- *Not accessible to the general public* corresponds with `access=no`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-operator
|
### bike_repair_station-operator
|
||||||
The question is `Who maintains this cycle pump?`
|
|
||||||
|
|
||||||
*Maintained by {operator}* is shown if `operator` is set.
|
|
||||||
|
|
||||||
|
The question is *Who maintains this cycle pump?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
|
|
||||||
|
This is rendered with `Maintained by {operator}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `operator-info`
|
This tagrendering has labels `operator-info`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-email
|
### bike_repair_station-email
|
||||||
The question is `What is the email address of the maintainer?`
|
|
||||||
|
|
||||||
*<a href='mailto:{email}'>{email}</a>* is shown if `email` is set.
|
|
||||||
|
|
||||||
|
The question is *What is the email address of the maintainer?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
|
|
||||||
|
This is rendered with `<a href='mailto:{email}'>{email}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `operator-info`
|
This tagrendering has labels `operator-info`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-phone
|
### bike_repair_station-phone
|
||||||
The question is `What is the phone number of the maintainer?`
|
|
||||||
|
|
||||||
*<a href='tel:{phone}'>{phone}</a>* is shown if `phone` is set.
|
|
||||||
|
|
||||||
|
The question is *What is the phone number of the maintainer?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
|
|
||||||
|
This is rendered with `<a href='tel:{phone}'>{phone}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This tagrendering has labels `operator-info`
|
This tagrendering has labels `operator-info`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-bike-chain-tool
|
### bike_repair_station-bike-chain-tool
|
||||||
The question is `Does this bike repair station have a special tool to repair your bike chain?`
|
|
||||||
|
|
||||||
- *There is a chain tool* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *There is no chain tool* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool' target='_blank'>service:bicycle:chain_tool</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%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:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
The question is *Does this bike repair station have a special tool to repair your bike chain?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *There is a chain tool* corresponds with `service:bicycle:chain_tool=yes`
|
||||||
|
- *There is no chain tool* corresponds with `service:bicycle:chain_tool=no`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `service:bicycle:tools=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-bike-stand
|
### bike_repair_station-bike-stand
|
||||||
The question is `Does this bike station have a hook to hang your bike on or a stand to raise it?`
|
|
||||||
|
|
||||||
- *There is a hook or stand* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *There is no hook or stand* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand' target='_blank'>service:bicycle:stand</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%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:service:bicycle:tools' target='_blank'>service:bicycle:tools</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
The question is *Does this bike station have a hook to hang your bike on or a stand to raise it?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *There is a hook or stand* corresponds with `service:bicycle:stand=yes`
|
||||||
|
- *There is no hook or stand* corresponds with `service:bicycle:stand=no`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `service:bicycle:tools=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### send_email_about_broken_pump
|
### send_email_about_broken_pump
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{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.
|
|
||||||
|
|
||||||
Kind regards,Report this bicycle pump as broken)}*
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `email~.+&service:bicycle:pump:operational_status=broken`
|
||||||
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status' target='_blank'>service:bicycle:pump:operational_status</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken' target='_blank'>broken</a> & email~.+
|
|
||||||
|
|
||||||
### bike_repair_station-valves
|
### bike_repair_station-valves
|
||||||
The question is `What valves are supported?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
- *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>
|
|
||||||
- *Schrader (cars and mountainbikes)* 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%3Dschrader' target='_blank'>schrader</a>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
The question is *What valves are supported?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [valves](https://wiki.openstreetmap.org/wiki/Key:valves)
|
||||||
|
|
||||||
|
This is rendered with `This pump supports the following valves: {valves}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Sclaverand/Presta (narrow-width bike tires)* corresponds with `valves=sclaverand`
|
||||||
|
- *Dunlop* corresponds with `valves=dunlop`
|
||||||
|
- *Schrader (cars and mountainbikes)* corresponds with `valves=schrader`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-electrical_pump
|
### bike_repair_station-electrical_pump
|
||||||
The question is `Is this an electric bike pump?`
|
|
||||||
|
|
||||||
- *Manual pump* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *Electrical pump* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:manual' target='_blank'>manual</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manual%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:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
The question is *Is this an electric bike pump?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Manual pump* corresponds with `manual=yes`
|
||||||
|
- *Electrical pump* corresponds with `manual=no`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `service:bicycle:pump=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bike_repair_station-manometer
|
### bike_repair_station-manometer
|
||||||
The question is `Does the pump have a pressure indicator or manometer?`
|
|
||||||
|
|
||||||
- *There is a manometer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *There is no manometer* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno' target='_blank'>no</a>
|
|
||||||
- *There is manometer but it is broken* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:manometer' target='_blank'>manometer</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken' target='_blank'>broken</a>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump' target='_blank'>service:bicycle:pump</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
### repeated
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*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 has labels `level`
|
|
||||||
|
|
||||||
### single_level
|
|
||||||
The question is `On what level is this feature located?`
|
|
||||||
|
|
||||||
*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 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 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:level' target='_blank'>level</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:level%3D1' target='_blank'>1</a>
|
|
||||||
- *Located on the first basement level* 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%3D-1' target='_blank'>-1</a>
|
|
||||||
|
|
||||||
This tagrendering has labels `level`
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/bike_repair_station/bike_repair_station.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_repair_station/bike_repair_station.json)
|
The question is *Does the pump have a pressure indicator or manometer?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *There is a manometer* corresponds with `manometer=yes`
|
||||||
|
- *There is no manometer* corresponds with `manometer=no`
|
||||||
|
- *There is manometer but it is broken* corresponds with `manometer=broken`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `service:bicycle:pump=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### level
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *On what level is this feature located?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level)
|
||||||
|
|
||||||
|
This is rendered with `Located on the {level}th floor`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Located underground* corresponds with `location=underground`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *Located on the ground floor* corresponds with `level=0`
|
||||||
|
- *Located on the ground floor* corresponds with ``
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *Located on the first floor* corresponds with `level=1`
|
||||||
|
- *Located on the first basement level* corresponds with `level=-1`
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/bike_repair_station/bike_repair_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_repair_station/bike_repair_station.json)
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,146 +1,170 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# bike_themed_object
|
bike_themed_object
|
||||||
|
====================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/layers/bike_themed_object/other_services.svg' height="100px">
|
||||||
|
|
||||||
A layer with bike-themed objects but who don't match any other layer
|
A layer with bike-themed objects but who don't match any other layer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **13** and higher
|
- This layer is shown at zoomlevel **13** and higher
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [description](#description)
|
|
||||||
- [website](#website)
|
|
||||||
- [email](#email)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [opening_hours](#opening_hours)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
5. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [cyclofix](https://mapcomplete.org/cyclofix)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **any** of the following expressions:
|
|
||||||
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:association' target='_blank'>association</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:association%3Dcycling' target='_blank'>cycling</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:association' target='_blank'>association</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:association%3Dbicycle' target='_blank'>bicycle</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dbicycle' target='_blank'>bicycle</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dcycling' target='_blank'>cycling</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:ngo' target='_blank'>ngo</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:ngo%3Dcycling' target='_blank'>cycling</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:ngo' target='_blank'>ngo</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:ngo%3Dbicycle' target='_blank'>bicycle</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcycling' target='_blank'>cycling</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dbicycle' target='_blank'>bicycle</a>
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dcycling' target='_blank'>cycling</a>
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22association%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22association%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22club%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22club%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22ngo%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22ngo%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22sport%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22theme%22%3D%22bicycle%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22theme%22%3D%22cycling%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
|
||||||
|
|
||||||
## Supported attributes
|
- [cyclofix](https://mapcomplete.osm.be/cyclofix)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
**Warning:**: this quick overview is incomplete
|
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/description#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/description/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | |
|
|
||||||
| <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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/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) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
Basic tags for this layer
|
||||||
-----|-----|-----|----- |
|
---------------------------
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:theme' target='_blank'>theme</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:theme%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:sport' target='_blank'>sport</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sport%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:association' target='_blank'>association</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:association%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:association' target='_blank'>association</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:association%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:ngo' target='_blank'>ngo</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:ngo%3Dcycling' target='_blank'>cycling</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:ngo' target='_blank'>ngo</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:ngo%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dbicycle' target='_blank'>bicycle</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dcycling' target='_blank'>cycling</a>
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22association%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22association%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22club%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22club%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22ngo%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22ngo%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22sport%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22theme%22%3D%22bicycle%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22theme%22%3D%22cycling%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### description
|
### description
|
||||||
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.
|
|
||||||
|
|
||||||
|
The question is *Is there still something relevant you couldn't give in the previous questions? Add it here.*
|
||||||
|
|
||||||
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
|
|
||||||
|
This is rendered with `{description}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### website
|
### website
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the website of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
|
|
||||||
|
This is rendered with `<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
### email
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the email address of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
|
|
||||||
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>* corresponds with `contact:email~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
### phone
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the phone number of {title()}?*
|
||||||
|
|
||||||
### opening_hours
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
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.
|
This is rendered with `<a href='tel:{phone}'>{phone}</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_
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### spacer
|
- *<a href='tel:{contact:phone}'>{contact:phone}</a>* corresponds with `contact:phone~.+`
|
||||||
_This tagrendering has no question and is thus read-only_
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/bike_themed_object/bike_themed_object.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/bike_themed_object/bike_themed_object.json)
|
### opening_hours
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What are the opening hours of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/bike_themed_object/bike_themed_object.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_themed_object/bike_themed_object.json)
|
||||||
|
|
|
||||||
|
|
@ -1,120 +1,112 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# binocular
|
binocular
|
||||||
|
===========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/binocular/telescope.svg' height="100px">
|
||||||
|
|
||||||
Binoculars
|
Binoculars
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **0** and higher
|
- This layer is shown at zoomlevel **0** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [binocular-charge](#binocular-charge)
|
|
||||||
- [binocular-direction](#binocular-direction)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [create_copy](#create_copy)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [binoculars](https://mapcomplete.org/binoculars)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [ski](https://mapcomplete.org/ski)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a binocular** 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%3Dbinoculars' target='_blank'>binoculars</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbinoculars' target='_blank'>binoculars</a>**
|
- [binoculars](https://mapcomplete.osm.be/binoculars)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22amenity%22%3D%22binoculars%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 |
|
Basic tags for this layer
|
||||||
-----|-----|----- |
|
---------------------------
|
||||||
| <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) | [charge](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/direction#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/direction/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | |
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbinoculars' target='_blank'>binoculars</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22binoculars%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) |
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [binocular-charge](#binocular-charge) | How much does one have to pay to use these binoculars?<br/>_Using these binoculars costs {charge}_<br/>1 options | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [binocular-direction](#binocular-direction) | When looking through this binocular, in what direction does one look?<br/>_Looks towards {direction}°_ | | *[direction](https://wiki.osm.org/wiki/Key:direction)* ([direction](../SpecialInputElements.md#direction)) |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [create_copy](#create_copy) | _{create_copy()}_ | | _Multiple choice only_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [delete-button](#delete-button) | _{delete_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### binocular-charge
|
### binocular-charge
|
||||||
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.
|
|
||||||
|
|
||||||
- *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=
|
|
||||||
|
The question is *How much does one have to pay to use these binoculars?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
|
|
||||||
|
This is rendered with `Using these binoculars costs {charge}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Free to use* corresponds with `fee=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### binocular-direction
|
### binocular-direction
|
||||||
The question is `When looking through this binocular, in what direction does one look?`
|
|
||||||
|
|
||||||
*Looks towards {direction}°* is shown if `direction` is set.
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### create_copy
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{create_copy()}*
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/binocular/binocular.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/binocular/binocular.json)
|
|
||||||
|
The question is *When looking through this binocular, in what direction does one look?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction)
|
||||||
|
|
||||||
|
This is rendered with `Looks towards {direction}°`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/binocular/binocular.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/binocular/binocular.json)
|
||||||
|
|
|
||||||
|
|
@ -1,140 +1,157 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# birdhide
|
birdhide
|
||||||
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/layers/birdhide/birdhide.svg' height="100px">
|
||||||
|
|
||||||
A birdhide
|
A birdhide
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **14** and higher
|
- This layer is shown at zoomlevel **14** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [bird-hide-shelter-or-wall](#bird-hide-shelter-or-wall)
|
|
||||||
- [bird-hide-wheelchair](#bird-hide-wheelchair)
|
|
||||||
- [birdhide-operator](#birdhide-operator)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [nature](https://mapcomplete.org/nature)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a birdhide** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dbird_hide' target='_blank'>bird_hide</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a>
|
|
||||||
- **a bird blind** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dbird_hide' target='_blank'>bird_hide</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dno' target='_blank'>no</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dbird_hide' target='_blank'>bird_hide</a>**
|
- [nature](https://mapcomplete.osm.be/nature)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22bird_hide%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 |
|
Basic tags for this layer
|
||||||
-----|-----|----- |
|
---------------------------
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/building#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/building/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [building](https://wiki.openstreetmap.org/wiki/Key:building) | Multiple choice | [building](https://wiki.openstreetmap.org/wiki/Tag:building%3D) [building=yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes) [building=tower](https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower) |
|
|
||||||
| <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 | [wheelchair=designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [wheelchair=yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [wheelchair=limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [wheelchair=no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/operator#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/operator/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [operator=Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [operator=Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos) |
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dbird_hide' target='_blank'>bird_hide</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22leisure%22%3D%22bird_hide%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/building#values) [building](https://wiki.openstreetmap.org/wiki/Key:building) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:building%3D) [yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes) [tower](https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/wheelchair#values) [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)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos)
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [bird-hide-shelter-or-wall](#bird-hide-shelter-or-wall) | Is this a bird blind or a bird watching shelter?<br/>4 options | | _Multiple choice only_ |
|
|
||||||
| [bird-hide-wheelchair](#bird-hide-wheelchair) | Is this bird hide accessible to wheelchair users?<br/>4 options | | _Multiple choice only_ |
|
|
||||||
| [birdhide-operator](#birdhide-operator) | Who operates this birdhide?<br/>_Operated by {operator}_<br/>2 options | | *[operator](https://wiki.osm.org/wiki/Key:operator)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bird-hide-shelter-or-wall
|
### bird-hide-shelter-or-wall
|
||||||
The question is `Is this a bird blind or a bird watching shelter?`
|
|
||||||
|
|
||||||
- *Bird blind* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dno' target='_blank'>no</a> & building= & amenity=
|
|
||||||
- *Bird hide* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *Bird tower hide* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower' target='_blank'>tower</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:bird_hide' target='_blank'>bird_hide</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:bird_hide%3Dtower' target='_blank'>tower</a>
|
The question is *Is this a bird blind or a bird watching shelter?*
|
||||||
- *Bird hide shelter* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dshelter' target='_blank'>shelter</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:building' target='_blank'>building</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:shelter' target='_blank'>shelter</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:shelter%3Dyes' target='_blank'>yes</a>. _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Bird blind* corresponds with `shelter=no`
|
||||||
|
- *Bird hide* corresponds with `amenity=shelter&building=yes&shelter=yes`
|
||||||
|
- *Bird tower hide* corresponds with `building=tower&bird_hide=tower`
|
||||||
|
- *Bird hide shelter* corresponds with `amenity=shelter|building=yes|shelter=yes`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bird-hide-wheelchair
|
### bird-hide-wheelchair
|
||||||
The question is `Is this bird hide accessible to wheelchair users?`
|
|
||||||
|
|
||||||
- *There are special provisions for wheelchair users* 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 wheelchair can easily use this birdhide* 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%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This birdhide is reachable by wheelchair, but it is not easy* 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%3Dlimited' target='_blank'>limited</a>
|
|
||||||
- *Not accessible to wheelchair users* 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>
|
|
||||||
|
|
||||||
### birdhide-operator
|
|
||||||
The question is `Who operates this birdhide?`
|
|
||||||
|
|
||||||
*Operated by {operator}* is shown if `operator` is set.
|
The question is *Is this bird hide accessible to wheelchair users?*
|
||||||
|
|
||||||
- *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>
|
|
||||||
|
|
||||||
### 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
|
- *There are special provisions for wheelchair users* corresponds with `wheelchair=designated`
|
||||||
_This tagrendering has no question and is thus read-only_
|
- *A wheelchair can easily use this birdhide* corresponds with `wheelchair=yes`
|
||||||
|
- *This birdhide is reachable by wheelchair, but it is not easy* corresponds with `wheelchair=limited`
|
||||||
|
- *Not accessible to wheelchair users* corresponds with `wheelchair=no`
|
||||||
|
|
||||||
*{move_button()}*
|
|
||||||
|
|
||||||
### delete-button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{delete_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| wheelchair.0 | Wheelchair accessible | wheelchair=yes | wheelchair=designated | wheelchair=permissive |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| shelter.0 | Only covered birdhides | (shelter=yes | building~.+) & covered!=no |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/birdhide/birdhide.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/birdhide/birdhide.json)
|
### birdhide-operator
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Who operates this birdhide?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
|
|
||||||
|
This is rendered with `Operated by {operator}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Operated by Natuurpunt* corresponds with `operator=Natuurpunt`
|
||||||
|
- *Operated by the Agency for Nature and Forests* corresponds with `operator=Agentschap Natuur en Bos`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Filters
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
wheelchair.0 | Wheelchair accessible | wheelchair=yes\|wheelchair=designated|wheelchair=permissive
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
shelter.0 | Only covered birdhides | shelter=yes\|building~.+&covered!=no
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/birdhide/birdhide.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/birdhide/birdhide.json)
|
||||||
|
|
|
||||||
|
|
@ -1,164 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# brothel
|
|
||||||
|
|
||||||
An establishment specifically dedicated to prostitution.
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **6** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [reviews](#reviews)
|
|
||||||
- [name](#name)
|
|
||||||
- [opening_hours](#opening_hours)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [email](#email)
|
|
||||||
- [website](#website)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [openlovemap](https://mapcomplete.org/openlovemap)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a brothel** 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%3Dbrothel' target='_blank'>brothel</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbrothel' target='_blank'>brothel</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%22brothel%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/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/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) | |
|
|
||||||
| <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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
|
|
||||||
| [name](#name) | What is the name of this brothel?<br/>_This brothel is named <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### reviews
|
|
||||||
Shows the reviews module (including the possibility to leave a review)
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{create_review()}{list_reviews()}*
|
|
||||||
|
|
||||||
### name
|
|
||||||
The question is `What is the name of this brothel?`
|
|
||||||
|
|
||||||
*This brothel is named <b>{name}</b>* is shown if `name` is set.
|
|
||||||
|
|
||||||
### opening_hours
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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
|
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### email
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### website
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/brothel/brothel.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/brothel/brothel.json)
|
|
||||||
|
|
@ -1,187 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# building
|
|
||||||
|
|
||||||
All buildings
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **18** and higher
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [architecture](#architecture)
|
|
||||||
- [construction_date](#construction_date)
|
|
||||||
- [address_joined](#address_joined)
|
|
||||||
- [header](#header)
|
|
||||||
- [housenumber](#housenumber)
|
|
||||||
- [street](#street)
|
|
||||||
- [unit](#unit)
|
|
||||||
- [address-questions](#address-questions)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [architecture](https://mapcomplete.org/architecture)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **building~.+**
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22building%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/building:architecture#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/building%3Aarchitecture/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [building:architecture](https://wiki.openstreetmap.org/wiki/Key:building:architecture) | [string](../SpecialInputElements.md#string) | [building:architecture=islamic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dislamic) [building:architecture=mamluk](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmamluk) [building:architecture=romanesque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dromanesque) [building:architecture=gothic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgothic) [building:architecture=renaissance](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drenaissance) [building:architecture=mannerism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmannerism) [building:architecture=ottoman](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dottoman) [building:architecture=baroque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbaroque) [building:architecture=rococo](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drococo) [building:architecture=empire](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dempire) [building:architecture=moorish revival](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmoorish revival) [building:architecture=neoclassicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneoclassicism) [building:architecture=georgian](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgeorgian) [building:architecture=victorian](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dvictorian) [building:architecture=historicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dhistoricism) [building:architecture=neo-romanesque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-romanesque) [building:architecture=neo-byzantine](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-byzantine) [building:architecture=neo-gothic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-gothic) [building:architecture=neo-renaissance](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-renaissance) [building:architecture=neo-baroque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-baroque) [building:architecture=art_nouveau](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_nouveau) [building:architecture=eclectic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Declectic) [building:architecture=functionalism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dfunctionalism) [building:architecture=cubism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcubism) [building:architecture=new_objectivity](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dnew_objectivity) [building:architecture=art_deco](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_deco) [building:architecture=modern](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmodern) [building:architecture=amsterdam_school](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Damsterdam_school) [building:architecture=international_style](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dinternational_style) [building:architecture=constructivism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dconstructivism) [building:architecture=stalinist_neoclassicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dstalinist_neoclassicism) [building:architecture=brutalist](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbrutalist) [building:architecture=postmodern](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dpostmodern) [building:architecture=contemporary](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcontemporary) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/construction_date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/construction_date/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [construction_date](https://wiki.openstreetmap.org/wiki/Key:construction_date) | [date](../SpecialInputElements.md#date) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | Multiple choice | [addr:street](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:housenumber#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Ahousenumber/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:unit#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Aunit/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) | [string](../SpecialInputElements.md#string) | [addr:unit](https://wiki.openstreetmap.org/wiki/Tag:addr:unit%3D) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [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)) |
|
|
||||||
| [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit;address-questions,)}_ | 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_ |
|
|
||||||
| [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)) |
|
|
||||||
| [unit](#unit) <br/> _(Original in [address](./address.md#unit))_ | What is the unit number or letter?<br/>_The unit number is <b>{addr:unit}</b>_<br/>1 options | address, hidden | *[addr:unit](https://wiki.osm.org/wiki/Key:addr:unit)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [address-questions](#address-questions) <br/> _(Original in [address](./address.md#address-questions))_ | _{questions(address,,)}_ | address, hidden | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden;address)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### architecture
|
|
||||||
The question is `What is the architectural style of this building?`
|
|
||||||
|
|
||||||
*{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>
|
|
||||||
- *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>
|
|
||||||
- *Romanesque 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%3Dromanesque' target='_blank'>romanesque</a>
|
|
||||||
- *Gothic 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%3Dgothic' target='_blank'>gothic</a>
|
|
||||||
- *Renaissance 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%3Drenaissance' target='_blank'>renaissance</a>
|
|
||||||
- *Mannerism* 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%3Dmannerism' target='_blank'>mannerism</a>
|
|
||||||
- *Ottoman 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%3Dottoman' target='_blank'>ottoman</a>
|
|
||||||
- *Baroque 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%3Dbaroque' target='_blank'>baroque</a>
|
|
||||||
- *Rococo* 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%3Drococo' target='_blank'>rococo</a>
|
|
||||||
- *Empire style* 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%3Dempire' target='_blank'>empire</a>
|
|
||||||
- *Moorish Revival* 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%3Dmoorish revival' target='_blank'>moorish revival</a>
|
|
||||||
- *Neoclassical 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%3Dneoclassicism' target='_blank'>neoclassicism</a>
|
|
||||||
- *Georgian 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%3Dgeorgian' target='_blank'>georgian</a>
|
|
||||||
- *Victorian 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%3Dvictorian' target='_blank'>victorian</a>
|
|
||||||
- *Historicism* 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%3Dhistoricism' target='_blank'>historicism</a>
|
|
||||||
- *Romanesque Revival* 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%3Dneo-romanesque' target='_blank'>neo-romanesque</a>
|
|
||||||
- *Byzantine Revival* 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%3Dneo-byzantine' target='_blank'>neo-byzantine</a>
|
|
||||||
- *Gothic Revival* 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%3Dneo-gothic' target='_blank'>neo-gothic</a>
|
|
||||||
- *Renaissance Revival* 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%3Dneo-renaissance' target='_blank'>neo-renaissance</a>
|
|
||||||
- *Baroque Revival* 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%3Dneo-baroque' target='_blank'>neo-baroque</a>
|
|
||||||
- *Art Nouveau* 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%3Dart_nouveau' target='_blank'>art_nouveau</a>
|
|
||||||
- *Eclecticism in 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%3Declectic' target='_blank'>eclectic</a>
|
|
||||||
- *Functionalism* 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%3Dfunctionalism' target='_blank'>functionalism</a>
|
|
||||||
- *Cubism* 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%3Dcubism' target='_blank'>cubism</a>
|
|
||||||
- *New Objectivity* 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%3Dnew_objectivity' target='_blank'>new_objectivity</a>
|
|
||||||
- *Art Deco* 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%3Dart_deco' target='_blank'>art_deco</a>
|
|
||||||
- *Modern 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%3Dmodern' target='_blank'>modern</a>
|
|
||||||
- *Amsterdam School* 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%3Damsterdam_school' target='_blank'>amsterdam_school</a>
|
|
||||||
- *International Style* 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%3Dinternational_style' target='_blank'>international_style</a>
|
|
||||||
- *Constructivism* 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%3Dconstructivism' target='_blank'>constructivism</a>
|
|
||||||
- *Stalinist 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%3Dstalinist_neoclassicism' target='_blank'>stalinist_neoclassicism</a>
|
|
||||||
- *Brutalist 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%3Dbrutalist' target='_blank'>brutalist</a>
|
|
||||||
- *Postmodern 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%3Dpostmodern' target='_blank'>postmodern</a>
|
|
||||||
- *Contemporary 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%3Dcontemporary' target='_blank'>contemporary</a>
|
|
||||||
|
|
||||||
### construction_date
|
|
||||||
The question is `When was this built?`
|
|
||||||
|
|
||||||
*Built in <b>{construction_date}</b>* is shown if `construction_date` is set.
|
|
||||||
|
|
||||||
### address_joined
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{group(header,street;housenumber;unit;address-questions,)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `address`
|
|
||||||
|
|
||||||
### header
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{addr:street} <b>{addr:housenumber}</b> {addr:unit}*
|
|
||||||
|
|
||||||
- *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber=
|
|
||||||
|
|
||||||
This tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### housenumber
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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 tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### street
|
|
||||||
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 tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### unit
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *No unit number* is shown if with addr:unit=
|
|
||||||
|
|
||||||
This tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### address-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions(address,,)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden;address)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### move-button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{move_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/building/building.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/building/building.json)
|
|
||||||
|
|
@ -1,192 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# buildings_with_architecture
|
|
||||||
|
|
||||||
This layer is based on [building](../Layers/building.md)
|
|
||||||
|
|
||||||
All buildings
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **12** and higher
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [architecture](#architecture)
|
|
||||||
- [construction_date](#construction_date)
|
|
||||||
- [address_joined](#address_joined)
|
|
||||||
- [header](#header)
|
|
||||||
- [housenumber](#housenumber)
|
|
||||||
- [street](#street)
|
|
||||||
- [unit](#unit)
|
|
||||||
- [address-questions](#address-questions)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [lod](#lod)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [architecture](https://mapcomplete.org/architecture)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
|
||||||
|
|
||||||
0. building~.+
|
|
||||||
1. building:architecture~.+
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22building%22%5D%5B%22building%3Aarchitecture%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/building:architecture#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/building%3Aarchitecture/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [building:architecture](https://wiki.openstreetmap.org/wiki/Key:building:architecture) | [string](../SpecialInputElements.md#string) | [building:architecture=islamic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dislamic) [building:architecture=mamluk](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmamluk) [building:architecture=romanesque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dromanesque) [building:architecture=gothic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgothic) [building:architecture=renaissance](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drenaissance) [building:architecture=mannerism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmannerism) [building:architecture=ottoman](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dottoman) [building:architecture=baroque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbaroque) [building:architecture=rococo](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Drococo) [building:architecture=empire](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dempire) [building:architecture=moorish revival](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmoorish revival) [building:architecture=neoclassicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneoclassicism) [building:architecture=georgian](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dgeorgian) [building:architecture=victorian](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dvictorian) [building:architecture=historicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dhistoricism) [building:architecture=neo-romanesque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-romanesque) [building:architecture=neo-byzantine](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-byzantine) [building:architecture=neo-gothic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-gothic) [building:architecture=neo-renaissance](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-renaissance) [building:architecture=neo-baroque](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dneo-baroque) [building:architecture=art_nouveau](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_nouveau) [building:architecture=eclectic](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Declectic) [building:architecture=functionalism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dfunctionalism) [building:architecture=cubism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcubism) [building:architecture=new_objectivity](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dnew_objectivity) [building:architecture=art_deco](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dart_deco) [building:architecture=modern](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dmodern) [building:architecture=amsterdam_school](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Damsterdam_school) [building:architecture=international_style](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dinternational_style) [building:architecture=constructivism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dconstructivism) [building:architecture=stalinist_neoclassicism](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dstalinist_neoclassicism) [building:architecture=brutalist](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dbrutalist) [building:architecture=postmodern](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dpostmodern) [building:architecture=contemporary](https://wiki.openstreetmap.org/wiki/Tag:building:architecture%3Dcontemporary) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/construction_date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/construction_date/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [construction_date](https://wiki.openstreetmap.org/wiki/Key:construction_date) | [date](../SpecialInputElements.md#date) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | Multiple choice | [addr:street](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:housenumber#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Ahousenumber/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:street#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Astreet/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/addr:unit#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/addr%3Aunit/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) | [string](../SpecialInputElements.md#string) | [addr:unit](https://wiki.openstreetmap.org/wiki/Tag:addr:unit%3D) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [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)) |
|
|
||||||
| [address_joined](#address_joined) <br/> _(Original in [address](./address.md#address_joined))_ | _{group(header,street;housenumber;unit;address-questions,)}_ | 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_ |
|
|
||||||
| [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)) |
|
|
||||||
| [unit](#unit) <br/> _(Original in [address](./address.md#unit))_ | What is the unit number or letter?<br/>_The unit number is <b>{addr:unit}</b>_<br/>1 options | address, hidden | *[addr:unit](https://wiki.osm.org/wiki/Key:addr:unit)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [address-questions](#address-questions) <br/> _(Original in [address](./address.md#address-questions))_ | _{questions(address,,)}_ | address, hidden | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden;address)}_ | 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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### architecture
|
|
||||||
The question is `What is the architectural style of this building?`
|
|
||||||
|
|
||||||
*{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>
|
|
||||||
- *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>
|
|
||||||
- *Romanesque 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%3Dromanesque' target='_blank'>romanesque</a>
|
|
||||||
- *Gothic 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%3Dgothic' target='_blank'>gothic</a>
|
|
||||||
- *Renaissance 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%3Drenaissance' target='_blank'>renaissance</a>
|
|
||||||
- *Mannerism* 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%3Dmannerism' target='_blank'>mannerism</a>
|
|
||||||
- *Ottoman 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%3Dottoman' target='_blank'>ottoman</a>
|
|
||||||
- *Baroque 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%3Dbaroque' target='_blank'>baroque</a>
|
|
||||||
- *Rococo* 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%3Drococo' target='_blank'>rococo</a>
|
|
||||||
- *Empire style* 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%3Dempire' target='_blank'>empire</a>
|
|
||||||
- *Moorish Revival* 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%3Dmoorish revival' target='_blank'>moorish revival</a>
|
|
||||||
- *Neoclassical 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%3Dneoclassicism' target='_blank'>neoclassicism</a>
|
|
||||||
- *Georgian 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%3Dgeorgian' target='_blank'>georgian</a>
|
|
||||||
- *Victorian 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%3Dvictorian' target='_blank'>victorian</a>
|
|
||||||
- *Historicism* 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%3Dhistoricism' target='_blank'>historicism</a>
|
|
||||||
- *Romanesque Revival* 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%3Dneo-romanesque' target='_blank'>neo-romanesque</a>
|
|
||||||
- *Byzantine Revival* 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%3Dneo-byzantine' target='_blank'>neo-byzantine</a>
|
|
||||||
- *Gothic Revival* 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%3Dneo-gothic' target='_blank'>neo-gothic</a>
|
|
||||||
- *Renaissance Revival* 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%3Dneo-renaissance' target='_blank'>neo-renaissance</a>
|
|
||||||
- *Baroque Revival* 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%3Dneo-baroque' target='_blank'>neo-baroque</a>
|
|
||||||
- *Art Nouveau* 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%3Dart_nouveau' target='_blank'>art_nouveau</a>
|
|
||||||
- *Eclecticism in 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%3Declectic' target='_blank'>eclectic</a>
|
|
||||||
- *Functionalism* 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%3Dfunctionalism' target='_blank'>functionalism</a>
|
|
||||||
- *Cubism* 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%3Dcubism' target='_blank'>cubism</a>
|
|
||||||
- *New Objectivity* 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%3Dnew_objectivity' target='_blank'>new_objectivity</a>
|
|
||||||
- *Art Deco* 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%3Dart_deco' target='_blank'>art_deco</a>
|
|
||||||
- *Modern 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%3Dmodern' target='_blank'>modern</a>
|
|
||||||
- *Amsterdam School* 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%3Damsterdam_school' target='_blank'>amsterdam_school</a>
|
|
||||||
- *International Style* 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%3Dinternational_style' target='_blank'>international_style</a>
|
|
||||||
- *Constructivism* 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%3Dconstructivism' target='_blank'>constructivism</a>
|
|
||||||
- *Stalinist 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%3Dstalinist_neoclassicism' target='_blank'>stalinist_neoclassicism</a>
|
|
||||||
- *Brutalist 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%3Dbrutalist' target='_blank'>brutalist</a>
|
|
||||||
- *Postmodern 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%3Dpostmodern' target='_blank'>postmodern</a>
|
|
||||||
- *Contemporary 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%3Dcontemporary' target='_blank'>contemporary</a>
|
|
||||||
|
|
||||||
### construction_date
|
|
||||||
The question is `When was this built?`
|
|
||||||
|
|
||||||
*Built in <b>{construction_date}</b>* is shown if `construction_date` is set.
|
|
||||||
|
|
||||||
### address_joined
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{group(header,street;housenumber;unit;address-questions,)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `address`
|
|
||||||
|
|
||||||
### header
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{addr:street} <b>{addr:housenumber}</b> {addr:unit}*
|
|
||||||
|
|
||||||
- *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber=
|
|
||||||
|
|
||||||
This tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### housenumber
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *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 tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### street
|
|
||||||
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 tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### unit
|
|
||||||
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.
|
|
||||||
|
|
||||||
- *No unit number* is shown if with addr:unit=
|
|
||||||
|
|
||||||
This tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### address-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions(address,,)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `address` `hidden`
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden;address)}*
|
|
||||||
|
|
||||||
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`
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/themes/architecture/architecture.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/architecture/architecture.json)
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,758 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# campsite
|
|
||||||
|
|
||||||
Campsites
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **7** 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
|
|
||||||
|
|
||||||
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)
|
|
||||||
- [images](#images)
|
|
||||||
- [group_only](#group_only)
|
|
||||||
- [name](#name)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [email](#email)
|
|
||||||
- [website](#website)
|
|
||||||
- [capacity_persons](#capacity_persons)
|
|
||||||
- [fee](#fee)
|
|
||||||
- [charge_person_day](#charge_person_day)
|
|
||||||
- [charge_day](#charge_day)
|
|
||||||
- [caravansites-toilets](#caravansites-toilets)
|
|
||||||
- [toilets-group](#toilets-group)
|
|
||||||
- [grouptitle](#grouptitle)
|
|
||||||
- [has_toilets](#has_toilets)
|
|
||||||
- [images_toilet](#images_toilet)
|
|
||||||
- [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)
|
|
||||||
- [handwashing-soap](#handwashing-soap)
|
|
||||||
- [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)
|
|
||||||
- [toilets_wheelchair_has_grab_rail_lr](#toilets_wheelchair_has_grab_rail_lr)
|
|
||||||
- [toilets_wheelchair_has_grab_rail_behind](#toilets_wheelchair_has_grab_rail_behind)
|
|
||||||
- [toilets_wheelchair_is_foldable_left](#toilets_wheelchair_is_foldable_left)
|
|
||||||
- [toilets_wheelchair_is_foldable_right](#toilets_wheelchair_is_foldable_right)
|
|
||||||
- [wheelchair-door-width](#wheelchair-door-width)
|
|
||||||
- [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)
|
|
||||||
- [questions](#questions)
|
|
||||||
- [mastodon](#mastodon)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
- [scouting](https://mapcomplete.org/scouting)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **campsite** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dcamp_site' target='_blank'>camp_site</a>
|
|
||||||
- **campsite for groups** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dcamp_site' target='_blank'>camp_site</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:group_only' target='_blank'>group_only</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:group_only%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dcamp_site' target='_blank'>camp_site</a>**
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%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/group_only#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/group_only/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [group_only](https://wiki.openstreetmap.org/wiki/Key:group_only) | Multiple choice | [group_only=yes](https://wiki.openstreetmap.org/wiki/Tag:group_only%3Dyes) [group_only=no](https://wiki.openstreetmap.org/wiki/Tag:group_only%3Dno) |
|
|
||||||
| <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/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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/capacity:persons#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/capacity%3Apersons/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [capacity:persons](https://wiki.openstreetmap.org/wiki/Key:capacity:persons) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <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 | [fee=no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [fee=yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) |
|
|
||||||
| <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 | [toilets=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [toilets=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 | [toilets=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 | [toilets=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [toilets=no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) [toilets=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) | [toilets:level=0](https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D0) [toilets:level=1](https://wiki.openstreetmap.org/wiki/Tag:toilets:level%3D1) [toilets:level=-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) | [toilets:access=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dyes) [toilets:access=customers](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dcustomers) [toilets:access=no](https://wiki.openstreetmap.org/wiki/Tag:toilets:access%3Dno) [toilets:access=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 | [toilets:fee=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:fee%3Dyes) [toilets:fee=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 | [toilets:gender_segregated=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:gender_segregated%3Dyes) [toilets:gender_segregated=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 | [toilets:supervised=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dyes) [toilets:supervised=interval](https://wiki.openstreetmap.org/wiki/Tag:toilets:supervised%3Dinterval) [toilets:supervised=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 | [toilets:wheelchair=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dyes) [toilets:wheelchair=no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair%3Dno) [toilets:wheelchair=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 | [toilets:position=seated](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated) [toilets:position=urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal) [toilets:position=squat](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat) [toilets:position=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 | [toilets:disposal=flush](https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dflush) [toilets:disposal=pitlatrine](https://wiki.openstreetmap.org/wiki/Tag:toilets:disposal%3Dpitlatrine) [toilets:disposal=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 | [toilets:menstrual_products=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dyes) [toilets:menstrual_products=limited](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products%3Dlimited) [toilets:menstrual_products=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) | [toilets:menstrual_products:location=female_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dfemale_toilet) [toilets:menstrual_products:location=male_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dmale_toilet) [toilets:menstrual_products:location=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 | [changing_table=yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes) [changing_table=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) | [changing_table:location=female_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet) [changing_table:location=male_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet) [changing_table:location=wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet) [changing_table:location=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 | [toilets:paper_supplied=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes) [toilets:paper_supplied=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 | [toilets:handwashing=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [toilets:handwashing=no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/handwashing:soap#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/handwashing%3Asoap/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [handwashing:soap](https://wiki.openstreetmap.org/wiki/Key:handwashing:soap) | Multiple choice | [handwashing:soap=yes](https://wiki.openstreetmap.org/wiki/Tag:handwashing:soap%3Dyes) [handwashing:soap=no](https://wiki.openstreetmap.org/wiki/Tag:handwashing:soap%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 | [toilets:hands_drying=electric_hand_dryer](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Delectric_hand_dryer) [toilets:hands_drying=paper_towel](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dpaper_towel) [toilets:hands_drying=towel_cabinet](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel_cabinet) [toilets:hands_drying=towel](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel) [toilets:hands_drying=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 | [wheelchair=designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [wheelchair=no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:wheelchair:grab_rail:left#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Awheelchair%3Agrab_rail%3Aleft/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:wheelchair:grab_rail:left](https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:left) | Multiple choice | [toilets:wheelchair:grab_rail:left=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:left%3Dyes) [toilets:wheelchair:grab_rail:left=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:left%3Dyes) [toilets:wheelchair:grab_rail:left=no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:left%3Dno) [toilets:wheelchair:grab_rail:left=no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:left%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:wheelchair:grab_rail:behind#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Awheelchair%3Agrab_rail%3Abehind/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:wheelchair:grab_rail:behind](https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:behind) | Multiple choice | [toilets:wheelchair:grab_rail:behind=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:behind%3Dyes) [toilets:wheelchair:grab_rail:behind=no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:behind%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:wheelchair:grab_rail:foldable:left#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Awheelchair%3Agrab_rail%3Afoldable%3Aleft/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:wheelchair:grab_rail:foldable:left](https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:foldable:left) | Multiple choice | [toilets:wheelchair:grab_rail:foldable:left=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:foldable:left%3Dyes) [toilets:wheelchair:grab_rail:foldable:left=no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:foldable:left%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:wheelchair:grab_rail:foldable:right#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Awheelchair%3Agrab_rail%3Afoldable%3Aright/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:wheelchair:grab_rail:foldable:right](https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:foldable:right) | Multiple choice | [toilets:wheelchair:grab_rail:foldable:right=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:foldable:right%3Dyes) [toilets:wheelchair:grab_rail:foldable:right=no](https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:foldable:right%3Dno) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/door:width#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/door%3Awidth/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [door:width](https://wiki.openstreetmap.org/wiki/Key:door:width) | [pfloat](../SpecialInputElements.md#pfloat) | |
|
|
||||||
| <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 | [changing_table:adult=yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult%3Dyes) [changing_table:adult=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) | [changing_table:adult:height=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 | [changing_table:adult:height:mechanism=manual](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:height:mechanism%3Dmanual) [changing_table:adult:height:mechanism=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 | [changing_table:adult:support=wall_mounted](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dwall_mounted) [changing_table:adult:support=legs](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dlegs) [changing_table:adult:support=wheels](https://wiki.openstreetmap.org/wiki/Tag:changing_table:adult:support%3Dwheels) |
|
|
||||||
| <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
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [group_only](#group_only) | Is this campsite exclusively for groups?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [name](#name) | What is the name of this campsite?<br/>_The name of this campsite is {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [capacity_persons](#capacity_persons) | How many people can stay here?<br/>_{capacity:persons} people can stay here_ | | *[capacity:persons](https://wiki.osm.org/wiki/Key:capacity:persons)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [fee](#fee) | Is there a fee?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [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)) |
|
|
||||||
| [caravansites-toilets](#caravansites-toilets) <br/> _(Original in [caravansites](./caravansites.md#caravansites-toilets))_ | Does this place have toilets?<br/>2 options | | _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_ |
|
|
||||||
| [images_toilet](#images_toilet) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#images_toilet))_ | _{image_carousel(toilets:panoramax;toilets:mapillary;toilets:images)}{image_upload(toilets:panoramax,Add a picture of the toilets,)}_ | relevant_questions, 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_ |
|
|
||||||
| [handwashing-soap](#handwashing-soap) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#handwashing-soap))_ | Is soap for handwashing provided?<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, hidden, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
|
|
||||||
| [toilets_wheelchair_has_grab_rail_lr](#toilets_wheelchair_has_grab_rail_lr) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_wheelchair_has_grab_rail_lr))_ | Is there a grab rail?<br/>4 options | wheelchair, relevant-questions, prefixed, amenity-prefixed, hidden, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
|
|
||||||
| [toilets_wheelchair_has_grab_rail_behind](#toilets_wheelchair_has_grab_rail_behind) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_wheelchair_has_grab_rail_behind))_ | Does the toilet have a grab rail behind the toilet?<br/>2 options | wheelchair, relevant-questions, prefixed, amenity-prefixed, hidden, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
|
|
||||||
| [toilets_wheelchair_is_foldable_left](#toilets_wheelchair_is_foldable_left) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_wheelchair_is_foldable_left))_ | Is the left grab rail foldable?<br/>2 options | generic_questions, wheelchair, relevant-questions, prefixed, amenity-prefixed, hidden, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
|
|
||||||
| [toilets_wheelchair_is_foldable_right](#toilets_wheelchair_is_foldable_right) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets_wheelchair_is_foldable_right))_ | Is the right grab rail foldable?<br/>2 options | generic_questions, wheelchair, relevant-questions, prefixed, amenity-prefixed, hidden, relevant_questions, toilet-questions, hidden, all | _Multiple choice only_ |
|
|
||||||
| [wheelchair-door-width](#wheelchair-door-width) <br/> _(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#wheelchair-door-width))_ | What is the width of the door to the wheelchair accessible toilet?<br/>_The door to the wheelchair-accessible toilet is {canonical(door:width)} wide_ | relevant-questions, wheelchair, hidden, prefixed, amenity-prefixed, relevant_questions, toilet-questions, hidden, all | *[door:width](https://wiki.osm.org/wiki/Key:door:width)* ([pfloat](../SpecialInputElements.md#pfloat)) |
|
|
||||||
| [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,wheelchair;adult-changing-table,)}_ | toilet-questions, all, hidden | _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)) |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### group_only
|
|
||||||
The question is `Is this campsite exclusively for groups?`
|
|
||||||
|
|
||||||
- *This campsite is exclusively for groups* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:group_only' target='_blank'>group_only</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:group_only%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This campsite is not exclusively for groups* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:group_only' target='_blank'>group_only</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:group_only%3Dno' target='_blank'>no</a>
|
|
||||||
|
|
||||||
### name
|
|
||||||
The question is `What is the name of this campsite?`
|
|
||||||
|
|
||||||
*The name of this campsite is {name}* is shown if `name` is set.
|
|
||||||
|
|
||||||
### phone
|
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### email
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### website
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### capacity_persons
|
|
||||||
The question is `How many people can stay here?`
|
|
||||||
|
|
||||||
*{capacity:persons} people can stay here* is shown if `capacity:persons` is set.
|
|
||||||
|
|
||||||
### fee
|
|
||||||
The question is `Is there a fee?`
|
|
||||||
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/cash.svg'> *The campsite 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>
|
|
||||||
- <img width='38px' height='38px' src='https://dev.mapcomplete.org/./assets/layers/questions/cash.svg'> *There is 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>
|
|
||||||
|
|
||||||
### charge_person_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_day
|
|
||||||
The question is `What is the charge per day?`
|
|
||||||
|
|
||||||
*Charge per day: {charge}* is shown if `charge` is set.
|
|
||||||
|
|
||||||
### caravansites-toilets
|
|
||||||
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 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-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`
|
|
||||||
|
|
||||||
### images_toilet
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel(toilets:panoramax;toilets:mapillary;toilets:images)}{image_upload(toilets:panoramax,Add a picture of the toilets,)}*
|
|
||||||
|
|
||||||
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` `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`
|
|
||||||
|
|
||||||
### handwashing-soap
|
|
||||||
The question is `Is soap for handwashing provided?`
|
|
||||||
|
|
||||||
- *Soap for handwashing is provided* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:handwashing:soap' target='_blank'>handwashing:soap</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:handwashing:soap%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *No soap for handwashing* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:handwashing:soap' target='_blank'>handwashing:soap</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:handwashing:soap%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`
|
|
||||||
|
|
||||||
### 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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtoilets' target='_blank'>toilets</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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtoilets' target='_blank'>toilets</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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtoilets' target='_blank'>toilets</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` `hidden` `relevant_questions` `toilet-questions` `hidden` `all`
|
|
||||||
|
|
||||||
### toilets_wheelchair_has_grab_rail_lr
|
|
||||||
The question is `Is there a grab rail?`
|
|
||||||
|
|
||||||
- *Grab rails on <b>both</b> sides* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:left' target='_blank'>toilets:wheelchair:grab_rail:left</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:left%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:right' target='_blank'>toilets:wheelchair:grab_rail:right</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:right%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *Only grab rails on the <b>left</b> side* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:left' target='_blank'>toilets:wheelchair:grab_rail:left</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:left%3Dyes' target='_blank'>yes</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:right' target='_blank'>toilets:wheelchair:grab_rail:right</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:right%3Dno' target='_blank'>no</a>
|
|
||||||
- *Grab rails on the <b>right</b> side* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:left' target='_blank'>toilets:wheelchair:grab_rail:left</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:left%3Dno' target='_blank'>no</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:right' target='_blank'>toilets:wheelchair:grab_rail:right</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:right%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *<b>No grab rails</b> at all* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:left' target='_blank'>toilets:wheelchair:grab_rail:left</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:left%3Dno' target='_blank'>no</a> & <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:right' target='_blank'>toilets:wheelchair:grab_rail:right</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:right%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: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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtoilets' target='_blank'>toilets</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` `relevant-questions` `prefixed` `amenity-prefixed` `hidden` `relevant_questions` `toilet-questions` `hidden` `all`
|
|
||||||
|
|
||||||
### toilets_wheelchair_has_grab_rail_behind
|
|
||||||
The question is `Does the toilet have a grab rail behind the toilet?`
|
|
||||||
|
|
||||||
- *Has a grab rail <b>behind</b> the toilet* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:behind' target='_blank'>toilets:wheelchair:grab_rail:behind</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:behind%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *No grab rail behind the toilet* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:behind' target='_blank'>toilets:wheelchair:grab_rail:behind</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:behind%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: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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtoilets' target='_blank'>toilets</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` `relevant-questions` `prefixed` `amenity-prefixed` `hidden` `relevant_questions` `toilet-questions` `hidden` `all`
|
|
||||||
|
|
||||||
### toilets_wheelchair_is_foldable_left
|
|
||||||
The question is `Is the left grab rail foldable?`
|
|
||||||
|
|
||||||
- *The left grab rail is <b>foldable</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:foldable:left' target='_blank'>toilets:wheelchair:grab_rail:foldable:left</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:foldable:left%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *The left grab rail is not foldable* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:foldable:left' target='_blank'>toilets:wheelchair:grab_rail:foldable:left</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:foldable:left%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:wheelchair:grab_rail:left' target='_blank'>toilets:wheelchair:grab_rail:left</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:left%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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtoilets' target='_blank'>toilets</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 `generic_questions` `wheelchair` `relevant-questions` `prefixed` `amenity-prefixed` `hidden` `relevant_questions` `toilet-questions` `hidden` `all`
|
|
||||||
|
|
||||||
### toilets_wheelchair_is_foldable_right
|
|
||||||
The question is `Is the right grab rail foldable?`
|
|
||||||
|
|
||||||
- *The right grab rail is <b>foldable</b>* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:foldable:right' target='_blank'>toilets:wheelchair:grab_rail:foldable:right</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:foldable:right%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *The right grab rail is not foldable* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:toilets:wheelchair:grab_rail:foldable:right' target='_blank'>toilets:wheelchair:grab_rail:foldable:right</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:foldable:right%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:wheelchair:grab_rail:right' target='_blank'>toilets:wheelchair:grab_rail:right</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:wheelchair:grab_rail:right%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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtoilets' target='_blank'>toilets</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 `generic_questions` `wheelchair` `relevant-questions` `prefixed` `amenity-prefixed` `hidden` `relevant_questions` `toilet-questions` `hidden` `all`
|
|
||||||
|
|
||||||
### wheelchair-door-width
|
|
||||||
The question is `What is the width of the door to the wheelchair accessible toilet?`
|
|
||||||
|
|
||||||
*The door to the wheelchair-accessible toilet is {canonical(door:width)} wide* is shown if `door:width` is set.
|
|
||||||
|
|
||||||
The allowed input is of type pfloat and is in range 0.4 until 4 (both inclusive). A warning will appear if the value is outside of 0.6 and 2.
|
|
||||||
|
|
||||||
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%3Ddesignated' target='_blank'>designated</a> | (<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtoilet' target='_blank'>toilet</a> & wheelchair~^(yes|designated)$))
|
|
||||||
This tagrendering has labels `relevant-questions` `wheelchair` `hidden` `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,wheelchair;adult-changing-table,)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `toilet-questions` `all` `hidden`
|
|
||||||
|
|
||||||
### questions
|
|
||||||
Show the questions block at this location
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions()}*
|
|
||||||
|
|
||||||
### mastodon
|
|
||||||
Shows and asks for the mastodon handle
|
|
||||||
The question is `What is the Mastodon-handle of {title()}?`
|
|
||||||
|
|
||||||
*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set.
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| fee_filter.0 | *Fee* (default) | |
|
|
||||||
| fee_filter.1 | free of charge | fee=no |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| capacity_persons_filter.0 | *All capacities* (default) | |
|
|
||||||
| capacity_persons_filter.1 | Capacity between 1 and 20 persons | capacity:persons>=1 & capacity:persons<=20 |
|
|
||||||
| capacity_persons_filter.2 | Capacity between 21 and 50 persons | capacity:persons>=21 & capacity:persons<=50 |
|
|
||||||
| capacity_persons_filter.3 | Capacity between 51 and 100 persons | capacity:persons>=51 & capacity:persons<=100 |
|
|
||||||
| capacity_persons_filter.4 | Capacity between 101 and 200 persons | capacity:persons>=101 & capacity:persons<=200 |
|
|
||||||
| capacity_persons_filter.5 | Capacity between 201 and 500 persons | capacity:persons>=201 & capacity:persons<=500 |
|
|
||||||
| capacity_persons_filter.6 | Capacity over 500 persons | capacity:persons>=501 |
|
|
||||||
| capacity_persons_filter.7 | ? | capacity:persons= |
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| toilets_filter.0 | *Toilets* (default) | |
|
|
||||||
| toilets_filter.1 | Toilets are available. | toilets=yes |
|
|
||||||
| toilets_filter.2 | There are no toilets. | toilets=no |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/campsite/campsite.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/campsite/campsite.json)
|
|
||||||
|
|
@ -1,151 +1,176 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# car_rental
|
car_rental
|
||||||
|
============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/circle:white;./assets/layers/car_rental/car_rental.svg' height="100px">
|
||||||
|
|
||||||
Places where you can rent a car
|
Places where you can rent a car
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **12** and higher
|
- This layer is shown at zoomlevel **12** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [name](#name)
|
|
||||||
- [website](#website)
|
|
||||||
- [email](#email)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [opening_hours](#opening_hours)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [stations](https://mapcomplete.org/stations)
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a car rental** 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%3Dcar_rental' target='_blank'>car_rental</a>
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcar_rental' target='_blank'>car_rental</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%22car_rental%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcar_rental' target='_blank'>car_rental</a>
|
||||||
|
|
||||||
## Supported attributes
|
|
||||||
|
|
||||||
**Warning:**: this quick overview is incomplete
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22amenity%22%3D%22car_rental%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <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/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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/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) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [name](#name) | What is the name of this car rental?<br/>_This car rental is called {name}_<br/>1 options | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### name
|
### name
|
||||||
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 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>
|
|
||||||
|
The question is *What is the name of this car rental?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
|
|
||||||
|
This is rendered with `This car rental is called {name}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This car rental has no name* corresponds with `noname=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### website
|
### website
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the website of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
|
|
||||||
|
This is rendered with `<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
### email
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the email address of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
|
|
||||||
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>* corresponds with `contact:email~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
### phone
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the phone number of {title()}?*
|
||||||
|
|
||||||
### opening_hours
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
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.
|
This is rendered with `<a href='tel:{phone}'>{phone}</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_
|
|
||||||
|
|
||||||
### 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
|
- *<a href='tel:{contact:phone}'>{contact:phone}</a>* corresponds with `contact:phone~.+`
|
||||||
_This tagrendering has no question and is thus read-only_
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
*{move_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/car_rental/car_rental.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/car_rental/car_rental.json)
|
### opening_hours
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What are the opening hours of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#### Filters
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
id | question | osmTags
|
||||||
|
---- | ---------- | ---------
|
||||||
|
open_now.0 | Open now | _isOpen=yes
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/car_rental/car_rental.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/car_rental/car_rental.json)
|
||||||
|
|
|
||||||
|
|
@ -1,197 +1,339 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# caravansites
|
caravansites
|
||||||
|
==============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/circle:white;./assets/themes/campersite/caravan.svg' height="100px">
|
||||||
|
|
||||||
camper sites
|
camper sites
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **7** 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [caravansites-name](#caravansites-name)
|
|
||||||
- [caravansites-fee](#caravansites-fee)
|
|
||||||
- [caravansites-charge](#caravansites-charge)
|
|
||||||
- [caravansites-sanitary-dump](#caravansites-sanitary-dump)
|
|
||||||
- [caravansites-capacity](#caravansites-capacity)
|
|
||||||
- [caravansites-internet](#caravansites-internet)
|
|
||||||
- [caravansites-internet-fee](#caravansites-internet-fee)
|
|
||||||
- [caravansites-toilets](#caravansites-toilets)
|
|
||||||
- [caravansites-website](#caravansites-website)
|
|
||||||
- [caravansites-long-term](#caravansites-long-term)
|
|
||||||
- [caravansites-description](#caravansites-description)
|
|
||||||
- [questions](#questions)
|
|
||||||
- [reviews](#reviews)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [campersite](https://mapcomplete.org/campersite)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
- This layer is shown at zoomlevel **10** and higher
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a camper site** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dcaravan_site' target='_blank'>caravan_site</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
#### Themes using this layer
|
||||||
|
|
||||||
0. <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dcaravan_site' target='_blank'>caravan_site</a>
|
|
||||||
1. permanent_camping!~^(only)$
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22caravan_site%22%5D%5B%22permanent_camping%22!~%22%5E%28only%29%24%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 |
|
- [campersite](https://mapcomplete.osm.be/campersite)
|
||||||
-----|-----|----- |
|
|
||||||
| <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/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 | [fee=yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [fee=no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) |
|
|
||||||
| <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/sanitary_dump_station#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/sanitary_dump_station/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [sanitary_dump_station](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station) | Multiple choice | [sanitary_dump_station=yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes) [sanitary_dump_station=no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno) |
|
Basic tags for this layer
|
||||||
| <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) | [pnat](../SpecialInputElements.md#pnat) | |
|
---------------------------
|
||||||
| <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 | [internet_access=yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes) [internet_access=no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) |
|
|
||||||
| <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 | [internet_access:fee=yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [internet_access:fee=no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%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 | [toilets=yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [toilets=no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) |
|
|
||||||
| <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) | |
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/permanent_camping#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/permanent_camping/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [permanent_camping](https://wiki.openstreetmap.org/wiki/Key:permanent_camping) | Multiple choice | [permanent_camping=yes](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes) [permanent_camping=no](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno) [permanent_camping=only](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/description#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/description/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | |
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:tourism' target='_blank'>tourism</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:tourism%3Dcaravan_site' target='_blank'>caravan_site</a>
|
||||||
|
- permanent_camping!~^(only)$
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22tourism%22%3D%22caravan_site%22%5D%5B%22permanent_camping%22!~%22%5E(only)%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/sanitary_dump_station#values) [sanitary_dump_station](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [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)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/toilets#values) [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)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/permanent_camping#values) [permanent_camping](https://wiki.openstreetmap.org/wiki/Key:permanent_camping) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/power_supply#values) [power_supply](https://wiki.openstreetmap.org/wiki/Key:power_supply) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:power_supply%3Dno)
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [caravansites-name](#caravansites-name) | What is this place called?<br/>_This place is called {name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [caravansites-fee](#caravansites-fee) | Does this place charge a fee?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [caravansites-charge](#caravansites-charge) | How much does this place charge?<br/>_This place charges {charge}_ | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [caravansites-sanitary-dump](#caravansites-sanitary-dump) | Does this place have a sanitary dump station?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [caravansites-capacity](#caravansites-capacity) | How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)<br/>_{capacity} campers can use this place at the same time_ | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [caravansites-internet](#caravansites-internet) | Does this place provide internet access?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [caravansites-internet-fee](#caravansites-internet-fee) | Do you have to pay for the internet access?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [caravansites-toilets](#caravansites-toilets) | Does this place have toilets?<br/>2 options | | _Multiple choice only_ |
|
|
||||||
| [caravansites-website](#caravansites-website) | Does this place have a website?<br/>_Official website: <a href='{website}'>{website}</a>_ | | *[website](https://wiki.osm.org/wiki/Key:website)* ([url](../SpecialInputElements.md#url)) |
|
|
||||||
| [caravansites-long-term](#caravansites-long-term) | Does this place offer spots for long term rental?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [caravansites-description](#caravansites-description) | 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)<br/>_More details about this place: {description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) |
|
|
||||||
| [questions](#questions) <br/> _(Original in [questions](./BuiltinQuestions.md#questions))_ | _{questions()}_ | | _Multiple choice only_ |
|
|
||||||
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-name
|
### caravansites-name
|
||||||
The question is `What is this place called?`
|
|
||||||
|
|
||||||
*This place is called {name}* is shown if `name` is set.
|
|
||||||
|
|
||||||
|
The question is *What is this place called?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
|
|
||||||
|
This is rendered with `This place is called {name}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-fee
|
### caravansites-fee
|
||||||
The question is `Does this place charge a fee?`
|
|
||||||
|
|
||||||
- *You need to pay for 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%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *Can be used 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>
|
|
||||||
|
The question is *Does this place charge a fee?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You need to pay for use* corresponds with `fee=yes`
|
||||||
|
- *Can be used for free* corresponds with `fee=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-charge
|
### caravansites-charge
|
||||||
The question is `How much does this place charge?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
|
The question is *How much does this place charge?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
|
|
||||||
|
This is rendered with `This place charges {charge}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `fee=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-sanitary-dump
|
### caravansites-sanitary-dump
|
||||||
The question is `Does this place have a sanitary dump station?`
|
|
||||||
|
|
||||||
- *This place has a sanitary dump station* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *This place does not have a sanitary dump station* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station' target='_blank'>sanitary_dump_station</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno' target='_blank'>no</a>
|
|
||||||
|
The question is *Does this place have a sanitary dump station?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This place has a sanitary dump station* corresponds with `sanitary_dump_station=yes`
|
||||||
|
- *This place does not have a sanitary dump station* corresponds with `sanitary_dump_station=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### 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)`
|
|
||||||
|
|
||||||
*{capacity} campers can use this place at the same time* is shown if `capacity` is set.
|
|
||||||
|
|
||||||
|
The question is *How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)*
|
||||||
|
|
||||||
|
This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity)
|
||||||
|
|
||||||
|
This is rendered with `{capacity} campers can use this place at the same time`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-internet
|
### caravansites-internet
|
||||||
The question is `Does this place provide internet access?`
|
|
||||||
|
|
||||||
- *There is internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *There is internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwifi' target='_blank'>wifi</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dwlan' target='_blank'>wlan</a>. _This option cannot be chosen as answer_
|
|
||||||
- *There is no internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno' target='_blank'>no</a>
|
The question is *Does this place provide internet access?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *There is internet access* corresponds with `internet_access=yes`
|
||||||
|
- *There is internet access* corresponds with `internet_access=wifi|internet_access=wlan`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
- *There is no internet access* corresponds with `internet_access=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-internet-fee
|
### caravansites-internet-fee
|
||||||
The question is `Do you have to pay for the internet access?`
|
|
||||||
|
|
||||||
- *You need to pay extra for internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *You do not need to pay extra for internet access* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:internet_access:fee' target='_blank'>internet_access:fee</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access: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:internet_access' target='_blank'>internet_access</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes' target='_blank'>yes</a>
|
|
||||||
|
The question is *Do you have to pay for the internet access?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *You need to pay extra for internet access* corresponds with `internet_access:fee=yes`
|
||||||
|
- *You do not need to pay extra for internet access* corresponds with `internet_access:fee=no`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `internet_access=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-toilets
|
### caravansites-toilets
|
||||||
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 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>
|
|
||||||
|
The question is *Does this place have toilets?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This place has toilets* corresponds with `toilets=yes`
|
||||||
|
- *This place does not have toilets* corresponds with `toilets=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-website
|
### caravansites-website
|
||||||
The question is `Does this place have a website?`
|
|
||||||
|
|
||||||
*Official website: <a href='{website}'>{website}</a>* is shown if `website` is set.
|
|
||||||
|
|
||||||
|
The question is *Does this place have a website?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
|
|
||||||
|
This is rendered with `Official website: <a href='{website}'>{website}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### caravansites-long-term
|
### caravansites-long-term
|
||||||
The question is `Does this place offer spots for long term rental?`
|
|
||||||
|
|
||||||
- *There are some spots for long term rental, but you can also stay on a daily basis* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *There are no permanent guests here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno' target='_blank'>no</a>
|
|
||||||
- *It is only possible to stay here if you have a long term contract (this place disappears from this map if you choose this)* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:permanent_camping' target='_blank'>permanent_camping</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly' target='_blank'>only</a>
|
The question is *Does this place offer spots for long term rental?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *There are some spots for long term rental, but you can also stay on a daily basis* corresponds with `permanent_camping=yes`
|
||||||
|
- *There are no permanent guests here* corresponds with `permanent_camping=no`
|
||||||
|
- *It is only possible to stay here if you have a long term contract (this place disappears from this map if you choose this)* corresponds with `permanent_camping=only`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### 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)`
|
|
||||||
|
|
||||||
*More details about this place: {description}* is shown if `description` is set.
|
|
||||||
|
|
||||||
|
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)*
|
||||||
|
|
||||||
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
|
|
||||||
|
This is rendered with `More details about this place: {description}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### questions
|
### questions
|
||||||
Show the questions block at this location
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions()}*
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{create_review()}{list_reviews()}*
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
### move-button
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{move_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/caravansites/caravansites.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/caravansites/caravansites.json)
|
|
||||||
|
|
||||||
|
|
||||||
|
### operator
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Who operates this place?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator)
|
||||||
|
|
||||||
|
This is rendered with `This place is operated by {operator}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### power_supply
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Does this place have a power supply?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This place has a power supply* corresponds with `power_supply=yes`
|
||||||
|
- *This place does not have power supply* corresponds with `power_supply=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### questions
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Show the images block at this location
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### minimap
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Shows a small map with the feature. Added by default to every popup
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/themes/campersite/campersite.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/themes/campersite/campersite.json)
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,159 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# childcare
|
|
||||||
|
|
||||||
Shows kindergartens and preschools. Both are grouped in one layer, as they are regularly confused with each other
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **12** 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)
|
|
||||||
- [name](#name)
|
|
||||||
- [website](#website)
|
|
||||||
- [email](#email)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [opening_hours](#opening_hours)
|
|
||||||
- [capacity](#capacity)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [delete-button](#delete-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [education](https://mapcomplete.org/education)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a childcare** 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%3Dchildcare' target='_blank'>childcare</a>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dchildcare' target='_blank'>childcare</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%22childcare%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/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/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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/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) | |
|
|
||||||
| <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) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [name](#name) | What is the name of this facility?<br/>_This facility is named <b>{name}</b>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [opening_hours](#opening_hours) <br/> _(Original in [questions](./BuiltinQuestions.md#opening_hours))_ | When is this childcare opened?<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)) |
|
|
||||||
| [capacity](#capacity) | How much kids (at most) can be enrolled here?<br/>_This facility has room for {capacity} kids_ | | *[capacity](https://wiki.osm.org/wiki/Key:capacity)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### name
|
|
||||||
The question is `What is the name of this facility?`
|
|
||||||
|
|
||||||
*This facility is named <b>{name}</b>* is shown if `name` is set.
|
|
||||||
|
|
||||||
### website
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### email
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### phone
|
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### opening_hours
|
|
||||||
The question is `When is this childcare opened?`
|
|
||||||
|
|
||||||
*<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_
|
|
||||||
|
|
||||||
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%3Dchildcare' target='_blank'>childcare</a>
|
|
||||||
|
|
||||||
### capacity
|
|
||||||
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.
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/childcare/childcare.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/childcare/childcare.json)
|
|
||||||
|
|
@ -1,145 +0,0 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
|
||||||
|
|
||||||
# cinema
|
|
||||||
|
|
||||||
A place showing movies (films), generally open to the public for a fee. Commonly referred to as a movie theater in the US.
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **10** and higher
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [reviews](#reviews)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [email](#email)
|
|
||||||
- [website](#website)
|
|
||||||
- [wikipedia](#wikipedia)
|
|
||||||
- [cinema_type](#cinema_type)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [openlovemap](https://mapcomplete.org/openlovemap)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcinema' target='_blank'>cinema</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%22cinema%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/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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/wikidata#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/wikidata/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/cinema#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/cinema/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [cinema](https://wiki.openstreetmap.org/wiki/Key:cinema) | Multiple choice | [cinema](https://wiki.openstreetmap.org/wiki/Tag:cinema%3D) [cinema=erotic](https://wiki.openstreetmap.org/wiki/Tag:cinema%3Derotic) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [cinema_type](#cinema_type) | What type of cinema is this?<br/>2 options | | _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_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
### reviews
|
|
||||||
Shows the reviews module (including the possibility to leave a review)
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{create_review()}{list_reviews()}*
|
|
||||||
|
|
||||||
### phone
|
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### email
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### website
|
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
|
||||||
|
|
||||||
### wikipedia
|
|
||||||
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?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
### cinema_type
|
|
||||||
The question is `What type of cinema is this?`
|
|
||||||
|
|
||||||
- *This is a normal cinema showing movies for all ages* is shown if with cinema=
|
|
||||||
- *This is an erotic cinema showing adult movies* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:cinema' target='_blank'>cinema</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:cinema%3Derotic' target='_blank'>erotic</a>
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/cinema/cinema.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/cinema/cinema.json)
|
|
||||||
233
Docs/Layers/climbing.md
Normal file
233
Docs/Layers/climbing.md
Normal file
|
|
@ -0,0 +1,233 @@
|
||||||
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
|
climbing
|
||||||
|
==========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
A dummy layer which contains tagrenderings, shared among the climbing layers
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- This layer is shown at zoomlevel **19** and higher
|
||||||
|
- Elements don't have a title set and cannot be toggled nor will they show up in the dashboard. If you import this layer in your theme, override `title` to make this toggleable.
|
||||||
|
- Not visible in the layer selection by default. If you want to make this layer toggable, override `name`
|
||||||
|
- Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <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>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pfloat](../SpecialInputElements.md#pfloat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:grade:french:min#values) [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:grade:french:max#values) [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:boulder#values) [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:toprope#values) [climbing:toprope](https://wiki.openstreetmap.org/wiki/Key:climbing:toprope) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:toprope%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:sport#values) [climbing:sport](https://wiki.openstreetmap.org/wiki/Key:climbing:sport) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:sport%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:traditional#values) [climbing:traditional](https://wiki.openstreetmap.org/wiki/Key:climbing:traditional) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:traditional%3Dno)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:bolts:max#values) [climbing:bolts:max](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts:max) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### website
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is there a (unofficial) website with more informations (e.g. topos)?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url)
|
||||||
|
|
||||||
|
This is rendered with `<a href='{url}' target='_blank'>{url}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `leisure!~^(sports_centre)$&sport=climbing`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### average_length
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What is the (average) length of the routes in meters?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length)
|
||||||
|
|
||||||
|
This is rendered with `The routes are <b>{canonical(climbing:length)}</b> long on average`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### min_difficulty
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What is the grade of the easiest route here, according to the french classification system?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [climbing:grade:french:min](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:min)
|
||||||
|
|
||||||
|
This is rendered with `The lowest grade is {climbing:grade:french:min} according to the french/belgian system`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### max_difficulty
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What is the highest grade route here, according to the french classification system?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [climbing:grade:french:max](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french:max)
|
||||||
|
|
||||||
|
This is rendered with `The highest grade is {climbing:grade:french:max} according to the french/belgian system`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `climbing!~^(route)$&climbing:sport=yes|sport=climbing`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### bouldering
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is bouldering possible here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Bouldering is possible here* corresponds with `climbing:boulder=yes`
|
||||||
|
- *Bouldering is not possible here* corresponds with `climbing:boulder=no`
|
||||||
|
- *Bouldering is possible, allthough there are only a few routes* corresponds with `climbing:boulder=limited`
|
||||||
|
- *There are {climbing:boulder} boulder routes* corresponds with `climbing:boulder~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### toprope
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is toprope climbing possible here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Toprope climbing is possible here* corresponds with `climbing:toprope=yes`
|
||||||
|
- *Toprope climbing is not possible here* corresponds with `climbing:toprope=no`
|
||||||
|
- *There are {climbing:toprope} toprope routes* corresponds with `climbing:toprope~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### sportclimbing
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is sport climbing possible here on fixed anchors?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Sport climbing is possible here* corresponds with `climbing:sport=yes`
|
||||||
|
- *Sport climbing is not possible here* corresponds with `climbing:sport=no`
|
||||||
|
- *There are {climbing:sport} sport climbing routes* corresponds with `climbing:sport~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### trad_climbing
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is traditional climbing possible here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Traditional climbing is possible here* corresponds with `climbing:traditional=yes`
|
||||||
|
- *Traditional climbing is not possible here* corresponds with `climbing:traditional=no`
|
||||||
|
- *There are {climbing:traditional} traditional climbing routes* corresponds with `climbing:traditional~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### max_bolts
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *How many bolts do routes in {title()} have at most?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [climbing:bolts:max](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts:max)
|
||||||
|
|
||||||
|
This is rendered with `The sport climbing routes here have at most {climbing:bolts:max} bolts.<div class='subtle'>This is without relays and indicates how much quickdraws a climber needs</div>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### fee
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *Is a fee required to climb here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
|
|
||||||
|
This is rendered with `A fee of {charge} should be paid for climbing here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Climbing here is free of charge* corresponds with `fee=no`
|
||||||
|
- *Paying a fee is required to climb here* corresponds with `fee=yes`
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/climbing/climbing.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing/climbing.json)
|
||||||
|
|
@ -1,189 +1,242 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# climbing_area
|
climbing_area
|
||||||
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_no_rope.svg' height="100px">
|
||||||
|
|
||||||
An area where climbing is possible, e.g. a crag, site, boulder, … Contains aggregation of routes
|
An area where climbing is possible, e.g. a crag, site, boulder, … Contains aggregation of routes
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **10** and higher
|
- This layer is shown at zoomlevel **10** and higher
|
||||||
- This layer will automatically load [climbing_route](./climbing_route.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _contained_climbing_routes_properties)
|
- This layer will automatically load [climbing_route](./climbing_route.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _contained_climbing_routes_properties)
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [minimap](#minimap)
|
|
||||||
- [Contained routes length hist](#contained-routes-length-hist)
|
|
||||||
- [Contained routes hist](#contained-routes-hist)
|
|
||||||
- [Contained_climbing_routes](#contained_climbing_routes)
|
|
||||||
- [name](#name)
|
|
||||||
- [Type](#type)
|
|
||||||
- [Rock type (crag/rock/cliff only)](#rock-type-(cragrock/cliff-only))
|
|
||||||
- [reviews](#reviews)
|
|
||||||
- [website](#website)
|
|
||||||
- [fee](#fee)
|
|
||||||
- [bouldering](#bouldering)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [climbing](https://mapcomplete.org/climbing)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a climbing opportunity** which has the following tags:<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>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
0. <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>
|
|
||||||
1. climbing!~^(route)$
|
|
||||||
2. climbing!=route_top
|
|
||||||
3. climbing!=route_bottom
|
|
||||||
4. leisure!~^(sports_centre)$
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22climbing%22!~%22%5E%28route%29%24%22%5D%5B%22climbing%22!%3D%22route_top%22%5D%5B%22climbing%22!%3D%22route_bottom%22%5D%5B%22leisure%22!~%22%5E%28sports_centre%29%24%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
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <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)$
|
||||||
|
- leisure!~^(sports_centre)$
|
||||||
|
- climbing!=route_top
|
||||||
|
- climbing!=route_bottom
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22climbing%22!~%22%5E(route)%24%22%5D%5B%22climbing%22!%3D%22route_top%22%5D%5B%22climbing%22!%3D%22route_bottom%22%5D%5B%22leisure%22!~%22%5E(sports_centre)%24%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing#values) [climbing](https://wiki.openstreetmap.org/wiki/Key:climbing) | Multiple choice | [boulder](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder) [crag](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag) [area](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/rock#values) [rock](https://wiki.openstreetmap.org/wiki/Key:rock) | [string](../SpecialInputElements.md#string) | [limestone](https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/url#values) [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:boulder#values) [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited)
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <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) | [name](https://wiki.openstreetmap.org/wiki/Tag:name%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing](https://wiki.openstreetmap.org/wiki/Key:climbing) | Multiple choice | [climbing=boulder](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder) [climbing=crag](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag) [climbing=area](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/rock#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/rock/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [rock](https://wiki.openstreetmap.org/wiki/Key:rock) | [string](../SpecialInputElements.md#string) | [rock=limestone](https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/url#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/url/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [url](https://wiki.openstreetmap.org/wiki/Key:url) | [url](../SpecialInputElements.md#url) | |
|
|
||||||
| <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) | [charge](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:boulder#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Aboulder/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:boulder](https://wiki.openstreetmap.org/wiki/Key:climbing:boulder) | Multiple choice | [climbing:boulder=yes](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes) [climbing:boulder=no](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno) [climbing:boulder=limited](https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited) |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [minimap](#minimap) | _{minimap(18, id, _contained_climbing_route_ids): height: 9rem; overflow: hidden; border-radius:3rem; }_ | | _Multiple choice only_ |
|
|
||||||
| [Contained routes length hist](#Contained routes length hist) | _<h3>Length overview</h3>{histogram(_length_hist)}_ | | _Multiple choice only_ |
|
|
||||||
| [Contained routes hist](#Contained routes hist) | _<h3>Grades overview</h3>{histogram(_difficulty_hist)}_ | | _Multiple choice only_ |
|
|
||||||
| [Contained_climbing_routes](#Contained_climbing_routes) | _<h3>Contains {_contained_climbing_routes_count} routes</h3> <ul>{_contained_climbing_routes}</ul>_ | | _Multiple choice only_ |
|
|
||||||
| [name](#name) | What is the name of this climbing opportunity?<br/>_<strong>{name}</strong>_<br/>1 options | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [Type](#Type) | What kind of climbing opportunity is this?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [Rock type (crag/rock/cliff only)](#Rock type (crag/rock/cliff only)) | What is the rock type here?<br/>_The rock type is {rock}_<br/>1 options | | *[rock](https://wiki.osm.org/wiki/Key:rock)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [reviews](#reviews) <br/> _(Original in [questions](./BuiltinQuestions.md#reviews))_ | _{create_review()}{list_reviews()}_ | | _Multiple choice only_ |
|
|
||||||
| [website](#website) <br/> _(Original in [climbing](./climbing.md#website))_ | Is there a (unofficial) website with more informations (e.g. topos)?<br/>_<a href='{url}' target='_blank' rel='noopener'>{url}</a>_ | | *[url](https://wiki.osm.org/wiki/Key:url)* ([url](../SpecialInputElements.md#url)) |
|
|
||||||
| [fee](#fee) <br/> _(Original in [climbing](./climbing.md#fee))_ | Is a fee required to climb here?<br/>_A fee of {charge} should be paid for climbing here_<br/>2 options | | *[charge](https://wiki.osm.org/wiki/Key:charge)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [bouldering](#bouldering) <br/> _(Original in [climbing](./climbing.md#bouldering))_ | Is bouldering possible here?<br/>4 options | | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### minimap
|
### minimap
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{minimap(18, id, _contained_climbing_route_ids): height: 9rem; overflow: hidden; border-radius:3rem; }*
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Contained routes length hist
|
### Contained routes length hist
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<h3>Length overview</h3>{histogram(_length_hist)}*
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Contained routes hist
|
### Contained routes hist
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<h3>Grades overview</h3>{histogram(_difficulty_hist)}*
|
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Contained_climbing_routes
|
### Contained_climbing_routes
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<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 has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `_contained_climbing_routes~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### name
|
### name
|
||||||
The question is `What is the name of this climbing opportunity?`
|
|
||||||
|
|
||||||
*<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=
|
|
||||||
|
The question is *What is the name of this climbing opportunity?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
|
|
||||||
|
This is rendered with `<strong>{name}</strong>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This climbing opportunity doesn't have a name* corresponds with `noname=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Type
|
### Type
|
||||||
The question is `What kind of climbing opportunity is this?`
|
|
||||||
|
|
||||||
- *A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder' target='_blank'>boulder</a>
|
|
||||||
- *A climbing crag - a single rock or cliff with at least a few climbing routes* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag' target='_blank'>crag</a>
|
|
||||||
- *A climbing area with one or more climbing crags and/or boulders* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea' target='_blank'>area</a>
|
The question is *What kind of climbing opportunity is this?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope* corresponds with `climbing=boulder`
|
||||||
|
- *A climbing crag - a single rock or cliff with at least a few climbing routes* corresponds with `climbing=crag`
|
||||||
|
- *A climbing area with one or more climbing crags and/or boulders* corresponds with `climbing=area`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Rock type (crag/rock/cliff only)
|
### Rock type (crag/rock/cliff only)
|
||||||
The question is `What is the rock type here?`
|
|
||||||
|
|
||||||
*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>
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag' target='_blank'>crag</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dcliff' target='_blank'>cliff</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dbare_rock' target='_blank'>bare_rock</a>
|
The question is *What is the rock type here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [rock](https://wiki.openstreetmap.org/wiki/Key:rock)
|
||||||
|
|
||||||
|
This is rendered with `The rock type is {rock}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Limestone* corresponds with `rock=limestone`
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `climbing=crag|natural=cliff|natural=bare_rock`
|
||||||
|
|
||||||
### reviews
|
|
||||||
Shows the reviews module (including the possibility to leave a review)
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{create_review()}{list_reviews()}*
|
|
||||||
|
|
||||||
### website
|
### website
|
||||||
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.
|
|
||||||
|
|
||||||
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)$
|
|
||||||
|
The question is *Is there a (unofficial) website with more informations (e.g. topos)?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [url](https://wiki.openstreetmap.org/wiki/Key:url)
|
||||||
|
|
||||||
|
This is rendered with `<a href='{url}' target='_blank'>{url}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `leisure!~^(sports_centre)$&sport=climbing`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### fee
|
### fee
|
||||||
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.
|
|
||||||
|
|
||||||
- *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=
|
The question is *Is a fee required to climb here?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge)
|
||||||
|
|
||||||
|
This is rendered with `A fee of {charge} should be paid for climbing here`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Climbing here is free of charge* corresponds with `fee=no`
|
||||||
|
- *Paying a fee is required to climb here* corresponds with `fee=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bouldering
|
### bouldering
|
||||||
The question is `Is bouldering possible here?`
|
|
||||||
|
|
||||||
- *Bouldering is possible here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dyes' target='_blank'>yes</a>
|
|
||||||
- *Bouldering is not possible here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dno' target='_blank'>no</a>
|
|
||||||
- *Bouldering is possible, although there are only a few problems* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing:boulder' target='_blank'>climbing:boulder</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing:boulder%3Dlimited' target='_blank'>limited</a>
|
|
||||||
- *There are {climbing:boulder} boulder problems* is shown if with climbing:boulder~.+. _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/climbing_area/climbing_area.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/climbing_area/climbing_area.json)
|
|
||||||
|
The question is *Is bouldering possible here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Bouldering is possible here* corresponds with `climbing:boulder=yes`
|
||||||
|
- *Bouldering is not possible here* corresponds with `climbing:boulder=no`
|
||||||
|
- *Bouldering is possible, allthough there are only a few routes* corresponds with `climbing:boulder=limited`
|
||||||
|
- *There are {climbing:boulder} boulder routes* corresponds with `climbing:boulder~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/climbing_area/climbing_area.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_area/climbing_area.json)
|
||||||
|
|
|
||||||
|
|
@ -1,146 +1,158 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# climbing_club
|
climbing_club
|
||||||
|
===============
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/club.svg' height="100px">
|
||||||
|
|
||||||
A climbing club or organisation
|
A climbing club or organisation
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **10** and higher
|
- This layer is shown at zoomlevel **10** 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)
|
|
||||||
- [climbing_club-name](#climbing_club-name)
|
|
||||||
- [website](#website)
|
|
||||||
- [email](#email)
|
|
||||||
- [phone](#phone)
|
|
||||||
- [opening_hours](#opening_hours)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
6. [Filters](#filters)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [climbing](https://mapcomplete.org/climbing)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a climbing club** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dsport' target='_blank'>sport</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>
|
|
||||||
- **a climbing ngo** which has the following tags:<a href='https://wiki.openstreetmap.org/wiki/Key:office' target='_blank'>office</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:office%3Dngo' target='_blank'>ngo</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>
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match **any** of the following expressions:
|
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
- <a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dclimbing' target='_blank'>climbing</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> & (club~.+ | office~.+)
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22club%22%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22club%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22office%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
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:club' target='_blank'>club</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:club%3Dclimbing' target='_blank'>climbing</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>&office~.+|club~.+
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22club%22%3D%22climbing%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22club%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B%22sport%22%3D%22climbing%22%5D%5B%22office%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) |
|
||||||
|
|
||||||
| attribute | type | values which are supported by this layer |
|
|
||||||
-----|-----|----- |
|
|
||||||
| <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/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/email#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/email/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | |
|
|
||||||
| <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/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) | |
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [climbing_club-name](#climbing_club-name) | What is the name of this climbing club or NGO?<br/>_<strong>{name}</strong>_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [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)) |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### climbing_club-name
|
### climbing_club-name
|
||||||
The question is `What is the name of this climbing club or NGO?`
|
|
||||||
|
|
||||||
*<strong>{name}</strong>* is shown if `name` is set.
|
|
||||||
|
|
||||||
|
The question is *What is the name of this climbing club or NGO?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
|
|
||||||
|
This is rendered with `<strong>{name}</strong>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### website
|
### website
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the website of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website)
|
||||||
|
|
||||||
|
This is rendered with `<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>* corresponds with `contact:website~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### email
|
### email
|
||||||
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.
|
|
||||||
|
|
||||||
- <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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the email address of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email)
|
||||||
|
|
||||||
|
This is rendered with `<a href='mailto:{email}' target='_blank'>{email}</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *<a href='mailto:{contact:email}' target='_blank'>{contact:email}</a>* corresponds with `contact:email~.+`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### phone
|
### phone
|
||||||
The question is `What is the phone number of {title()}?`
|
|
||||||
|
|
||||||
*{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_
|
|
||||||
|
|
||||||
This tagrendering has labels `contact`
|
The question is *What is the phone number of {title()}?*
|
||||||
|
|
||||||
### opening_hours
|
This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone)
|
||||||
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.
|
This is rendered with `<a href='tel:{phone}'>{phone}</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_
|
|
||||||
|
|
||||||
### 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
|
- *<a href='tel:{contact:phone}'>{contact:phone}</a>* corresponds with `contact:phone~.+`
|
||||||
_This tagrendering has no question and is thus read-only_
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
*{move_button()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### lod
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{linked_data_from_website()}*
|
|
||||||
|
|
||||||
This tagrendering has labels `added_by_default`
|
|
||||||
|
|
||||||
## Filters
|
|
||||||
|
|
||||||
| id | question | osmTags |
|
|
||||||
-----|-----|----- |
|
|
||||||
| open_now.0 | Now open | _isOpen=yes |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This document is autogenerated from [assets/layers/climbing_club/climbing_club.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/climbing_club/climbing_club.json)
|
### opening_hours
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
The question is *What are the opening hours of {title()}?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours)
|
||||||
|
|
||||||
|
This is rendered with `<h3>Opening hours</h3>{opening_hours_table(opening_hours)}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/climbing_club/climbing_club.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_club/climbing_club.json)
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,83 +1,86 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# climbing_opportunity
|
climbing_opportunity
|
||||||
|
======================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/./assets/themes/climbing/climbing_unknown.svg' height="100px">
|
||||||
|
|
||||||
Fallback layer with items on which climbing _might_ be possible. It is loaded when zoomed in a lot, to prevent duplicate items to be added
|
Fallback layer with items on which climbing _might_ be possible. It is loaded when zoomed in a lot, to prevent duplicate items to be added
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **18** and higher
|
|
||||||
- This layer is needed as dependency for layer [climbing_route](#climbing_route)
|
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [climbing-opportunity-name](#climbing-opportunity-name)
|
|
||||||
- [climbing-possible](#climbing-possible)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [climbing](https://mapcomplete.org/climbing)
|
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
- This layer is shown at zoomlevel **19** and higher
|
||||||
|
|
||||||
Elements must match **all** of the following expressions:
|
|
||||||
|
|
||||||
0. climbing=
|
|
||||||
1. <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dwall' target='_blank'>wall</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dretaining_wall' target='_blank'>retaining_wall</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dsports_centre' target='_blank'>sports_centre</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dcliff' target='_blank'>cliff</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Drock' target='_blank'>rock</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dstone' target='_blank'>stone</a>
|
|
||||||
2. sport!=climbing
|
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22barrier%22%3D%22wall%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22barrier%22%3D%22retaining_wall%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22leisure%22%3D%22sports_centre%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22cliff%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22rock%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22stone%22%5D%5B%22sport%22!%3D%22climbing%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
|
||||||
|
|
||||||
## Supported attributes
|
#### Themes using this layer
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Basic tags for this layer
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dsports_centre' target='_blank'>sports_centre</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dwall' target='_blank'>wall</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:barrier' target='_blank'>barrier</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dretaining_wall' target='_blank'>retaining_wall</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dcliff' target='_blank'>cliff</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Drock' target='_blank'>rock</a>|<a href='https://wiki.openstreetmap.org/wiki/Key:natural' target='_blank'>natural</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:natural%3Dstone' target='_blank'>stone</a>
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22barrier%22%3D%22wall%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22barrier%22%3D%22retaining_wall%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22leisure%22%3D%22sports_centre%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22cliff%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22rock%22%5D(%7B%7Bbbox%7D%7D)%3B%0A%20%20%20%20nwr%5B!%22climbing%22%5D%5B%22natural%22%3D%22stone%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Supported attributes
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [climbing-opportunity-name](#climbing-opportunity-name) | _<strong>{name}</strong>_ | | _Multiple choice only_ |
|
|
||||||
| [climbing-possible](#climbing-possible) | Is climbing possible here?<br/>3 options | | _Multiple choice only_ |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### climbing-opportunity-name
|
### climbing-opportunity-name
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<strong>{name}</strong>*
|
|
||||||
|
|
||||||
This tagrendering is only visible in the popup if the following condition is met: name~.+
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This tagrendering is only visible in the popup if the following condition is met: `name~.+`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### climbing-possible
|
### climbing-possible
|
||||||
The question is `Is climbing possible here?`
|
|
||||||
|
|
||||||
- *Climbing is possible here* is shown if with <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 is not possible here* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dno' target='_blank'>no</a>
|
|
||||||
- *Climbing is not possible here* is shown if with sport!~^(climbing)$. _This option cannot be chosen as answer_
|
|
||||||
|
|
||||||
### leftover-questions
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{questions( ,hidden)}*
|
|
||||||
|
|
||||||
This tagrendering has labels `ignore-docs` `added_by_default`
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/climbing_opportunity/climbing_opportunity.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/climbing_opportunity/climbing_opportunity.json)
|
|
||||||
|
The question is *Is climbing possible here?*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *Climbing is possible here* corresponds with `sport=climbing`
|
||||||
|
- *Climbing is not possible here* corresponds with `climbing=no`
|
||||||
|
- *Climbing is not possible here* corresponds with `sport!~^(climbing)$`
|
||||||
|
- This option cannot be chosen as answer
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/climbing_opportunity/climbing_opportunity.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_opportunity/climbing_opportunity.json)
|
||||||
|
|
|
||||||
|
|
@ -1,141 +1,178 @@
|
||||||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||||
|
|
||||||
# climbing_route
|
climbing_route
|
||||||
|
================
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<img src='https://mapcomplete.osm.be/circle:white;./assets/themes/climbing/climbing_route.svg' height="100px">
|
||||||
|
|
||||||
A single climbing route and its properties. Some properties are derived from the containing features
|
A single climbing route and its properties. Some properties are derived from the containing features
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- This layer is shown at zoomlevel **18** and higher
|
- This layer is shown at zoomlevel **18** and higher
|
||||||
- This layer will automatically load [climbing_opportunity](./climbing_opportunity.md) into the layout as it depends on it: preset `a climbing route` snaps to this layer (climbing_route.presets[0])
|
|
||||||
- This layer is needed as dependency for layer [climbing_area](#climbing_area)
|
- This layer is needed as dependency for layer [climbing_area](#climbing_area)
|
||||||
|
|
||||||
## 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)
|
|
||||||
- [images](#images)
|
|
||||||
- [Name](#name)
|
|
||||||
- [Length](#length)
|
|
||||||
- [Difficulty](#difficulty)
|
|
||||||
- [bolts](#bolts)
|
|
||||||
- [description](#description)
|
|
||||||
- [Rock type via embedded feature](#rock-type-via-embedded-feature)
|
|
||||||
- [leftover-questions](#leftover-questions)
|
|
||||||
- [move-button](#move-button)
|
|
||||||
- [spacer](#spacer)
|
|
||||||
- [lod](#lod)
|
|
||||||
|
|
||||||
## Themes using this layer
|
|
||||||
|
|
||||||
- [climbing](https://mapcomplete.org/climbing)
|
#### Themes using this layer
|
||||||
- [personal](https://mapcomplete.org/personal)
|
|
||||||
|
|
||||||
## Presets
|
|
||||||
|
|
||||||
The following options to create new points are included:
|
|
||||||
|
|
||||||
- **a climbing route** which has the following tags:<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> & <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Droute' target='_blank'>route</a> (snaps to layers `climbing_opportunity`)
|
|
||||||
|
|
||||||
## Basic tags for this layer
|
|
||||||
|
|
||||||
Elements must match the expression **<a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Droute' target='_blank'>route</a>**
|
- [climbing](https://mapcomplete.osm.be/climbing)
|
||||||
|
- [personal](https://mapcomplete.osm.be/personal)
|
||||||
|
|
||||||
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22climbing%22%3D%22route%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 |
|
Basic tags for this layer
|
||||||
-----|-----|----- |
|
---------------------------
|
||||||
| <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) | [name](https://wiki.openstreetmap.org/wiki/Tag:name%3D) |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:length#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Alength/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:grade:french#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Agrade%3Afrench/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/climbing:bolts#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/climbing%3Abolts/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts) | [pnat](../SpecialInputElements.md#pnat) | |
|
Elements must have the all of following tags to be shown on this layer:
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/description#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/description/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | |
|
|
||||||
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/_embedding_features_with_rock:rock#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/_embedding_features_with_rock%3Arock/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock) | [string](../SpecialInputElements.md#string) | |
|
|
||||||
|
|
||||||
|
- <a href='https://wiki.openstreetmap.org/wiki/Key:climbing' target='_blank'>climbing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:climbing%3Droute' target='_blank'>route</a>
|
||||||
|
|
||||||
|
|
||||||
|
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B(%20%20%20%20nwr%5B%22climbing%22%3D%22route%22%5D(%7B%7Bbbox%7D%7D)%3B%0A)%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
|
||||||
|
----------- | ------ | ------------------------------------------
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D)
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:grade:french#values) [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/climbing:bolts#values) [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts) | [pnat](../SpecialInputElements.md#pnat) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) |
|
||||||
|
[<img src='https://mapcomplete.osm.be/assets/svg/statistics.svg' height='18px'>](https://taginfo.openstreetmap.org/keys/_embedding_features_with_rock:rock#values) [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock) | [string](../SpecialInputElements.md#string) |
|
||||||
|
|
||||||
|
|
||||||
## Featureview elements and TagRenderings
|
|
||||||
|
|
||||||
| id | question | labels | freeform key |
|
|
||||||
-----|-----|-----|----- |
|
|
||||||
| [images](#images) <br/> _(Original in [questions](./BuiltinQuestions.md#images))_ | _{image_carousel()}{image_upload()}_ | | _Multiple choice only_ |
|
|
||||||
| [Name](#Name) | What is the name of this climbing route?<br/>_<strong>{name}</strong>_<br/>1 options | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [Length](#Length) | How long is this climbing route (in meters)?<br/>_This route is {canonical(climbing:length)} long_ | | *[climbing:length](https://wiki.osm.org/wiki/Key:climbing:length)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [Difficulty](#Difficulty) | What is the grade of this climbing route according to the french/belgian system?<br/>_The grade is {climbing:grade:french} according to the french/belgian system_ | | *[climbing:grade:french](https://wiki.osm.org/wiki/Key:climbing:grade:french)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [bolts](#bolts) | How many bolts does this route have before reaching the anchor?<br/>_This route has {climbing:bolts} bolts. <div class='subtle'>This is without belay stations and indicates how much quickdraws a climber needs.</div>_<br/>1 options | | *[climbing:bolts](https://wiki.osm.org/wiki/Key:climbing:bolts)* ([pnat](../SpecialInputElements.md#pnat)) |
|
|
||||||
| [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)) |
|
|
||||||
| [Rock type via embedded feature](#Rock type via embedded feature) | _The rock type is {_embedding_features_with_rock:rock} as stated <a href='#{_embedding_features_with_rock:id}'>on the surrounding crag</a>_ | | *[_embedding_features_with_rock:rock](https://wiki.osm.org/wiki/Key:_embedding_features_with_rock:rock)* ([string](../SpecialInputElements.md#string)) |
|
|
||||||
| [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ |
|
|
||||||
| [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ |
|
|
||||||
| [spacer](#spacer) | _<div class='m-4'/>_ | | _Multiple choice only_ |
|
|
||||||
| [lod](#lod) <br/> _(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ |
|
|
||||||
|
|
||||||
### 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 tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*{image_carousel()}{image_upload()}*
|
|
||||||
|
|
||||||
|
This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata`
|
||||||
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Name
|
### Name
|
||||||
The question is `What is the name of this climbing route?`
|
|
||||||
|
|
||||||
*<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=
|
|
||||||
|
The question is *What is the name of this climbing route?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name)
|
||||||
|
|
||||||
|
This is rendered with `<strong>{name}</strong>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This climbing route doesn't have a name* corresponds with `noname=yes`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Length
|
### Length
|
||||||
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.
|
|
||||||
|
|
||||||
|
The question is *How long is this climbing route (in meters)?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length)
|
||||||
|
|
||||||
|
This is rendered with `This route is {canonical(climbing:length)} long`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Difficulty
|
### Difficulty
|
||||||
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 question is *What is the grade of this climbing route according to the french/belgian system?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french)
|
||||||
|
|
||||||
|
This is rendered with `The grade is {climbing:grade:french} according to the french/belgian system`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### bolts
|
### bolts
|
||||||
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 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>
|
|
||||||
|
The question is *How many bolts does this route have before reaching the anchor?*
|
||||||
|
|
||||||
|
This rendering asks information about the property [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts)
|
||||||
|
|
||||||
|
This is rendered with `This route has {climbing:bolts} bolts <div class='subtle'>This is without relays and indicates how much quickdraws a climber needs</div>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- *This route is not bolted* corresponds with `climbing:bolted=no`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### description
|
### description
|
||||||
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.
|
|
||||||
|
|
||||||
|
The question is *Is there still something relevant you couldn't give in the previous questions? Add it here.*
|
||||||
|
|
||||||
|
This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description)
|
||||||
|
|
||||||
|
This is rendered with `{description}`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Rock type via embedded feature
|
### Rock type via embedded feature
|
||||||
_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.
|
|
||||||
|
|
||||||
### 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()}*
|
|
||||||
|
|
||||||
### spacer
|
|
||||||
_This tagrendering has no question and is thus read-only_
|
|
||||||
|
|
||||||
*<div class='m-4'/>*
|
|
||||||
|
|
||||||
### 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/climbing_route/climbing_route.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/climbing_route/climbing_route.json)
|
|
||||||
|
This tagrendering has no question and is thus read-only
|
||||||
|
|
||||||
|
This rendering asks information about the property [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock)
|
||||||
|
|
||||||
|
This is rendered with `The rock type is {_embedding_features_with_rock:rock} as stated <a href='#{_embedding_features_with_rock:id}'>on the surrounding crag</a>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
This document is autogenerated from [assets/layers/climbing_route/climbing_route.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/climbing_route/climbing_route.json)
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue