Merge branch 'develop' into feature/360-view

This commit is contained in:
Pieter Vander Vennet 2025-03-29 00:50:32 +01:00
commit fa9e61c2b5
230 changed files with 45510 additions and 33214 deletions

View file

@ -6,10 +6,10 @@ jobs:
daily_data_maintenance:
runs-on: [ ubuntu-latest, hetzner-access ]
steps:
- uses: actions/checkout@v3
- uses: https://source.mapcomplete.org/actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"

View file

@ -8,15 +8,15 @@ jobs:
deploy_on_hosted:
runs-on: [ubuntu-latest, hetzner-access]
steps:
- uses: actions/checkout@v3
- uses: https://source.mapcomplete.org/actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: package-lock.json
- name: install deps
run: npm ci
shell: bash
@ -43,8 +43,7 @@ jobs:
export NODE_OPTIONS="--max-old-space-size=8192"
npm run clean:tests
npm run generate:doctests 2>&1 | grep -v "No doctests found in"
vitest --run test
npm run clean:tests
vitest --run test && npm run clean:tests
shell: bash
@ -53,25 +52,34 @@ jobs:
- name: Zipping dist file
run: |
mv dist ${{ github.ref_name }}
mv dist /tmp/${{ github.ref_name }}
cd /tmp
zip ${{ github.ref_name }}.zip -r ${{ github.ref_name }}/*
cd -
- name: uploading file
run: scp ${{ github.ref_name }}.zip hetzner:/root/staging/
run: scp /tmp/${{ github.ref_name }}.zip hetzner:/root/staging/
- name: cleanup files
run: rm /tmp/${{ github.ref_name }}.zip && rm -rf /tmp/${{ github.ref_name }}/
- name: unzipping remote file
run: ssh hetzner "cd /root/staging && rm -rf ${{ github.ref_name }} && unzip ${{ github.ref_name }}.zip && rm -rf /root/public/${{ github.ref_name }} && mv /root/staging/${{ github.ref_name }}/ /root/public/ && rm ${{ github.ref_name }}.zip"
- name: Extract PR number
run: echo "PR_NUMBER=$(echo $FORGEJO_REF_NAME | cut -d'/' -f3)" >> $FORGEJO_ENV
- name: add comment to PR
if: env.PR_NUMBER != ''
- name: Comment on the PR
run: |
curl -X POST "https://source.mapcomplete.org/api/v1/repos/${FORGEJO_REPOSITORY}/issues/${PR_NUMBER}/comments" \
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/${PR_NUMBER}")
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": "This PR has been deployed and is (temporarily) available on https://builds.mapcomplete.org/${PR_NUMBER}"}'
-d "$BODY"
fi
env:
FORGEJO_TOKEN: ${{ secrets.FORGEJO_TOKEN }}

View file

@ -7,10 +7,10 @@ jobs:
deploy_single_theme:
runs-on: [ ubuntu-latest, hetzner-access ]
steps:
- uses: actions/checkout@v3
- uses: https://source.mapcomplete.org/actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: https://source.mapcomplete.org/actions/setup-node@v4
with:
node-version: "20"
cache: "npm"

1
.gitignore vendored
View file

@ -51,3 +51,4 @@ dist-full/
public/assets/icons/*.webp
uploaded_images.json
/app/dist/
src/assets/bing.json

View file

@ -53,5 +53,12 @@
"[svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true
"editor.formatOnSave": true,
"gitlens.remotes": [
{
"domain": "source.mapcomplete.org",
"type": "Gitea",
"name": "MapComplete Forgejo"
}
]
}

View file

@ -2,6 +2,24 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.50.5](https://github.com/pietervdvn/mapcomplete/compare/v0.50.4...v0.50.5) (2025-03-17)
### Bug Fixes
* fix postfixdistinguished-charge input ([70ad243](https://github.com/pietervdvn/mapcomplete/commits/70ad2431d0aa0ad25772cd5a72ec0e6ecf16a3e9))
* merge translations ([c83eaf9](https://github.com/pietervdvn/mapcomplete/commits/c83eaf9b1618ceac668782223e45c16b64f9a937))
* tests ([e24b465](https://github.com/pietervdvn/mapcomplete/commits/e24b465783fc933f908b3d01290dd5166abff746))
* tests ([874f92d](https://github.com/pietervdvn/mapcomplete/commits/874f92d70fc54285e42be69d9350b3b943029fc3))
### Theme improvements
* **entrance:** add question about reference numbers ([1933b8a](https://github.com/pietervdvn/mapcomplete/commits/1933b8a7be28d78bddb83c13619766338c85afcf))
* **toilets:** add condition to supervision question: only ask if a public toilet ([1dd7856](https://github.com/pietervdvn/mapcomplete/commits/1dd78563efe0d4d8513f621884e8d42fbaa18513))
* **toilets:** add supervision, hand_drying questions ([40c6a58](https://github.com/pietervdvn/mapcomplete/commits/40c6a582c76baacf007fa6a7675b1564c4e31f46))
* **wayside_shrine:** add level, do not count 'artwork' ([ac19702](https://github.com/pietervdvn/mapcomplete/commits/ac19702189c36df50f20f7063387ac506b3dbbf9))
### [0.50.4](https://github.com/pietervdvn/mapcomplete/compare/v0.50.3...v0.50.4) (2025-03-13)

View file

@ -132,6 +132,7 @@
- village_green
- waste_basket
- waste_disposal
- wayside_shrine
- windturbine
### luminous_or_lit
@ -305,6 +306,10 @@
- artwork
- memorial
### wayside_shrine.shrine_questions
- artwork
### preset_description
- assisted_repair
@ -424,6 +429,7 @@
- toilet
- toilet_at_amenity
- vending_machine
- wayside_shrine
### shops.*

View file

@ -242,21 +242,21 @@ This tagrendering has labels
### charge_bicycle_tube
The question is `How much does a a bicycle tube cost?`
*a bicycle tube costs {charge:bicycle_tube}* is shown if `charge` is set
*a bicycle tube costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$
### charge_bicycle_light
The question is `How much does a bicycle light cost?`
*bicycle light costs {charge:bicycle_light}* is shown if `charge` is set
*bicycle light costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$
### charge_condom
The question is `How much does a a condom cost?`
*a condom costs {charge:condom}* is shown if `charge` is set
*a condom costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$

View file

@ -33,6 +33,13 @@ An open map of statues, busts, graffitis and other artwork all over the world
- [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)
@ -44,6 +51,7 @@ An open map of statues, busts, graffitis and other artwork all over the world
- [artwork](https://mapcomplete.org/artwork)
- [memorials](https://mapcomplete.org/memorials)
- [personal](https://mapcomplete.org/personal)
- [wayside_shrines](https://mapcomplete.org/wayside_shrines)
## Presets
@ -83,6 +91,13 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/survey:date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/survey%3Adate/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/inscription#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/inscription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [wayside_shrine](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine) [](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) | [christian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian) [buddhist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist) [hindu](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dhindu) [jain](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djain) [jewish](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish) [muslim](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim) [pagan](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dpagan) [shinto](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dshinto) [sikh](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dsikh) [taoist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dtaoist) [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) | [catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic) [roman_catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [greek_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dgreek_orthodox) [russian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Drussian_orthodox) [serbian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dserbian_orthodox) [protestant](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dprotestant) [anglican](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Danglican) [adventist](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dadventist) [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) | [shia](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia) [sunni](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni) [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) | [conservative](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [hasidic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dhasidic) [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) | |
### images_no_blur
Same as `images`, but uploaded request to disable blurring to the panoramax server
@ -156,7 +171,7 @@ This tagrendering has labels
The question is `Does this artwork serve as a memorial?`
- *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>
- <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
@ -199,7 +214,7 @@ This tagrendering has labels
The question is `Does this artwork serve as a bench?`
- *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>
- <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_
@ -314,6 +329,101 @@ This tagrendering is only visible in the popup if the following condition is met
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 shrine?`
*The name of this shrine 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 the shrine?`
*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_

View file

@ -34,6 +34,13 @@ An open map of statues, busts, graffitis and other artwork all over the world
- [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)
@ -79,6 +86,13 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/survey:date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/survey%3Adate/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/inscription#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/inscription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [wayside_shrine](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine) [](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) | [christian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian) [buddhist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist) [hindu](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dhindu) [jain](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djain) [jewish](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish) [muslim](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim) [pagan](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dpagan) [shinto](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dshinto) [sikh](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dsikh) [taoist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dtaoist) [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) | [catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic) [roman_catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [greek_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dgreek_orthodox) [russian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Drussian_orthodox) [serbian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dserbian_orthodox) [protestant](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dprotestant) [anglican](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Danglican) [adventist](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dadventist) [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) | [shia](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia) [sunni](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni) [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) | [conservative](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [hasidic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dhasidic) [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) | |
### historic_or_not
@ -159,7 +173,7 @@ This tagrendering has labels
The question is `Does this artwork serve as a memorial?`
- *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>
- <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
@ -202,7 +216,7 @@ This tagrendering has labels
The question is `Does this artwork serve as a bench?`
- *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>
- <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_
@ -317,6 +331,101 @@ This tagrendering is only visible in the popup if the following condition is met
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 shrine?`
*The name of this shrine 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 the shrine?`
*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_

View file

@ -8,7 +8,6 @@ A layer showing entrances and offering capabilities to survey some advanced data
- This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: preset `an entrance` snaps to this layer (entrance.presets[0])
- This layer will automatically load [pedestrian_path](./pedestrian_path.md) into the layout as it depends on it: preset `an entrance` snaps to this layer (entrance.presets[0])
- This layer will automatically load [indoors](./indoors.md) into the layout as it depends on it: preset `an indoor door` snaps to this layer (entrance.presets[1])
- This layer is needed as dependency for layer [walls_and_buildings](#walls_and_buildings)
## Table of contents
@ -24,6 +23,7 @@ A layer showing entrances and offering capabilities to survey some advanced data
- [automatic_door](#automatic_door)
- [width](#width)
- [kerb-height](#kerb-height)
- [ref](#ref)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [lod](#lod)
@ -66,6 +66,7 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/automatic_door#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/automatic_door/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [automatic_door](https://wiki.openstreetmap.org/wiki/Key:automatic_door) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno) [motion](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion) [floor](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor) [button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton) [slowdown_button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button) [continuous](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous) [serviced_on_button_press](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press) [serviced_on_request](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/width#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/width/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [width](https://wiki.openstreetmap.org/wiki/Key:width) | [pfloat](../SpecialInputElements.md#pfloat) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/kerb:height#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/kerb%3Aheight/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pnat](../SpecialInputElements.md#pnat) | [0](https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/ref#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/ref/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:ref%3D) |
### 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
@ -146,6 +147,13 @@ The question is `What is the height of this kerb?`
- *This door does not have a kerb* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:kerb:height' target='_blank'>kerb:height</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0' target='_blank'>0</a>
### ref
The question is `Does this door have a reference number?`
*This door has <b>{ref}</b> as reference number* is shown if `ref` is set
- *No reference number* is shown if with ref=
### leftover-questions
_This tagrendering has no question and is thus read-only_

View file

@ -34,12 +34,12 @@ Campsites
## Basic tags for this layer
Elements must match **all** of the following expressions:
Elements must match **any** 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%3Dcamp_site' target='_blank'>camp_site</a>
1. <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> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Dyes' target='_blank'>yes</a>
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dsummer_camp' target='_blank'>summer_camp</a>
- <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' target='_blank'>group</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:group%3Dyes' target='_blank'>yes</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> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Donly' target='_blank'>only</a>) & group!=no & scout!=no
[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%5B%22group_only%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%22%5D%5B%22scout%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22summer_camp%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%22%5D%5B%22group%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%22%5D%5B%22group_only%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%22%5D%5B%22scout%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%22%5D%5B%22scout%22%3D%22only%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
## Supported attributes

View file

@ -50,9 +50,11 @@ The following options to create new points are included:
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%3Dhostel' target='_blank'>hostel</a>
1. <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> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Dyes' target='_blank'>yes</a>
1. <a href='https://wiki.openstreetmap.org/wiki/Key:group' target='_blank'>group</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:group%3Dyes' target='_blank'>yes</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> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Donly' target='_blank'>only</a>
2. group!=no
3. scout!=no
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22group_only%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22scout%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22group%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22group_only%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22scout%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22scout%22%3D%22only%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
## Supported attributes

View file

@ -32,8 +32,8 @@ Basic indoor mapping: shows room outlines
- [toilets-type](#toilets-type)
- [toilets-changing-table](#toilets-changing-table)
- [toilet-changing_table:location](#toilet-changing_tablelocation)
- [toilet-handwashing](#toilet-handwashing)
- [toilet-has-paper](#toilet-has-paper)
- [toilet-handwashing](#toilet-handwashing)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [lod](#lod)
@ -80,8 +80,8 @@ Elements must match **any** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:position#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Aposition/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:position](https://wiki.openstreetmap.org/wiki/Key:toilets:position) | Multiple choice | [seated](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated) [urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal) [squat](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat) [seated;urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated;urinal) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table](https://wiki.openstreetmap.org/wiki/Key:changing_table) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:location#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Alocation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet) [dedicated_room](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:handwashing#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Ahandwashing/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:paper_supplied#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Apaper_supplied/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:paper_supplied](https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:handwashing#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Ahandwashing/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) |
### 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
@ -290,17 +290,6 @@ This tagrendering is only visible in the popup if the following condition is met
This tagrendering has labels
`relevant-questions`
### 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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtoilets' target='_blank'>toilets</a>
This tagrendering has labels
`relevant-questions`
### toilet-has-paper
The question is `Does one have to bring their own toilet paper to this toilet?`
@ -312,6 +301,17 @@ This tagrendering is only visible in the popup if the following condition is met
This tagrendering has labels
`relevant-questions`
### 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:amenity' target='_blank'>amenity</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dtoilets' target='_blank'>toilets</a>
This tagrendering has labels
`relevant-questions`
### leftover-questions
_This tagrendering has no question and is thus read-only_

View file

@ -17,6 +17,7 @@ A map showing scouting groups.
- [phone](#phone)
- [email](#email)
- [website](#website)
- [start_date](#start_date)
- [questions](#questions)
- [mastodon](#mastodon)
- [move-button](#move-button)
@ -51,6 +52,7 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <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/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/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) | |
### name
@ -94,6 +96,11 @@ The question is `What is the website of {title()}?`
This tagrendering has labels
`contact`
### start_date
The question is `When was this group founded?`
*This group was founded at {start_date}* is shown if `start_date` is set
### questions
Show the questions block at this location
_This tagrendering has no question and is thus read-only_
@ -139,6 +146,10 @@ This tagrendering has labels
| brand.15 | 香港女童軍總會 Hong Kong Girl Guides Association | brand=香港女童軍總會 | brand:en=Hong Kong Girl Guides Association | brand:wikidata=Q5894627 | brand:zh=香港女童軍總會 | brand:zh-Hans=香港女童军总会 | brand:zh-Hant=香港女童軍總會 |
| brand.16 | 香港童軍總會 Scout Association of Hong Kong | brand=香港童軍總會 Scout Association of Hong Kong | brand:en=Scout Association of Hong Kong | brand:wikidata=Q1883585 | brand:zh=香港童軍總會 | brand:zh-Hans=香港童军总会 | brand:zh-Hant=香港童軍總會 |
| id | question | osmTags | fields |
-----|-----|-----|----- |
| brand_search.0 | Search for brand: {search} | | search (regex) |
This document is autogenerated from [assets/layers/scouting_group/scouting_group.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/scouting_group/scouting_group.json)

View file

@ -30,8 +30,10 @@ A layer showing (public) toilets
- [menstrual_products_location](#menstrual_products_location)
- [toilets-changing-table](#toilets-changing-table)
- [toilet-changing_table:location](#toilet-changing_tablelocation)
- [toilet-handwashing](#toilet-handwashing)
- [toilet-supervised](#toilet-supervised)
- [toilet-has-paper](#toilet-has-paper)
- [toilet-handwashing](#toilet-handwashing)
- [toilet-drying](#toilet-drying)
- [description](#description)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
@ -84,8 +86,10 @@ Elements must match the expression **<a href='https://wiki.openstreetmap.org/wik
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:menstrual_products:location#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Amenstrual_products%3Alocation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:menstrual_products:location](https://wiki.openstreetmap.org/wiki/Key:toilets:menstrual_products:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:toilets:menstrual_products:location%3Dwheelchair_toilet) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table](https://wiki.openstreetmap.org/wiki/Key:changing_table) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/changing_table:location#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/changing_table%3Alocation/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet) [dedicated_room](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:handwashing#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Ahandwashing/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/supervised#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/supervised/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [supervised](https://wiki.openstreetmap.org/wiki/Key:supervised) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:supervised%3Dyes) [interval](https://wiki.openstreetmap.org/wiki/Tag:supervised%3Dinterval) [no](https://wiki.openstreetmap.org/wiki/Tag:supervised%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:paper_supplied#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Apaper_supplied/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:paper_supplied](https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:handwashing#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Ahandwashing/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/toilets:hands_drying#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/toilets%3Ahands_drying/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [toilets:hands_drying](https://wiki.openstreetmap.org/wiki/Key:toilets:hands_drying) | Multiple choice | [electric_hand_dryer](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Delectric_hand_dryer) [paper_towel](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dpaper_towel) [towel_cabinet](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel_cabinet) [towel](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dtowel) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:hands_drying%3Dno) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/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) | |
### images
@ -263,15 +267,13 @@ This tagrendering is only visible in the popup if the following condition is met
This tagrendering has labels
`relevant-questions`
### toilet-handwashing
### toilet-supervised
The question is `Do these toilets have a sink to wash your hands?`
The question is `Is this toilets supervised by a person?`
- *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 has labels
`relevant-questions`
- *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:supervised' target='_blank'>supervised</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag: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:supervised' target='_blank'>supervised</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:supervised%3Dinterval' target='_blank'>interval</a>
- *These toilets are not supervised* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:supervised' target='_blank'>supervised</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:supervised%3Dno' target='_blank'>no</a>
### toilet-has-paper
@ -283,6 +285,28 @@ The question is `Does one have to bring their own toilet paper to this toilet?`
This tagrendering has labels
`relevant-questions`
### 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 has labels
`relevant-questions`
### 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:handwashing' target='_blank'>toilets:handwashing</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes' target='_blank'>yes</a>
### description
The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.`

View file

@ -249,21 +249,21 @@ This tagrendering has labels
### charge_bicycle_tube
The question is `How much does a a bicycle tube cost?`
*a bicycle tube costs {charge:bicycle_tube}* is shown if `charge` is set
*a bicycle tube costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$
### charge_bicycle_light
The question is `How much does a bicycle light cost?`
*bicycle light costs {charge:bicycle_light}* is shown if `charge` is set
*bicycle light costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$
### charge_condom
The question is `How much does a a condom cost?`
*a condom costs {charge:condom}* is shown if `charge` is set
*a condom costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$

View file

@ -242,21 +242,21 @@ This tagrendering has labels
### charge_bicycle_tube
The question is `How much does a a bicycle tube cost?`
*a bicycle tube costs {charge:bicycle_tube}* is shown if `charge` is set
*a bicycle tube costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$
### charge_bicycle_light
The question is `How much does a bicycle light cost?`
*bicycle light costs {charge:bicycle_light}* is shown if `charge` is set
*bicycle light costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$
### charge_condom
The question is `How much does a a condom cost?`
*a condom costs {charge:condom}* is shown if `charge` is set
*a condom costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$

View file

@ -9,7 +9,6 @@ Special builtin layer providing all walls and buildings. This layer is useful in
- This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-<id>=true
- 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`
- This layer will automatically load [entrance](./entrance.md) into the layout as it depends on it: a calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _entrance_properties)
- This layer is needed as dependency for layer [advertising](#advertising)
- This layer is needed as dependency for layer [artwork](#artwork)
- This layer is needed as dependency for layer [clock](#clock)
@ -18,6 +17,7 @@ Special builtin layer providing all walls and buildings. This layer is useful in
- This layer is needed as dependency for layer [ghostsign](#ghostsign)
- This layer is needed as dependency for layer [postboxes](#postboxes)
- This layer is needed as dependency for layer [surveillance_camera](#surveillance_camera)
- This layer is needed as dependency for layer [wayside_shrine](#wayside_shrine)
- This layer is needed as dependency for layer [facadegardens](#facadegardens)
- This layer is needed as dependency for layer [onwheels_entrance_data](#onwheels_entrance_data)
- This layer is needed as dependency for layer [parking_spaces_disabled](#parking_spaces_disabled)
@ -27,10 +27,6 @@ Special builtin layer providing all walls and buildings. This layer is useful in
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)
- [entrance_info](#entrance_info)
- [Entrances](#entrances)
- [biggest_width](#biggest_width)
- [leftover-questions](#leftover-questions)
- [lod](#lod)
## Themes using this layer
@ -50,6 +46,7 @@ Special builtin layer providing all walls and buildings. This layer is useful in
- [stations](https://mapcomplete.org/stations)
- [surveillance](https://mapcomplete.org/surveillance)
- [walls_and_buildings](https://mapcomplete.org/walls_and_buildings)
- [wayside_shrines](https://mapcomplete.org/wayside_shrines)
## Basic tags for this layer
@ -62,26 +59,6 @@ Elements must match **any** of the following expressions:
## Supported attributes
### entrance_info
_This tagrendering has no question and is thus read-only_
*<h3>Entrances</h3>This building has {_entrances_count} entrances:{multi(_entrance_properties_with_width,An <a href='#&LBRACEid&RBRACE'>entrance</a> of &LBRACEcanonical&LPARENSwidth&RPARENS&RBRACE,)}{_entrances_count_without_width_count} entrances don't have width information yet*
- *No entrance has been marked* is shown if with <a href='https://wiki.openstreetmap.org/wiki/Key:_entrances_count' target='_blank'>_entrances_count</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:_entrances_count%3D0' target='_blank'>0</a>
- *None of the {_entrance_count} entrances have width information yet* is shown if with _entrances_count_without_width=_entrances_count
### biggest_width
_This tagrendering has no question and is thus read-only_
*The <a href='#{_biggest_width_id}'>entrance with the biggest width</a> is {canonical(_biggest_width)} wide*
This tagrendering is only visible in the popup if the following condition is met: _biggest_width_id~.+
### leftover-questions
_This tagrendering has no question and is thus read-only_
*{questions( ,)}*
### lod
_This tagrendering has no question and is thus read-only_

View file

@ -0,0 +1,200 @@
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
# wayside_shrine
Shrines are religious places that are dedicated to specific deities, saints and other figures of religious importance. Typically, the contain religious depictions and people frequently leave offerings at those places. Wayside shrines are small shrines that can be found next to a road or pathway and are frequented by travellers passing by.
- 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 `a wayside shrine mounted on a wall` snaps to this layer (wayside_shrine.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)
- [images](#images)
- [shrine_name](#shrine_name)
- [religion](#religion)
- [denomination_christian](#denomination_christian)
- [denomination_muslim](#denomination_muslim)
- [denomination_jewish](#denomination_jewish)
- [denomination_other](#denomination_other)
- [repeated](#repeated)
- [single_level](#single_level)
- [leftover-questions](#leftover-questions)
- [move-button](#move-button)
- [delete-button](#delete-button)
- [lod](#lod)
## Themes using this layer
- [personal](https://mapcomplete.org/personal)
- [wayside_shrines](https://mapcomplete.org/wayside_shrines)
## Presets
The following options to create new points are included:
- **a wayside shrine** which has the following tags:<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 wayside shrine mounted on a wall** which has the following tags:<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> (snaps to layers `walls_and_buildings`)
## Basic tags for this layer
Elements must match the expression **<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>**
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22historic%22%3D%22wayside_shrine%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/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) | [christian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian) [buddhist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist) [hindu](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dhindu) [jain](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djain) [jewish](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish) [muslim](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim) [pagan](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dpagan) [shinto](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dshinto) [sikh](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dsikh) [taoist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dtaoist) [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) | [catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic) [roman_catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [greek_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dgreek_orthodox) [russian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Drussian_orthodox) [serbian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dserbian_orthodox) [protestant](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dprotestant) [anglican](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Danglican) [adventist](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dadventist) [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) | [shia](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia) [sunni](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni) [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) | [conservative](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [hasidic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dhasidic) [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) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/level#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/level/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) |
### 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()}*
### shrine_name
The question is `What's the name of this shrine?`
*The name of this shrine 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 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 has labels
`shrine_questions`
### denomination_christian
The question is `What's the Christian denomination of the shrine?`
*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: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: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: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: religion!=christian & religion!=muslim & religion!=jewish & religion~.+
This tagrendering has labels
`shrine_questions`
### 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( ,)}*
### move-button
_This tagrendering has no question and is thus read-only_
*{move_button()}*
### delete-button
_This tagrendering has no question and is thus read-only_
*{delete_button()}*
### lod
_This tagrendering has no question and is thus read-only_
*{linked_data_from_website()}*
This tagrendering has labels
`added_by_default`
This document is autogenerated from [assets/layers/wayside_shrine/wayside_shrine.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/wayside_shrine/wayside_shrine.json)

View file

@ -645,9 +645,14 @@ A component to set the language of the user interface
Show a login button
| name | default | description |
-----|-----|----- |
| force | _undefined_ | Always show this button, even if logged in |
| message | _undefined_ | Message to display on the button |
#### Example usage of login_button
`{login_button()}`
`{login_button(,)}`
### logout

View file

@ -7,311 +7,402 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/advertising/icon.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "advertising",
"description": "The MapComplete theme Advertising has a layer Advertisement showing features with this tag"
"description": "Features with this tag are displayed by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "id",
"description": "Layer 'Advertisement' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Advertising') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Advertisement, Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Advertisement, Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#images",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "panoramax",
"description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Advertisement, Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#images",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "mapillary",
"description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Advertisement, Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#images",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "wikidata",
"description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Advertisement, Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#images",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Advertisement allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Advertisement, Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#images",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows and asks freeform values for key 'advertising' (in the mapcomplete.org theme 'Advertising')"
"description": "Values of `advertising` are shown with \"This is a {advertising}\" and can be updated. The question is \"Which type of advertising feature is this?\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=billboard with a fixed text, namely 'This is a billboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "billboard"
"value": "billboard",
"description": "advertising=billboard is displayed as \"This is a billboard\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/billboard.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=board with a fixed text, namely 'This is a board' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "board"
"value": "board",
"description": "advertising=board is displayed as \"This is a board\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/board.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=column with a fixed text, namely 'This is a column' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "column"
"value": "column",
"description": "advertising=column is displayed as \"This is a column\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/column.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=flag with a fixed text, namely 'This is a flag' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "flag"
"value": "flag",
"description": "advertising=flag is displayed as \"This is a flag\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/flag.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=poster_box with a fixed text, namely 'This is a poster Box' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "poster_box"
"value": "poster_box",
"description": "advertising=poster_box is displayed as \"This is a poster Box\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/poster_box.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=screen with a fixed text, namely 'This is a screen' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "screen"
"value": "screen",
"description": "advertising=screen is displayed as \"This is a screen\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/screen.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=sculpture with a fixed text, namely 'This is a sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "sculpture"
"value": "sculpture",
"description": "advertising=sculpture is displayed as \"This is a sculpture\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/sculpture.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=sign with a fixed text, namely 'This is a sign' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "sign"
"value": "sign",
"description": "advertising=sign is displayed as \"This is a sign\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=tarp with a fixed text, namely 'This is a tarp (a weatherproof piece of textile with an advertising message)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "tarp"
"value": "tarp",
"description": "advertising=tarp is displayed as \"This is a tarp (a weatherproof piece of textile with an advertising message)\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/tarp.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=totem with a fixed text, namely 'This is a totem' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "totem"
"value": "totem",
"description": "advertising=totem is displayed as \"This is a totem\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/totem.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=wall_painting with a fixed text, namely 'This is a wall painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "wall_painting"
"value": "wall_painting",
"description": "advertising=wall_painting is displayed as \"This is a wall painting\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/wall_painting.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=tilework with a fixed text, namely 'This is tilework - the advertisement is painted on tiles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "tilework"
"value": "tilework",
"description": "advertising=tilework is displayed as \"This is tilework - the advertisement is painted on tiles\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "advertising",
"description": "Layer 'Advertisement' shows advertising=relief with a fixed text, namely 'This is a relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "relief"
"value": "relief",
"description": "advertising=relief is displayed as \"This is a relief\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "animated",
"description": "Layer 'Advertisement' shows animated=no with a fixed text, namely '<b>Static</b>, always shows the same message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)",
"value": "no"
"value": "no",
"description": "animated=no is displayed as \"<b>Static</b>, always shows the same message\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#animated",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "animated",
"description": "Layer 'Advertisement' shows animated=digital_display with a fixed text, namely 'This object has a built-in <b>digital display</b> to show prices or some other message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)",
"value": "digital_display"
"value": "digital_display",
"description": "animated=digital_display is displayed as \"This object has a built-in <b>digital display</b> to show prices or some other message\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#animated",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "animated",
"description": "Layer 'Advertisement' shows animated=trivision_blades with a fixed text, namely '<b>Trivision</b> - the billboard consists of many triangular prisms which regularly rotate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)",
"value": "trivision_blades"
"value": "trivision_blades",
"description": "animated=trivision_blades is displayed as \"<b>Trivision</b> - the billboard consists of many triangular prisms which regularly rotate\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#animated",
"icon_url": "./assets/themes/advertising/trivision.svg"
},
{
"key": "animated",
"description": "Layer 'Advertisement' shows animated=winding_posters with a fixed text, namely '<b>Scrolling</b> posters' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)",
"value": "winding_posters"
"value": "winding_posters",
"description": "animated=winding_posters is displayed as \"<b>Scrolling</b> posters\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#animated",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "animated",
"description": "Layer 'Advertisement' shows animated=revolving with a fixed text, namely '<b>Rotates</b> on itself' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen & advertising!=flag & advertising!=tarp & advertising!=wall_painting & advertising!=sign & advertising!=board)",
"value": "revolving"
"value": "revolving",
"description": "animated=revolving is displayed as \"<b>Rotates</b> on itself\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#animated",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "luminous",
"description": "Layer 'Advertisement' shows luminous=neon with a fixed text, namely 'This is a neon-tube light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)",
"value": "neon"
"value": "neon",
"description": "luminous=neon is displayed as \"This is a neon-tube light\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "lit",
"description": "Layer 'Advertisement' shows lit=yes & luminous=yes with a fixed text, namely 'This object both emits light and is lighted by an external light source' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)",
"value": "yes"
"value": "yes",
"description": "lit=yes & luminous=yes is displayed as \"This object both emits light and is lighted by an external light source\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "luminous",
"description": "Layer 'Advertisement' shows lit=yes & luminous=yes with a fixed text, namely 'This object both emits light and is lighted by an external light source' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)",
"value": "yes"
"value": "yes",
"description": "lit=yes & luminous=yes is displayed as \"This object both emits light and is lighted by an external light source\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "luminous",
"description": "Layer 'Advertisement' shows luminous=yes with a fixed text, namely 'This object emits light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)",
"value": "yes"
"value": "yes",
"description": "luminous=yes is displayed as \"This object emits light\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "lit",
"description": "Layer 'Advertisement' shows lit=yes with a fixed text, namely 'This object is lit externally, e.g. by a spotlight or other lights' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)",
"value": "yes"
"value": "yes",
"description": "lit=yes is displayed as \"This object is lit externally, e.g. by a spotlight or other lights\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "lit",
"description": "Layer 'Advertisement' shows lit=no & luminous=no with a fixed text, namely 'This object does not emit light and is not lighted by externally' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)",
"value": "no"
"value": "no",
"description": "lit=no & luminous=no is displayed as \"This object does not emit light and is not lighted by externally\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "luminous",
"description": "Layer 'Advertisement' shows lit=no & luminous=no with a fixed text, namely 'This object does not emit light and is not lighted by externally' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=screen)",
"value": "no"
"value": "no",
"description": "lit=no & luminous=no is displayed as \"This object does not emit light and is not lighted by externally\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#luminous_or_lit_advertising",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "operator",
"description": "Layer 'Advertisement' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Advertising')"
"description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who operates this feature?\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#operator",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "message",
"description": "Layer 'Advertisement' shows message=commercial with a fixed text, namely 'Commercial message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "commercial"
"value": "commercial",
"description": "message=commercial is displayed as \"Commercial message\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "message",
"description": "Layer 'Advertisement' shows message=local with a fixed text, namely 'Local information' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "local"
"value": "local",
"description": "message=local is displayed as \"Local information\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "message",
"description": "Layer 'Advertisement' shows message=safety with a fixed text, namely 'Security information' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "safety"
"value": "safety",
"description": "message=safety is displayed as \"Security information\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "message",
"description": "Layer 'Advertisement' shows message=political with a fixed text, namely 'Electoral advertising' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "political"
"value": "political",
"description": "message=political is displayed as \"Electoral advertising\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "message",
"description": "Layer 'Advertisement' shows message=showbiz with a fixed text, namely 'Information related to theatre, concerts, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "showbiz"
"value": "showbiz",
"description": "message=showbiz is displayed as \"Information related to theatre, concerts, …\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "message",
"description": "Layer 'Advertisement' shows message=non_profit with a fixed text, namely 'Message from non-profit organizations' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "non_profit"
"value": "non_profit",
"description": "message=non_profit is displayed as \"Message from non-profit organizations\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "message",
"description": "Layer 'Advertisement' shows message=opinion with a fixed text, namely 'To express your opinion' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "opinion"
"value": "opinion",
"description": "message=opinion is displayed as \"To express your opinion\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "message",
"description": "Layer 'Advertisement' shows message=religion with a fixed text, namely 'Religious message' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "religion"
"value": "religion",
"description": "message=religion is displayed as \"Religious message\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "message",
"description": "Layer 'Advertisement' shows message=funding with a fixed text, namely 'Funding sign' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "funding"
"value": "funding",
"description": "message=funding is displayed as \"Funding sign\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "information",
"description": "Layer 'Advertisement' shows information=map with a fixed text, namely 'A map' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "map"
"value": "map",
"description": "information=map is displayed as \"A map\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#message_type",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "sides",
"description": "Layer 'Advertisement' shows sides=1 with a fixed text, namely 'This object has advertisements on a single side' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if _referencing_ways= & (advertising=poster_box | advertising=screen | advertising=billboard))",
"value": "1"
"value": "1",
"description": "sides=1 is displayed as \"This object has advertisements on a single side\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#Sides",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "sides",
"description": "Layer 'Advertisement' shows sides=2 with a fixed text, namely 'This object has advertisements on both sides' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') (This is only shown if _referencing_ways= & (advertising=poster_box | advertising=screen | advertising=billboard))",
"value": "2"
"value": "2",
"description": "sides=2 is displayed as \"This object has advertisements on both sides\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#Sides",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "ref",
"description": "Layer 'Advertisement' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Advertising') (This is only shown if advertising!=sign)"
"description": "Values of `ref` are shown with \"Reference number is {ref}\" and can be updated. The question is \"Wich is the reference number?\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#ref",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "historic",
"description": "Layer 'Advertisement' shows historic=advertising with a fixed text, namely 'This is a historic advertisement sign (an advertisement for a business that no longer exists or a very old sign with heritage value)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "advertising"
"value": "advertising",
"description": "historic=advertising is displayed as \"This is a historic advertisement sign (an advertisement for a business that no longer exists or a very old sign with heritage value)\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#historic",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "historic",
"description": "Layer 'Advertisement' shows historic= with a fixed text, namely 'This advertisement sign has no historic value (the business still exists and has no heritage value)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising') Picking this answer will delete the key historic.",
"value": ""
"description": "historic= is displayed as \"This advertisement sign has no historic value (the business still exists and has no heritage value)\" by layer Advertisement",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/advertising.md#historic",
"icon_url": "./assets/themes/advertising/sign.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Advertising has a layer Shelter showing features with this tag",
"value": "shelter"
},
{
"key": "id",
"description": "Layer 'Shelter' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Advertising') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Shelter allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "shelter",
"description": "Features with this tag are displayed by layer Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md",
"icon_url": "./assets/layers/shelter/shelter.svg"
},
{
"key": "shelter_type",
"description": "Layer 'Shelter' shows and asks freeform values for key 'shelter_type' (in the mapcomplete.org theme 'Advertising')"
"description": "Values of `shelter_type` are shown with \"Shelter type: {shelter_type}\" and can be updated. The question is \"What kind of shelter is this?\" by layer Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type",
"icon_url": "./assets/layers/shelter/shelter.svg"
},
{
"key": "shelter_type",
"description": "Layer 'Shelter' shows shelter_type=public_transport with a fixed text, namely 'This is a shelter at a public transport stop.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "public_transport"
"value": "public_transport",
"description": "shelter_type=public_transport is displayed as \"This is a shelter at a public transport stop.\" by layer Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type",
"icon_url": "./assets/layers/shelter/shelter.svg"
},
{
"key": "shelter_type",
"description": "Layer 'Shelter' shows shelter_type=picnic_shelter with a fixed text, namely 'This is a shelter protecting from rain at a picnic site.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "picnic_shelter"
"value": "picnic_shelter",
"description": "shelter_type=picnic_shelter is displayed as \"This is a shelter protecting from rain at a picnic site.\" by layer Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type",
"icon_url": "./assets/layers/shelter/shelter.svg"
},
{
"key": "shelter_type",
"description": "Layer 'Shelter' shows shelter_type=gazebo with a fixed text, namely 'This is a gazebo.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "gazebo"
"value": "gazebo",
"description": "shelter_type=gazebo is displayed as \"This is a gazebo.\" by layer Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type",
"icon_url": "./assets/layers/shelter/shelter.svg"
},
{
"key": "shelter_type",
"description": "Layer 'Shelter' shows shelter_type=weather_shelter with a fixed text, namely 'This is a small shelter, primarily intended for short breaks. Usually found in the mountains or alongside roads.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "weather_shelter"
"value": "weather_shelter",
"description": "shelter_type=weather_shelter is displayed as \"This is a small shelter, primarily intended for short breaks. Usually found in the mountains or alongside roads.\" by layer Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type",
"icon_url": "./assets/layers/shelter/shelter.svg"
},
{
"key": "shelter_type",
"description": "Layer 'Shelter' shows shelter_type=lean_to with a fixed text, namely 'This is a shed with 3 walls, primarily intended for camping.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "lean_to"
"value": "lean_to",
"description": "shelter_type=lean_to is displayed as \"This is a shed with 3 walls, primarily intended for camping.\" by layer Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type",
"icon_url": "./assets/layers/shelter/shelter.svg"
},
{
"key": "shelter_type",
"description": "Layer 'Shelter' shows shelter_type=pavilion with a fixed text, namely 'This is a pavilion' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "pavilion"
"value": "pavilion",
"description": "shelter_type=pavilion is displayed as \"This is a pavilion\" by layer Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type",
"icon_url": "./assets/layers/shelter/shelter.svg"
},
{
"key": "shelter_type",
"description": "Layer 'Shelter' shows shelter_type=basic_hut with a fixed text, namely 'This is a basic hut, providing basic shelter and sleeping facilities.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Advertising')",
"value": "basic_hut"
"value": "basic_hut",
"description": "shelter_type=basic_hut is displayed as \"This is a basic hut, providing basic shelter and sleeping facilities.\" by layer Shelter",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shelter.md#shelter_type",
"icon_url": "./assets/layers/shelter/shelter.svg"
}
]
}

View file

@ -7,170 +7,241 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/aed/aed.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "emergency",
"description": "The MapComplete theme Defibrillators has a layer Defibrillators showing features with this tag",
"value": "defibrillator"
"value": "defibrillator",
"description": "Features with this tag are displayed by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "id",
"description": "Layer 'Defibrillators' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Defibrillators') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#images",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "panoramax",
"description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#images",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "mapillary",
"description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#images",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "wikidata",
"description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#images",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Defibrillators allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#images",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "indoor",
"description": "Layer 'Defibrillators' shows indoor=yes with a fixed text, namely 'This defibrillator is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "yes"
"value": "yes",
"description": "indoor=yes is displayed as \"This defibrillator is located indoors\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_indoors",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "indoor",
"description": "Layer 'Defibrillators' shows indoor=no with a fixed text, namely 'This defibrillator is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "no"
"value": "no",
"description": "indoor=no is displayed as \"This defibrillator is located outdoors\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_indoors",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "access",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Defibrillators')"
"description": "Values of `access` are shown with \"Access is {access}\" and can be updated. The question is \"Is this defibrillator freely accessible?\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "access",
"description": "Layer 'Defibrillators' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"Publicly accessible\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "access",
"description": "Layer 'Defibrillators' shows access=public with a fixed text, namely 'Publicly accessible' (in the mapcomplete.org theme 'Defibrillators')",
"value": "public"
"value": "public",
"description": "access=public is displayed as \"Publicly accessible\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "access",
"description": "Layer 'Defibrillators' shows access=customers with a fixed text, namely 'Only accessible to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "customers"
"value": "customers",
"description": "access=customers is displayed as \"Only accessible to customers\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access",
"icon_url": "./assets/layers/barrier/barrier.svg"
},
{
"key": "access",
"description": "Layer 'Defibrillators' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accesible to staff, the owners, …)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "private"
"value": "private",
"description": "access=private is displayed as \"Not accessible to the general public (e.g. only accesible to staff, the owners, …)\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access",
"icon_url": "./assets/layers/barrier/barrier.svg"
},
{
"key": "access",
"description": "Layer 'Defibrillators' shows access=no with a fixed text, namely 'Not accessible, possibly only for professional use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "no"
"value": "no",
"description": "access=no is displayed as \"Not accessible, possibly only for professional use\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_access",
"icon_url": "./assets/layers/barrier/barrier.svg"
},
{
"key": "level",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Defibrillators') (This is only shown if indoor=yes)"
"description": "Values of `level` are shown with \"This defibrillator is on floor {level}\" and can be updated. The question is \"On which floor is this defibrillator located?\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_level",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "level",
"description": "Layer 'Defibrillators' shows level=0 with a fixed text, namely 'This defibrillator is on the <b>ground floor</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators') (This is only shown if indoor=yes)",
"value": "0"
"value": "0",
"description": "level=0 is displayed as \"This defibrillator is on the <b>ground floor</b>\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_level",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "level",
"description": "Layer 'Defibrillators' shows level=1 with a fixed text, namely 'This defibrillator is on the <b>first floor</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators') (This is only shown if indoor=yes)",
"value": "1"
"value": "1",
"description": "level=1 is displayed as \"This defibrillator is on the <b>first floor</b>\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_level",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "defibrillator:location",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location' (in the mapcomplete.org theme 'Defibrillators')"
"description": "Values of `defibrillator:location` are shown with \"<i>Extra information about the location (in the local language):</i><br/>{defibrillator:location}\" and can be updated. The question is \"Please give some explanation on where the defibrillator can be found (in the local language)\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_defibrillator_location",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "defibrillator:location:en",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:en' (in the mapcomplete.org theme 'Defibrillators')"
"description": "Values of `defibrillator:location:en` are shown with \"<i>Extra information about the location (in English):</i><br/>{defibrillator:location:en}\" and can be updated. The question is \"Please give some explanation on where the defibrillator can be found (in English)\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_defibrillator_location_en",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "defibrillator:location:fr",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:fr' (in the mapcomplete.org theme 'Defibrillators') (This is only shown if _country=be | defibrillator:location:fr~.+)"
"description": "Values of `defibrillator:location:fr` are shown with \"<i>Extra information about the location (in French):</i><br/>{defibrillator:location:fr}\" and can be updated. The question is \"Please give some explanation on where the defibrillator can be found (in French)\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_defibrillator_location_fr",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Defibrillators' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "designated"
"value": "designated",
"description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Defibrillators' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "yes"
"value": "yes",
"description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Defibrillators' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "limited"
"value": "limited",
"description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Defibrillators' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "no"
"value": "no",
"description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#wheelchair_access",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "ref",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Defibrillators')"
"description": "Values of `ref` are shown with \"Official identification number of the device: <i>{ref}</i>\" and can be updated. The question is \"What is the official identification number of the device? (if visible on device)\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_ref",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "email",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Defibrillators')"
"description": "Values of `email` are shown with \"Email for questions about this defibrillator: <a href='mailto:{email}'>{email}</a>\" and can be updated. The question is \"What is the email for questions about this defibrillator?\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_email",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "phone",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Defibrillators')"
"description": "Values of `phone` are shown with \"Telephone for questions about this defibrillator: <a href='tel:{phone}'>{phone}</a>\" and can be updated. The question is \"What is the phone number for questions about this defibrillator?\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_phone",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Defibrillators')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"At what times is this defibrillator available?\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Defibrillators' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators')",
"value": "24/7"
"value": "24/7",
"description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7",
"icon_url": "./assets/layers/questions/open24_7.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Defibrillators' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Defibrillators')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Defibrillators' shows opening_hours=unknown with a fixed text, namely 'Not accessible 24/7, but the exact hours are unknown' (in the mapcomplete.org theme 'Defibrillators')",
"value": "unknown"
"value": "unknown",
"description": "opening_hours=unknown is displayed as \"Not accessible 24/7, but the exact hours are unknown\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#opening_hours_24_7",
"icon_url": "./assets/layers/barrier/barrier.svg"
},
{
"key": "description",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Defibrillators')"
"description": "Values of `description` are shown with \"Additional information: {description}\" and can be updated. The question is \"Is there any useful information for users that you haven't been able to describe above? (leave blank if no)\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_description",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "survey:date",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Defibrillators')"
"description": "Values of `survey:date` are shown with \"This defibrillator was last surveyed on {survey:date}\" and can be updated. The question is \"When was this defibrillator last surveyed?\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_survey_date",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "survey:date",
"description": "Layer 'Defibrillators' shows survey:date= with a fixed text, namely 'Checked today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Defibrillators') Picking this answer will delete the key survey:date.",
"value": ""
"description": "survey:date= is displayed as \"Checked today!\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_survey_date",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
},
{
"key": "fixme",
"description": "Layer 'Defibrillators' shows and asks freeform values for key 'fixme' (in the mapcomplete.org theme 'Defibrillators')"
"description": "Values of `fixme` are shown with \"Extra information for OpenStreetMap experts: {fixme}\" and can be updated. The question is \"Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)\" by layer Defibrillators",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/defibrillator.md#defibrillator_fixme",
"icon_url": "./assets/layers/defibrillator/defibrillator.svg"
}
]
}

View file

@ -7,235 +7,325 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/architecture/architecture.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "building",
"description": "The MapComplete theme Buildings with an architectural style has a layer Buildings showing features with this tag"
"description": "Features with this tag are displayed by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "The MapComplete theme Buildings with an architectural style has a layer Buildings showing features with this tag"
"description": "Features with this tag are displayed by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md",
"icon_url": "circle"
},
{
"key": "id",
"description": "Layer 'Buildings' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Buildings with an architectural style') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows and asks freeform values for key 'building:architecture' (in the mapcomplete.org theme 'Buildings with an architectural style')"
"description": "Values of `building:architecture` are shown with \"{building:architecture}\" and can be updated. The question is \"What is the architectural style of this building?\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=islamic with a fixed text, namely 'Islamic architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "islamic"
"value": "islamic",
"description": "building:architecture=islamic is displayed as \"Islamic architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=mamluk with a fixed text, namely 'Mamluk architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "mamluk"
"value": "mamluk",
"description": "building:architecture=mamluk is displayed as \"Mamluk architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=romanesque with a fixed text, namely 'Romanesque architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "romanesque"
"value": "romanesque",
"description": "building:architecture=romanesque is displayed as \"Romanesque architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=gothic with a fixed text, namely 'Gothic architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "gothic"
"value": "gothic",
"description": "building:architecture=gothic is displayed as \"Gothic architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=renaissance with a fixed text, namely 'Renaissance architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "renaissance"
"value": "renaissance",
"description": "building:architecture=renaissance is displayed as \"Renaissance architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=mannerism with a fixed text, namely 'Mannerism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "mannerism"
"value": "mannerism",
"description": "building:architecture=mannerism is displayed as \"Mannerism\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=ottoman with a fixed text, namely 'Ottoman architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "ottoman"
"value": "ottoman",
"description": "building:architecture=ottoman is displayed as \"Ottoman architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=baroque with a fixed text, namely 'Baroque architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "baroque"
"value": "baroque",
"description": "building:architecture=baroque is displayed as \"Baroque architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=rococo with a fixed text, namely 'Rococo' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "rococo"
"value": "rococo",
"description": "building:architecture=rococo is displayed as \"Rococo\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=empire with a fixed text, namely 'Empire style' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "empire"
"value": "empire",
"description": "building:architecture=empire is displayed as \"Empire style\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=moorish revival with a fixed text, namely 'Moorish Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "moorish revival"
"value": "moorish revival",
"description": "building:architecture=moorish revival is displayed as \"Moorish Revival\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=neoclassicism with a fixed text, namely 'Neoclassical architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "neoclassicism"
"value": "neoclassicism",
"description": "building:architecture=neoclassicism is displayed as \"Neoclassical architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=georgian with a fixed text, namely 'Georgian architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "georgian"
"value": "georgian",
"description": "building:architecture=georgian is displayed as \"Georgian architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=victorian with a fixed text, namely 'Victorian architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "victorian"
"value": "victorian",
"description": "building:architecture=victorian is displayed as \"Victorian architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=historicism with a fixed text, namely 'Historicism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "historicism"
"value": "historicism",
"description": "building:architecture=historicism is displayed as \"Historicism\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=neo-romanesque with a fixed text, namely 'Romanesque Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "neo-romanesque"
"value": "neo-romanesque",
"description": "building:architecture=neo-romanesque is displayed as \"Romanesque Revival\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=neo-byzantine with a fixed text, namely 'Byzantine Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "neo-byzantine"
"value": "neo-byzantine",
"description": "building:architecture=neo-byzantine is displayed as \"Byzantine Revival\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=neo-gothic with a fixed text, namely 'Gothic Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "neo-gothic"
"value": "neo-gothic",
"description": "building:architecture=neo-gothic is displayed as \"Gothic Revival\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=neo-renaissance with a fixed text, namely 'Renaissance Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "neo-renaissance"
"value": "neo-renaissance",
"description": "building:architecture=neo-renaissance is displayed as \"Renaissance Revival\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=neo-baroque with a fixed text, namely 'Baroque Revival' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "neo-baroque"
"value": "neo-baroque",
"description": "building:architecture=neo-baroque is displayed as \"Baroque Revival\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=art_nouveau with a fixed text, namely 'Art Nouveau' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "art_nouveau"
"value": "art_nouveau",
"description": "building:architecture=art_nouveau is displayed as \"Art Nouveau\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=eclectic with a fixed text, namely 'Eclecticism in architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "eclectic"
"value": "eclectic",
"description": "building:architecture=eclectic is displayed as \"Eclecticism in architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=functionalism with a fixed text, namely 'Functionalism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "functionalism"
"value": "functionalism",
"description": "building:architecture=functionalism is displayed as \"Functionalism\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=cubism with a fixed text, namely 'Cubism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "cubism"
"value": "cubism",
"description": "building:architecture=cubism is displayed as \"Cubism\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=new_objectivity with a fixed text, namely 'New Objectivity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "new_objectivity"
"value": "new_objectivity",
"description": "building:architecture=new_objectivity is displayed as \"New Objectivity\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=art_deco with a fixed text, namely 'Art Deco' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "art_deco"
"value": "art_deco",
"description": "building:architecture=art_deco is displayed as \"Art Deco\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=modern with a fixed text, namely 'Modern architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "modern"
"value": "modern",
"description": "building:architecture=modern is displayed as \"Modern architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=amsterdam_school with a fixed text, namely 'Amsterdam School' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "amsterdam_school"
"value": "amsterdam_school",
"description": "building:architecture=amsterdam_school is displayed as \"Amsterdam School\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=international_style with a fixed text, namely 'International Style' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "international_style"
"value": "international_style",
"description": "building:architecture=international_style is displayed as \"International Style\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=constructivism with a fixed text, namely 'Constructivism' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "constructivism"
"value": "constructivism",
"description": "building:architecture=constructivism is displayed as \"Constructivism\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=stalinist_neoclassicism with a fixed text, namely 'Stalinist architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "stalinist_neoclassicism"
"value": "stalinist_neoclassicism",
"description": "building:architecture=stalinist_neoclassicism is displayed as \"Stalinist architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=brutalist with a fixed text, namely 'Brutalist architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "brutalist"
"value": "brutalist",
"description": "building:architecture=brutalist is displayed as \"Brutalist architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=postmodern with a fixed text, namely 'Postmodern architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "postmodern"
"value": "postmodern",
"description": "building:architecture=postmodern is displayed as \"Postmodern architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "building:architecture",
"description": "Layer 'Buildings' shows building:architecture=contemporary with a fixed text, namely 'Contemporary architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "contemporary"
"value": "contemporary",
"description": "building:architecture=contemporary is displayed as \"Contemporary architecture\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#architecture",
"icon_url": "circle"
},
{
"key": "construction_date",
"description": "Layer 'Buildings' shows and asks freeform values for key 'construction_date' (in the mapcomplete.org theme 'Buildings with an architectural style')"
"description": "Values of `construction_date` are shown with \"Built in <b>{construction_date}</b>\" and can be updated. The question is \"When was this built?\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#construction_date",
"icon_url": "circle"
},
{
"key": "addr:street",
"description": "Layer 'Buildings' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": ""
"description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#header",
"icon_url": "circle"
},
{
"key": "addr:unit",
"description": "Layer 'Buildings' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": ""
"description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#header",
"icon_url": "circle"
},
{
"key": "addr:housenumber",
"description": "Layer 'Buildings' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": ""
"description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#header",
"icon_url": "circle"
},
{
"key": "addr:housenumber",
"description": "Layer 'Buildings' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Buildings with an architectural style')"
"description": "Values of `addr:housenumber` are shown with \"The house number is <b>{addr:housenumber}</b>\" and can be updated. The question is \"What is the number of this house?\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#housenumber",
"icon_url": "circle"
},
{
"key": "nohousenumber",
"description": "Layer 'Buildings' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style')",
"value": "yes"
"value": "yes",
"description": "nohousenumber=yes is displayed as \"This building has no house number\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#housenumber",
"icon_url": "circle"
},
{
"key": "addr:street",
"description": "Layer 'Buildings' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Buildings with an architectural style') (This is only shown if nohousenumber!~^(yes)$)"
"description": "Values of `addr:street` are shown with \"This address is in street <b>{addr:street}</b>\" and can be updated. The question is \"What street is this address located in?\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#street",
"icon_url": "circle"
},
{
"key": "addr:unit",
"description": "Layer 'Buildings' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Buildings with an architectural style')"
"description": "Values of `addr:unit` are shown with \"The unit number is <b>{addr:unit}</b>\" and can be updated. The question is \"What is the unit number or letter?\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#unit",
"icon_url": "circle"
},
{
"key": "addr:unit",
"description": "Layer 'Buildings' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Buildings with an architectural style') Picking this answer will delete the key addr:unit.",
"value": ""
"description": "addr:unit= is displayed as \"No unit number\" by layer Buildings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/buildings_with_architecture.md#unit",
"icon_url": "circle"
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -7,402 +7,485 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/atm/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme ATM Machines has a layer ATMs showing features with this tag",
"value": "atm"
"value": "atm",
"description": "Features with this tag are displayed by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "id",
"description": "Layer 'ATMs' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers ATMs, Banks, Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'ATMs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers ATMs, Banks, Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#images",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "panoramax",
"description": "The layer 'ATMs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers ATMs, Banks, Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#images",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "mapillary",
"description": "The layer 'ATMs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers ATMs, Banks, Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#images",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "wikidata",
"description": "The layer 'ATMs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers ATMs, Banks, Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#images",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "wikipedia",
"description": "The layer 'ATMs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers ATMs, Banks, Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#images",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "brand",
"description": "Layer 'ATMs' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'ATM Machines')"
"description": "Values of `brand` are shown with \"The brand of this ATM is {brand}\" and can be updated. The question is \"What brand is this ATM?\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#brand",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "operator",
"description": "Layer 'ATMs' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if amenity!=bank)"
"description": "Values of `operator` are shown with \"The ATM is operated by {operator}\" and can be updated. The question is \"What company operates this ATM?\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#operator",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "opening_hours",
"description": "Layer 'ATMs' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'ATM Machines')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#opening_hours_24_7",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "opening_hours",
"description": "Layer 'ATMs' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "24/7"
"value": "24/7",
"description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#opening_hours_24_7",
"icon_url": "./assets/layers/questions/open24_7.svg"
},
{
"key": "opening_hours",
"description": "Layer 'ATMs' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'ATM Machines')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers ATMs, Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#opening_hours_24_7",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "cash_out",
"description": "Layer 'ATMs' shows cash_out= with a fixed text, namely 'You can withdraw cash from this ATM' (in the mapcomplete.org theme 'ATM Machines') Picking this answer will delete the key cash_out.",
"value": ""
"description": "cash_out= is displayed as \"You can withdraw cash from this ATM\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "cash_out",
"description": "Layer 'ATMs' shows cash_out=yes with a fixed text, namely 'You can withdraw cash from this ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "yes"
"value": "yes",
"description": "cash_out=yes is displayed as \"You can withdraw cash from this ATM\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "cash_out",
"description": "Layer 'ATMs' shows cash_out=no with a fixed text, namely 'You cannot withdraw cash from this ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "no"
"value": "no",
"description": "cash_out=no is displayed as \"You cannot withdraw cash from this ATM\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "cash_in",
"description": "Layer 'ATMs' shows cash_in= with a fixed text, namely 'You probably cannot deposit cash into this ATM' (in the mapcomplete.org theme 'ATM Machines') Picking this answer will delete the key cash_in.",
"value": ""
"description": "cash_in= is displayed as \"You probably cannot deposit cash into this ATM\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_in",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "cash_in",
"description": "Layer 'ATMs' shows cash_in=yes with a fixed text, namely 'You can deposit cash into this ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "yes"
"value": "yes",
"description": "cash_in=yes is displayed as \"You can deposit cash into this ATM\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_in",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "cash_in",
"description": "Layer 'ATMs' shows cash_in=no with a fixed text, namely 'You cannot deposit cash into this ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "no"
"value": "no",
"description": "cash_in=no is displayed as \"You cannot deposit cash into this ATM\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_in",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "cash_out:notes:denominations",
"description": "Layer 'ATMs' shows cash_out:notes:denominations=5 EUR with a fixed text, namely '5 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
"value": "5 EUR"
"value": "5 EUR",
"description": "cash_out:notes:denominations=5 EUR is displayed as \"5 euro notes can be withdrawn\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/5euro.svg"
},
{
"key": "cash_out:notes:denominations",
"description": "Layer 'ATMs' shows cash_out:notes:denominations=10 EUR with a fixed text, namely '10 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
"value": "10 EUR"
"value": "10 EUR",
"description": "cash_out:notes:denominations=10 EUR is displayed as \"10 euro notes can be withdrawn\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/10euro.svg"
},
{
"key": "cash_out:notes:denominations",
"description": "Layer 'ATMs' shows cash_out:notes:denominations=20 EUR with a fixed text, namely '20 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
"value": "20 EUR"
"value": "20 EUR",
"description": "cash_out:notes:denominations=20 EUR is displayed as \"20 euro notes can be withdrawn\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/20euro.svg"
},
{
"key": "cash_out:notes:denominations",
"description": "Layer 'ATMs' shows cash_out:notes:denominations=50 EUR with a fixed text, namely '50 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
"value": "50 EUR"
"value": "50 EUR",
"description": "cash_out:notes:denominations=50 EUR is displayed as \"50 euro notes can be withdrawn\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/50euro.svg"
},
{
"key": "cash_out:notes:denominations",
"description": "Layer 'ATMs' shows cash_out:notes:denominations=100 EUR with a fixed text, namely '100 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
"value": "100 EUR"
"value": "100 EUR",
"description": "cash_out:notes:denominations=100 EUR is displayed as \"100 euro notes can be withdrawn\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/100euro.svg"
},
{
"key": "cash_out:notes:denominations",
"description": "Layer 'ATMs' shows cash_out:notes:denominations=200 EUR with a fixed text, namely '200 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
"value": "200 EUR"
"value": "200 EUR",
"description": "cash_out:notes:denominations=200 EUR is displayed as \"200 euro notes can be withdrawn\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/200euro.svg"
},
{
"key": "cash_out:notes:denominations",
"description": "Layer 'ATMs' shows cash_out:notes:denominations=500 EUR with a fixed text, namely '500 euro notes can be withdrawn' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if (cash_out= | cash_out=yes) & (_currency= | _currency~^(.*EUR.*)$))",
"value": "500 EUR"
"value": "500 EUR",
"description": "cash_out:notes:denominations=500 EUR is displayed as \"500 euro notes can be withdrawn\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#cash_out_denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/500euro.svg"
},
{
"key": "speech_output",
"description": "Layer 'ATMs' shows speech_output=yes with a fixed text, namely 'This ATM has speech output, usually available through a headphone jack' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "yes"
"value": "yes",
"description": "speech_output=yes is displayed as \"This ATM has speech output, usually available through a headphone jack\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#speech_output",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "speech_output",
"description": "Layer 'ATMs' shows speech_output=no with a fixed text, namely 'This ATM does not have speech output' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "no"
"value": "no",
"description": "speech_output=no is displayed as \"This ATM does not have speech output\" by layer ATMs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/atm.md#speech_output",
"icon_url": "./assets/layers/atm/atm.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme ATM Machines has a layer Banks showing features with this tag",
"value": "bank"
"value": "bank",
"description": "Features with this tag are displayed by layer Banks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/banks_with_atm.md",
"icon_url": "./assets/layers/bank/bank.svg"
},
{
"key": "atm",
"description": "The MapComplete theme ATM Machines has a layer Banks showing features with this tag",
"value": "yes"
},
{
"key": "id",
"description": "Layer 'Banks' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Banks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Banks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Banks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Banks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Banks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "yes",
"description": "Features with this tag are displayed by layers Banks, Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/banks_with_atm.md",
"icon_url": "./assets/layers/bank/bank.svg"
},
{
"key": "atm",
"description": "Layer 'Banks' shows atm=yes with a fixed text, namely 'This bank has an ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "yes"
"value": "yes",
"description": "atm=yes is displayed as \"This bank has an ATM\" by layer Banks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/banks_with_atm.md#has_atm",
"icon_url": "./assets/layers/bank/bank.svg"
},
{
"key": "atm",
"description": "Layer 'Banks' shows atm=no with a fixed text, namely 'This bank does <b>not</b> have an ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "no"
"value": "no",
"description": "atm=no is displayed as \"This bank does <b>not</b> have an ATM\" by layer Banks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/banks_with_atm.md#has_atm",
"icon_url": "./assets/layers/bank/bank.svg"
},
{
"key": "atm",
"description": "Layer 'Banks' shows atm=separate with a fixed text, namely 'This bank does have an ATM, but it is mapped as a different icon' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "separate"
"value": "separate",
"description": "atm=separate is displayed as \"This bank does have an ATM, but it is mapped as a different icon\" by layer Banks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/banks_with_atm.md#has_atm",
"icon_url": "./assets/layers/bank/bank.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme ATM Machines has a layer Post offices showing features with this tag",
"value": "post_office"
"value": "post_office",
"description": "Features with this tag are displayed by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office",
"description": "The MapComplete theme ATM Machines has a layer Post offices showing features with this tag",
"value": "post_partner"
},
{
"key": "atm",
"description": "The MapComplete theme ATM Machines has a layer Post offices showing features with this tag",
"value": "yes"
},
{
"key": "id",
"description": "Layer 'Post offices' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Post offices allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "post_partner",
"description": "Features with this tag are displayed by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "phone",
"description": "Layer 'Post offices' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'ATM Machines')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Post offices' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'ATM Machines')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "email",
"description": "Layer 'Post offices' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'ATM Machines')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Post offices' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'ATM Machines')"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Post offices' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'ATM Machines')"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "website",
"description": "Layer 'Post offices' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'ATM Machines')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Post offices' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'ATM Machines')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Post offices' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'ATM Machines')"
},
{
"key": "opening_hours",
"description": "Layer 'Post offices' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'ATM Machines')",
"value": "closed"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours for this post office?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#opening_hours",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office",
"description": "Layer 'Post offices' shows post_office=post_partner with a fixed text, namely 'This shop is a post partner' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if amenity!=post_office)",
"value": "post_partner"
"value": "post_partner",
"description": "post_office=post_partner is displayed as \"This shop is a post partner\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#post_partner",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office",
"description": "Layer 'Post offices' shows post_office= with a fixed text, namely 'This shop is not a post partner' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') Picking this answer will delete the key post_office. (This is only shown if amenity!=post_office)",
"value": ""
"description": "post_office= is displayed as \"This shop is not a post partner\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#post_partner",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "brand",
"description": "Layer 'Post offices' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if amenity=post_office)"
"description": "Values of `brand` are shown with \"This is a {brand} post office\" and can be updated. The question is \"To which brand does this post office belong?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#post_offic_brand",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:brand",
"description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:brand' (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)"
"description": "Values of `post_office:brand` are shown with \"This location offers services for {post_office:brand}\" and can be updated. The question is \"For which brand does this location offer services?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:brand",
"description": "Layer 'Post offices' shows post_office:brand=DHL with a fixed text, namely 'This location offers services for DHL' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)",
"value": "DHL"
"value": "DHL",
"description": "post_office:brand=DHL is displayed as \"This location offers services for DHL\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:brand",
"description": "Layer 'Post offices' shows post_office:brand=DPD with a fixed text, namely 'This location offers services for DPD' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)",
"value": "DPD"
"value": "DPD",
"description": "post_office:brand=DPD is displayed as \"This location offers services for DPD\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:brand",
"description": "Layer 'Post offices' shows post_office:brand=GLS with a fixed text, namely 'This location offers services for GLS' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)",
"value": "GLS"
"value": "GLS",
"description": "post_office:brand=GLS is displayed as \"This location offers services for GLS\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:brand",
"description": "Layer 'Post offices' shows post_office:brand=UPS with a fixed text, namely 'This location offers services for UPS' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)",
"value": "UPS"
"value": "UPS",
"description": "post_office:brand=UPS is displayed as \"This location offers services for UPS\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:brand",
"description": "Layer 'Post offices' shows post_office:brand=DHL Paketshop with a fixed text, namely 'This location is a DHL Paketshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)",
"value": "DHL Paketshop"
"value": "DHL Paketshop",
"description": "post_office:brand=DHL Paketshop is displayed as \"This location is a DHL Paketshop\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:brand",
"description": "Layer 'Post offices' shows post_office:brand=Hermes PaketShop with a fixed text, namely 'This location is a Hermes PaketShop' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)",
"value": "Hermes PaketShop"
"value": "Hermes PaketShop",
"description": "post_office:brand=Hermes PaketShop is displayed as \"This location is a Hermes PaketShop\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:brand",
"description": "Layer 'Post offices' shows post_office:brand=PostNL with a fixed text, namely 'This location is a PostNL-point' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)",
"value": "PostNL"
"value": "PostNL",
"description": "post_office:brand=PostNL is displayed as \"This location is a PostNL-point\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:brand",
"description": "Layer 'Post offices' shows post_office:brand=bpost with a fixed text, namely 'This location offers services for bpost' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines') (This is only shown if post_office=post_partner)",
"value": "bpost"
"value": "bpost",
"description": "post_office:brand=bpost is displayed as \"This location offers services for bpost\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#partner_brand",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:letter_from",
"description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:letter_from' (in the mapcomplete.org theme 'ATM Machines')"
"description": "Values of `post_office:letter_from` are shown with \"You can post letters with these companies: {post_office:letter_from}\" and can be updated. The question is \"Can you post a letter here?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#letter_from",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:letter_from",
"description": "Layer 'Post offices' shows post_office:letter_from=yes with a fixed text, namely 'You can post letters here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "yes"
"value": "yes",
"description": "post_office:letter_from=yes is displayed as \"You can post letters here\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#letter_from",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:letter_from",
"description": "Layer 'Post offices' shows post_office:letter_from=no with a fixed text, namely 'You can't post letters here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "no"
"value": "no",
"description": "post_office:letter_from=no is displayed as \"You can't post letters here\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#letter_from",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:parcel_from",
"description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:parcel_from' (in the mapcomplete.org theme 'ATM Machines')"
"description": "Values of `post_office:parcel_from` are shown with \"You can post parcels with these companies: {post_office:parcel_from}\" and can be updated. The question is \"Can you send a parcel here?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_from",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:parcel_from",
"description": "Layer 'Post offices' shows post_office:parcel_from=yes with a fixed text, namely 'You can send parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "yes"
"value": "yes",
"description": "post_office:parcel_from=yes is displayed as \"You can send parcels here\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_from",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:parcel_from",
"description": "Layer 'Post offices' shows post_office:parcel_from=no with a fixed text, namely 'You can't send parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "no"
"value": "no",
"description": "post_office:parcel_from=no is displayed as \"You can't send parcels here\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_from",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:parcel_pickup",
"description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:parcel_pickup' (in the mapcomplete.org theme 'ATM Machines')"
"description": "Values of `post_office:parcel_pickup` are shown with \"You can pick up parcels from these companies: {post_office:parcel_pickup}\" and can be updated. The question is \"Can you pick up missed parcels here?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_pickup",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:parcel_pickup",
"description": "Layer 'Post offices' shows post_office:parcel_pickup=yes with a fixed text, namely 'You can pick up missed parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "yes"
"value": "yes",
"description": "post_office:parcel_pickup=yes is displayed as \"You can pick up missed parcels here\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_pickup",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:parcel_pickup",
"description": "Layer 'Post offices' shows post_office:parcel_pickup=no with a fixed text, namely 'You can't pick up missed parcels here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "no"
"value": "no",
"description": "post_office:parcel_pickup=no is displayed as \"You can't pick up missed parcels here\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_pickup",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:parcel_to",
"description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:parcel_to' (in the mapcomplete.org theme 'ATM Machines')"
"description": "Values of `post_office:parcel_to` are shown with \"You can send parcels to here for pickup with these companies: {post_office:parcel_to}\" and can be updated. The question is \"Can you send parcels to here for pickup?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_to",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:parcel_to",
"description": "Layer 'Post offices' shows post_office:parcel_to=yes with a fixed text, namely 'You can send parcels to here for pickup' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "yes"
"value": "yes",
"description": "post_office:parcel_to=yes is displayed as \"You can send parcels to here for pickup\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_to",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:parcel_to",
"description": "Layer 'Post offices' shows post_office:parcel_to=no with a fixed text, namely 'You can't send parcels to here for pickup' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "no"
"value": "no",
"description": "post_office:parcel_to=no is displayed as \"You can't send parcels to here for pickup\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#parcel_to",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:stamps",
"description": "Layer 'Post offices' shows and asks freeform values for key 'post_office:stamps' (in the mapcomplete.org theme 'ATM Machines')"
"description": "Values of `post_office:stamps` are shown with \"You can buy stamps from companies: {post_office:stamps}\" and can be updated. The question is \"Can you buy stamps here?\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#stamps",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:stamps",
"description": "Layer 'Post offices' shows post_office:stamps=yes with a fixed text, namely 'You can buy stamps here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "yes"
"value": "yes",
"description": "post_office:stamps=yes is displayed as \"You can buy stamps here\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#stamps",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "post_office:stamps",
"description": "Layer 'Post offices' shows post_office:stamps=no with a fixed text, namely 'You can't buy stamps here' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "no"
"value": "no",
"description": "post_office:stamps=no is displayed as \"You can't buy stamps here\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#stamps",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "atm",
"description": "Layer 'Post offices' shows atm=yes with a fixed text, namely 'This post office has an ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "yes"
"value": "yes",
"description": "atm=yes is displayed as \"This post office has an ATM\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#has_atm",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "atm",
"description": "Layer 'Post offices' shows atm=no with a fixed text, namely 'This post office does <b>not</b> have an ATM' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "no"
"value": "no",
"description": "atm=no is displayed as \"This post office does <b>not</b> have an ATM\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#has_atm",
"icon_url": "./assets/layers/postoffices/post_office.svg"
},
{
"key": "atm",
"description": "Layer 'Post offices' shows atm=separate with a fixed text, namely 'This post office does have an ATM, but it is mapped as a different icon' and allows to pick this as a default answer (in the mapcomplete.org theme 'ATM Machines')",
"value": "separate"
"value": "separate",
"description": "atm=separate is displayed as \"This post office does have an ATM, but it is mapped as a different icon\" by layer Post offices",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/post_offices_with_atm.md#has_atm",
"icon_url": "./assets/layers/postoffices/post_office.svg"
}
]
}

View file

@ -7,436 +7,543 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/benches/bench_poi.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "leisure",
"description": "The MapComplete theme Benches has a layer Picnic tables showing features with this tag",
"value": "picnic_table"
"value": "picnic_table",
"description": "Features with this tag are displayed by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "id",
"description": "Layer 'Picnic tables' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Benches') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Picnic tables, Benches, Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Picnic tables, Benches, Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#images",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "panoramax",
"description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Picnic tables, Benches, Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#images",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "mapillary",
"description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Picnic tables, Benches, Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#images",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "wikidata",
"description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Picnic tables, Benches, Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#images",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Picnic tables allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Picnic tables, Benches, Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#images",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "level",
"description": "Layer 'Picnic tables' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Benches') (This is only shown if repeat_on=)"
"description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "location",
"description": "Layer 'Picnic tables' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Benches') (This is only shown if repeat_on=)",
"value": "underground"
"value": "underground",
"description": "location=underground is displayed as \"Located underground\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "level",
"description": "Layer 'Picnic tables' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if repeat_on=)",
"value": "0"
"value": "0",
"description": "level=0 is displayed as \"Located on the ground floor\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "level",
"description": "Layer 'Picnic tables' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Benches') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
"value": ""
"description": "level= is displayed as \"Located on the ground floor\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "level",
"description": "Layer 'Picnic tables' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if repeat_on=)",
"value": "1"
"value": "1",
"description": "level=1 is displayed as \"Located on the first floor\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "level",
"description": "Layer 'Picnic tables' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if repeat_on=)",
"value": "-1"
"value": "-1",
"description": "level=-1 is displayed as \"Located on the first basement level\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#single_level",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "material",
"description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Benches')"
"description": "Values of `material` are shown with \"This picnic table is made of {material}\" and can be updated. The question is \"What material is this picnic table made of?\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "material",
"description": "Layer 'Picnic tables' shows material=wood with a fixed text, namely 'This is a wooden picnic table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "wood"
"value": "wood",
"description": "material=wood is displayed as \"This is a wooden picnic table\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "material",
"description": "Layer 'Picnic tables' shows material=concrete with a fixed text, namely 'This is a concrete picnic table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "concrete"
"value": "concrete",
"description": "material=concrete is displayed as \"This is a concrete picnic table\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "material",
"description": "Layer 'Picnic tables' shows material=plastic with a fixed text, namely 'This picnic table is made from (recycled) plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "plastic"
"value": "plastic",
"description": "material=plastic is displayed as \"This picnic table is made from (recycled) plastic\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "material",
"description": "Layer 'Picnic tables' shows material=metal with a fixed text, namely 'This picnic table is made from metal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "metal"
"value": "metal",
"description": "material=metal is displayed as \"This picnic table is made from metal\" by layer Picnic tables",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/picnic_table.md#picnic_table_material",
"icon_url": "./assets/layers/picnic_table/picnic_table.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Benches has a layer Benches showing features with this tag",
"value": "bench"
},
{
"key": "id",
"description": "Layer 'Benches' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Benches') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Benches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "bench",
"description": "Features with this tag are displayed by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "backrest",
"description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "yes"
"value": "yes",
"description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest",
"icon_url": "./assets/layers/bench/two_sided.svg"
},
{
"key": "two_sided",
"description": "Layer 'Benches' shows backrest=yes & two_sided=yes with a fixed text, namely 'This bench is two-sided and shares the backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "yes"
"value": "yes",
"description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest",
"icon_url": "./assets/layers/bench/two_sided.svg"
},
{
"key": "backrest",
"description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'This bench does have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "yes"
"value": "yes",
"description": "backrest=yes is displayed as \"This bench does have a backrest\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest",
"icon_url": "./assets/layers/bench/one_sided.svg"
},
{
"key": "backrest",
"description": "Layer 'Benches' shows backrest=no with a fixed text, namely 'This bench does <b>not</b> have a backrest' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "no"
"value": "no",
"description": "backrest=no is displayed as \"This bench does <b>not</b> have a backrest\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_backrest",
"icon_url": "./assets/layers/bench/no_backrest.svg"
},
{
"key": "armrest",
"description": "Layer 'Benches' shows armrest=yes with a fixed text, namely 'This bench does have one or more armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "yes"
"value": "yes",
"description": "armrest=yes is displayed as \"This bench does have one or more armrests\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_armrest",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "armrest",
"description": "Layer 'Benches' shows armrest=no with a fixed text, namely 'This bench does <b>not</b> have any armrests' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "no"
"value": "no",
"description": "armrest=no is displayed as \"This bench does <b>not</b> have any armrests\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_armrest",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "seats",
"description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Benches')"
"description": "Values of `seats` are shown with \"This bench has {seats} seats\" and can be updated. The question is \"How many seats does this bench have?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_seats",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "seats:separated",
"description": "Layer 'Benches' shows seats:separated=no with a fixed text, namely 'This bench does not have separated seats' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "no"
"value": "no",
"description": "seats:separated=no is displayed as \"This bench does not have separated seats\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_seats",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "material",
"description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Benches')"
"description": "Values of `material` are shown with \"Material: {material}\" and can be updated. The question is \"What is the bench (seating) made from?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "material",
"description": "Layer 'Benches' shows material=wood with a fixed text, namely 'The seating is made from wood' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "wood"
"value": "wood",
"description": "material=wood is displayed as \"The seating is made from wood\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "material",
"description": "Layer 'Benches' shows material=metal with a fixed text, namely 'The seating is made from metal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "metal"
"value": "metal",
"description": "material=metal is displayed as \"The seating is made from metal\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "material",
"description": "Layer 'Benches' shows material=stone with a fixed text, namely 'The seating is made from stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "stone"
"value": "stone",
"description": "material=stone is displayed as \"The seating is made from stone\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "material",
"description": "Layer 'Benches' shows material=concrete with a fixed text, namely 'The seating is made from concrete' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "concrete"
"value": "concrete",
"description": "material=concrete is displayed as \"The seating is made from concrete\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "material",
"description": "Layer 'Benches' shows material=plastic with a fixed text, namely 'The seating is made from plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "plastic"
"value": "plastic",
"description": "material=plastic is displayed as \"The seating is made from plastic\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "material",
"description": "Layer 'Benches' shows material=steel with a fixed text, namely 'The seating is made from steel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "steel"
"value": "steel",
"description": "material=steel is displayed as \"The seating is made from steel\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_material",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "direction",
"description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Benches') (This is only shown if two_sided!=yes)"
"description": "Values of `direction` are shown with \"When sitting on the bench, one looks towards {direction}°.\" and can be updated. The question is \"In which direction are you looking when sitting on the bench?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_direction",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "colour",
"description": "Layer 'Benches' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Benches')"
"description": "Values of `colour` are shown with \"Colour: {colour}\" and can be updated. The question is \"Which colour does this bench have?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "colour",
"description": "Layer 'Benches' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "brown"
"value": "brown",
"description": "colour=brown is displayed as \"Colour: brown\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "colour",
"description": "Layer 'Benches' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "green"
"value": "green",
"description": "colour=green is displayed as \"Colour: green\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "colour",
"description": "Layer 'Benches' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "gray"
"value": "gray",
"description": "colour=gray is displayed as \"Colour: gray\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "colour",
"description": "Layer 'Benches' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "white"
"value": "white",
"description": "colour=white is displayed as \"Colour: white\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "colour",
"description": "Layer 'Benches' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "red"
"value": "red",
"description": "colour=red is displayed as \"Colour: red\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "colour",
"description": "Layer 'Benches' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "black"
"value": "black",
"description": "colour=black is displayed as \"Colour: black\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "colour",
"description": "Layer 'Benches' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "blue"
"value": "blue",
"description": "colour=blue is displayed as \"Colour: blue\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "colour",
"description": "Layer 'Benches' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "yellow"
"value": "yellow",
"description": "colour=yellow is displayed as \"Colour: yellow\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_colour",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "survey:date",
"description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Benches')"
"description": "Values of `survey:date` are shown with \"This bench was last surveyed on {survey:date}\" and can be updated. The question is \"When was this bench last surveyed?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_survey_date",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "survey:date",
"description": "Layer 'Benches' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') Picking this answer will delete the key survey:date.",
"value": ""
"description": "survey:date= is displayed as \"Surveyed today!\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_survey_date",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "inscription",
"description": "Layer 'Benches' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Benches')"
"description": "Values of `inscription` are shown with \"This bench has the following inscription:<br/><p><i>{inscription}</i></p>\" and can be updated. The question is \"Does this bench have an inscription?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "not:inscription",
"description": "Layer 'Benches' shows not:inscription=yes with a fixed text, namely 'This bench does not have an inscription' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "yes"
"value": "yes",
"description": "not:inscription=yes is displayed as \"This bench does not have an inscription\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "inscription",
"description": "Layer 'Benches' shows inscription= with a fixed text, namely 'This bench <span class='subtle'>probably</span> does not not have an inscription' (in the mapcomplete.org theme 'Benches') Picking this answer will delete the key inscription.",
"value": ""
"description": "inscription= is displayed as \"This bench <span class='subtle'>probably</span> does not not have an inscription\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_inscription",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "tourism",
"description": "Layer 'Benches' shows tourism=artwork with a fixed text, namely 'This bench has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "artwork"
"value": "artwork",
"description": "tourism=artwork is displayed as \"This bench has an integrated artwork\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "not:tourism:artwork",
"description": "Layer 'Benches' shows not:tourism:artwork=yes with a fixed text, namely 'This bench does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "yes"
"value": "yes",
"description": "not:tourism:artwork=yes is displayed as \"This bench does not have an integrated artwork\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "tourism",
"description": "Layer 'Benches' shows tourism= with a fixed text, namely 'This bench <span class=\"subtle\">probably</span> doesn't have an integrated artwork' (in the mapcomplete.org theme 'Benches') Picking this answer will delete the key tourism.",
"value": ""
"description": "tourism= is displayed as \"This bench <span class=\"subtle\">probably</span> doesn't have an integrated artwork\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_artwork",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "historic",
"description": "Layer 'Benches' shows historic=memorial with a fixed text, namely 'This bench is a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))",
"value": "memorial"
"value": "memorial",
"description": "historic=memorial is displayed as \"This bench is a memorial for someone or something\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "historic",
"description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a <b>not</b> a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))",
"value": ""
"description": "historic= & not:historic=memorial is displayed as \"This bench is a <b>not</b> a memorial for someone or something\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "not:historic",
"description": "Layer 'Benches' shows historic= & not:historic=memorial with a fixed text, namely 'This bench is a <b>not</b> a memorial for someone or something' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork))",
"value": "memorial"
"value": "memorial",
"description": "historic= & not:historic=memorial is displayed as \"This bench is a <b>not</b> a memorial for someone or something\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#bench_memorial",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)"
"description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "architecture"
"value": "architecture",
"description": "artwork_type=architecture is displayed as \"Architecture\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "mural"
"value": "mural",
"description": "artwork_type=mural is displayed as \"Mural\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "painting"
"value": "painting",
"description": "artwork_type=painting is displayed as \"Painting\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "sculpture"
"value": "sculpture",
"description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "statue"
"value": "statue",
"description": "artwork_type=statue is displayed as \"Statue\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "bust"
"value": "bust",
"description": "artwork_type=bust is displayed as \"Bust\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "stone"
"value": "stone",
"description": "artwork_type=stone is displayed as \"Stone\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "installation"
"value": "installation",
"description": "artwork_type=installation is displayed as \"Installation\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "graffiti"
"value": "graffiti",
"description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "relief"
"value": "relief",
"description": "artwork_type=relief is displayed as \"Relief\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "azulejo"
"value": "azulejo",
"description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "tilework"
"value": "tilework",
"description": "artwork_type=tilework is displayed as \"Tilework\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Benches' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)",
"value": "woodcarving"
"value": "woodcarving",
"description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artwork_type",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artist:wikidata",
"description": "Layer 'Benches' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)"
"description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artist_wikidata",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "artist_name",
"description": "Layer 'Benches' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)"
"description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_artist_name",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "website",
"description": "Layer 'Benches' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)"
"description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_website",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "subject:wikidata",
"description": "Layer 'Benches' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Benches') (This is only shown if tourism=artwork)"
"description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Benches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench.md#artwork_subject",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "highway",
"description": "The MapComplete theme Benches has a layer Benches at public transport stops showing features with this tag",
"value": "bus_stop"
"value": "bus_stop",
"description": "Features with this tag are displayed by layer Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md",
"icon_url": "./assets/themes/benches/bench_public_transport.svg"
},
{
"key": "bench",
"description": "The MapComplete theme Benches has a layer Benches at public transport stops showing features with this tag",
"value": "yes"
"value": "yes",
"description": "Features with this tag are displayed by layer Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md",
"icon_url": "./assets/themes/benches/bench_public_transport.svg"
},
{
"key": "bench",
"description": "The MapComplete theme Benches has a layer Benches at public transport stops showing features with this tag",
"value": "stand_up_bench"
},
{
"key": "id",
"description": "Layer 'Benches at public transport stops' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Benches') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "stand_up_bench",
"description": "Features with this tag are displayed by layer Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md",
"icon_url": "./assets/themes/benches/bench_public_transport.svg"
},
{
"key": "name",
"description": "Layer 'Benches at public transport stops' shows values with key 'name' (in the mapcomplete.org theme 'Benches')"
"description": "Values of `name` are shown with \"{name}\" by layer Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md#bench_at_pt_name",
"icon_url": "./assets/themes/benches/bench_public_transport.svg"
},
{
"key": "bench",
"description": "Layer 'Benches at public transport stops' shows bench=yes with a fixed text, namely 'There is a normal, sit-down bench here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "yes"
"value": "yes",
"description": "bench=yes is displayed as \"There is a normal, sit-down bench here\" by layer Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md#bench_at_pt_bench_type",
"icon_url": "./assets/themes/benches/bench_public_transport.svg"
},
{
"key": "bench",
"description": "Layer 'Benches at public transport stops' shows bench=stand_up_bench with a fixed text, namely 'Stand up bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "stand_up_bench"
"value": "stand_up_bench",
"description": "bench=stand_up_bench is displayed as \"Stand up bench\" by layer Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md#bench_at_pt_bench_type",
"icon_url": "./assets/themes/benches/bench_public_transport.svg"
},
{
"key": "bench",
"description": "Layer 'Benches at public transport stops' shows bench=no with a fixed text, namely 'There is no bench here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Benches')",
"value": "no"
"value": "no",
"description": "bench=no is displayed as \"There is no bench here\" by layer Benches at public transport stops",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bench_at_pt.md#bench_at_pt_bench_type",
"icon_url": "./assets/themes/benches/bench_public_transport.svg"
}
]
}

View file

@ -7,267 +7,378 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/bicycle_parkings/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Bicycle parkings has a layer Bike parking showing features with this tag",
"value": "bicycle_parking"
"value": "bicycle_parking",
"description": "Features with this tag are displayed by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "id",
"description": "Layer 'Bike parking' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#images",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "panoramax",
"description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#images",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "mapillary",
"description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#images",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "wikidata",
"description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#images",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Bike parking allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#images",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'bicycle_parking' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "Values of `bicycle_parking` are shown with \"This is a bicycle parking of the type: {bicycle_parking}\" and can be updated. The question is \"What is the type of this bicycle parking?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=stands with a fixed text, namely 'Stands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "stands"
"value": "stands",
"description": "bicycle_parking=stands is displayed as \"Stands\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/staple.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=safe_loops with a fixed text, namely 'Rack with side loops' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "safe_loops"
"value": "safe_loops",
"description": "bicycle_parking=safe_loops is displayed as \"Rack with side loops\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/safe_loops.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=wall_loops with a fixed text, namely 'Wheelbenders / rack' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "wall_loops"
"value": "wall_loops",
"description": "bicycle_parking=wall_loops is displayed as \"Wheelbenders / rack\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/wall_loops.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=handlebar_holder with a fixed text, namely 'Handlebar holder' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "handlebar_holder"
"value": "handlebar_holder",
"description": "bicycle_parking=handlebar_holder is displayed as \"Handlebar holder\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/handlebar_holder.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=rack with a fixed text, namely 'Rack' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "rack"
"value": "rack",
"description": "bicycle_parking=rack is displayed as \"Rack\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/rack.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=two_tier with a fixed text, namely 'Two-tiered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "two_tier"
"value": "two_tier",
"description": "bicycle_parking=two_tier is displayed as \"Two-tiered\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/two_tier.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=shed with a fixed text, namely 'Shed' (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "shed"
"value": "shed",
"description": "bicycle_parking=shed is displayed as \"Shed\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/shed.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=bollard with a fixed text, namely 'Bollard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "bollard"
"value": "bollard",
"description": "bicycle_parking=bollard is displayed as \"Bollard\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/bollard.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=floor with a fixed text, namely 'An area on the floor which is marked for bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "floor"
"value": "floor",
"description": "bicycle_parking=floor is displayed as \"An area on the floor which is marked for bicycle parking\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=lockers with a fixed text, namely 'A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "lockers"
"value": "lockers",
"description": "bicycle_parking=lockers is displayed as \"A locker - the bicycles are enclosed completely individually or with a few bicycles together. The locker is too small to fit a person standing..\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "bicycle_parking",
"description": "Layer 'Bike parking' shows bicycle_parking=lean_and_stick with a fixed text, namely 'A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "lean_and_stick"
"value": "lean_and_stick",
"description": "bicycle_parking=lean_and_stick is displayed as \"A lean-to bracket with possibility to use a lock through eyelet. The seat tube can be held by the stand by an anchor\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Bicycle_parking_type",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "location",
"description": "Layer 'Bike parking' shows location=underground with a fixed text, namely 'Underground parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "underground"
"value": "underground",
"description": "location=underground is displayed as \"Underground parking\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "location",
"description": "Layer 'Bike parking' shows location=surface with a fixed text, namely 'Surface level parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "surface"
"value": "surface",
"description": "location=surface is displayed as \"Surface level parking\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "location",
"description": "Layer 'Bike parking' shows location=rooftop with a fixed text, namely 'Rooftop parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "rooftop"
"value": "rooftop",
"description": "location=rooftop is displayed as \"Rooftop parking\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "location",
"description": "Layer 'Bike parking' shows location= with a fixed text, namely 'Surface level parking' (in the mapcomplete.org theme 'Bicycle parkings') Picking this answer will delete the key location.",
"value": ""
"description": "location= is displayed as \"Surface level parking\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#location",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "building",
"description": "Layer 'Bike parking' shows building=bicycle_shed with a fixed text, namely 'This is a bicycle shed (with walls on at least three sides)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)",
"value": "bicycle_shed"
"value": "bicycle_shed",
"description": "building=bicycle_shed is displayed as \"This is a bicycle shed (with walls on at least three sides)\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "building",
"description": "Layer 'Bike parking' shows building=roof with a fixed text, namely 'This is a bicycle parking under a roof; the roof only serves the bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)",
"value": "roof"
"value": "roof",
"description": "building=roof is displayed as \"This is a bicycle parking under a roof; the roof only serves the bicycle parking\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "indoor",
"description": "Layer 'Bike parking' shows indoor=yes with a fixed text, namely 'This bicycle parking is located in a building behind a door or gate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)",
"value": "yes"
"value": "yes",
"description": "indoor=yes is displayed as \"This bicycle parking is located in a building behind a door or gate\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "indoor",
"description": "Layer 'Bike parking' shows indoor=no & covered=yes with a fixed text, namely 'This bicycle parking is under (a part of) a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)",
"value": "no"
"value": "no",
"description": "indoor=no & covered=yes is displayed as \"This bicycle parking is under (a part of) a building\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "covered",
"description": "Layer 'Bike parking' shows indoor=no & covered=yes with a fixed text, namely 'This bicycle parking is under (a part of) a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)",
"value": "yes"
"value": "yes",
"description": "indoor=no & covered=yes is displayed as \"This bicycle parking is under (a part of) a building\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "covered",
"description": "Layer 'Bike parking' shows covered=yes with a fixed text, namely 'This parking is covered (it has a roof)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)",
"value": "yes"
"value": "yes",
"description": "covered=yes is displayed as \"This parking is covered (it has a roof)\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "covered",
"description": "Layer 'Bike parking' shows covered=no with a fixed text, namely 'This parking is not covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if bicycle_parking!=shed & location!=underground)",
"value": "no"
"value": "no",
"description": "covered=no is displayed as \"This parking is not covered\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#covered_and_building",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "capacity",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "Values of `capacity` are shown with \"Place for {capacity} bikes\" and can be updated. The question is \"How many bicycles fit in this bicycle parking?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Capacity",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "access",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "Values of `access` are shown with \"{access}\" and can be updated. The question is \"Who can use this bicycle parking?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "access",
"description": "Layer 'Bike parking' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"Publicly accessible\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "access",
"description": "Layer 'Bike parking' shows access=customers with a fixed text, namely 'Access is primarily for visitors to a business' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "customers"
"value": "customers",
"description": "access=customers is displayed as \"Access is primarily for visitors to a business\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "access",
"description": "Layer 'Bike parking' shows access=members with a fixed text, namely 'Access is limited to members of a school, company or organisation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "members"
"value": "members",
"description": "access=members is displayed as \"Access is limited to members of a school, company or organisation\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "access",
"description": "Layer 'Bike parking' shows access=private with a fixed text, namely 'Private bicycle parking which is never available to the public, also not via a membership fee' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "private"
"value": "private",
"description": "access=private is displayed as \"Private bicycle parking which is never available to the public, also not via a membership fee\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Access",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "fee",
"description": "Layer 'Bike parking' shows fee=yes with a fixed text, namely 'One has to <b>pay</b> to use this bicycle parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "yes"
"value": "yes",
"description": "fee=yes is displayed as \"One has to <b>pay</b> to use this bicycle parking\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#fee",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "fee",
"description": "Layer 'Bike parking' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "no"
"value": "no",
"description": "fee=no is displayed as \"Free to use\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#fee",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "charge",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if fee=yes)"
"description": "Values of `charge` are shown with \"Parking your bike costs {charge}\" and can be updated. The question is \"How much does it cost to park your bike here?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#charge",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#opening_hours_24_7_default",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Bike parking' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "24/7"
"value": "24/7",
"description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#opening_hours_24_7_default",
"icon_url": "./assets/layers/questions/open24_7.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Bike parking' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#opening_hours_24_7_default",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "operator",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "Values of `operator` are shown with \"This bicycle parking is maintained by {operator}\" and can be updated. The question is \"Who maintains this bicycle parking?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "operator:phone",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:phone' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "Values of `operator:phone` are shown with \"<a href='tel:{operator:phone}'>{operator:phone}</a>\" and can be updated. The question is \"What is the phone number of the operator of this bicycle parking?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "phone",
"description": "Layer 'Bike parking' shows phone~.+ with a fixed text, namely '<a href='tel:{phone}'>{phone}</a>' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "phone~.+ is displayed as \"<a href='tel:{phone}'>{phone}</a>\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Bike parking' shows contact:phone~.+ with a fixed text, namely '<a href='tel:{contact:phone}'>{contact:phone}</a>' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "contact:phone~.+ is displayed as \"<a href='tel:{contact:phone}'>{contact:phone}</a>\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "operator:website",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:website' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "Values of `operator:website` are shown with \"<a href='{operator:website}'>{operator:website}</a>\" and can be updated. The question is \"What is the website number of the operator of this bicycle parking?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "website",
"description": "Layer 'Bike parking' shows website~.+ with a fixed text, namely '<a href='{website}'>{website}</a>' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "website~.+ is displayed as \"<a href='{website}'>{website}</a>\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Bike parking' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}'>{contact:website}</a>' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}'>{contact:website}</a>\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "operator:email",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'operator:email' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "Values of `operator:email` are shown with \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" and can be updated. The question is \"What is the email address of the operator of this bicycle parking?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#operator_email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "cargo_bike",
"description": "Layer 'Bike parking' shows cargo_bike=yes with a fixed text, namely 'This parking has room for cargo bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "yes"
"value": "yes",
"description": "cargo_bike=yes is displayed as \"This parking has room for cargo bikes\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "cargo_bike",
"description": "Layer 'Bike parking' shows cargo_bike=designated with a fixed text, namely 'This parking has designated (official) spots for cargo bikes.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "designated"
"value": "designated",
"description": "cargo_bike=designated is displayed as \"This parking has designated (official) spots for cargo bikes.\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "cargo_bike",
"description": "Layer 'Bike parking' shows cargo_bike=no with a fixed text, namely 'You're not allowed to park cargo bikes or there are no places provided for cargo bikes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings')",
"value": "no"
"value": "no",
"description": "cargo_bike=no is displayed as \"You're not allowed to park cargo bikes or there are no places provided for cargo bikes\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_spaces_",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "capacity:cargo_bike",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity:cargo_bike' (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$)"
"description": "Values of `capacity:cargo_bike` are shown with \"This parking fits {capacity:cargo_bike} cargo bikes\" and can be updated. The question is \"How many cargo bicycles fit in this bicycle parking?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_capacity_",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "cargo_bike",
"description": "Layer 'Bike parking' shows cargo_bike=no with a fixed text, namely 'There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle parkings') (This is only shown if capacity:cargo_bike~.+ | cargo_bike~^(designated|yes)$)",
"value": "no"
"value": "no",
"description": "cargo_bike=no is displayed as \"There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#Cargo_bike_capacity_",
"icon_url": "./assets/layers/bike_parking/parking.svg"
},
{
"key": "maxstay",
"description": "Layer 'Bike parking' shows and asks freeform values for key 'maxstay' (in the mapcomplete.org theme 'Bicycle parkings')"
"description": "Values of `maxstay` are shown with \"A bike can be parked here for at most {canonical(maxstay)}\" and can be updated. The question is \"What is the maximum allowed parking duration?\" by layer Bike parking",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_parking.md#maxstay",
"icon_url": "./assets/layers/bike_parking/parking.svg"
}
]
}

View file

@ -7,244 +7,327 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/bicycle_rental/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag",
"value": "bicycle_rental"
"value": "bicycle_rental",
"description": "Features with this tag are displayed by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "bicycle_rental",
"description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag"
"description": "Features with this tag are displayed by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "service:bicycle:rental",
"description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag",
"value": "yes"
"value": "yes",
"description": "Features with this tag are displayed by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "rental",
"description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag"
"description": "Features with this tag are displayed by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "id",
"description": "Layer 'Bicycle rental' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#images",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "panoramax",
"description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#images",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "mapillary",
"description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#images",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "wikidata",
"description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#images",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Bicycle rental allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#images",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "shop",
"description": "Layer 'Bicycle rental' shows shop=rental & bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)",
"value": "rental"
"value": "rental",
"description": "shop=rental & bicycle_rental=shop is displayed as \"This is a shop whose main focus is bicycle rental\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "bicycle_rental",
"description": "Layer 'Bicycle rental' shows shop=rental & bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)",
"value": "shop"
"value": "shop",
"description": "shop=rental & bicycle_rental=shop is displayed as \"This is a shop whose main focus is bicycle rental\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "shop",
"description": "Layer 'Bicycle rental' shows shop=rental with a fixed text, namely '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' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)",
"value": "rental"
"value": "rental",
"description": "shop=rental is displayed as \"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\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "service:bicycle:rental",
"description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes & shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)",
"value": "yes"
"value": "yes",
"description": "service:bicycle:rental=yes & shop=bicycle is displayed as \"This is a shop which sells or repairs bicycles, but also rents out bicycles\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "shop",
"description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes & shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)",
"value": "bicycle"
"value": "bicycle",
"description": "service:bicycle:rental=yes & shop=bicycle is displayed as \"This is a shop which sells or repairs bicycles, but also rents out bicycles\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "bicycle_rental",
"description": "Layer 'Bicycle rental' shows bicycle_rental=docking_station with a fixed text, namely 'This is an automated docking station, where a bicycle is mechanically locked to a structure' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)",
"value": "docking_station"
"value": "docking_station",
"description": "bicycle_rental=docking_station is displayed as \"This is an automated docking station, where a bicycle is mechanically locked to a structure\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "bicycle_rental",
"description": "Layer 'Bicycle rental' shows bicycle_rental=key_dispensing_machine with a fixed text, namely 'A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)",
"value": "key_dispensing_machine"
"value": "key_dispensing_machine",
"description": "bicycle_rental=key_dispensing_machine is displayed as \"A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "bicycle_rental",
"description": "Layer 'Bicycle rental' shows bicycle_rental=dropoff_point with a fixed text, namely 'This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if amenity=bicycle_rental)",
"value": "dropoff_point"
"value": "dropoff_point",
"description": "bicycle_rental=dropoff_point is displayed as \"This is a dropoff point, e.g. a reserved parking to place the bicycles clearly marked as being for the rental service only\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_rental_type",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "website",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Bicycle rental')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Bicycle rental' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Bicycle rental')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "email",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Bicycle rental')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Bicycle rental' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Bicycle rental')"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Bicycle rental' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Bicycle rental')"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "phone",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Bicycle rental')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Bicycle rental' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Bicycle rental')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop~.+ | opening_hours~.+)"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#opening_hours",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Bicycle rental' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop~.+ | opening_hours~.+)",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#opening_hours",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "payment:cash",
"description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop~.+)",
"value": "yes"
"value": "yes",
"description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layers Bicycle rental, Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#payment_options",
"icon_url": "./assets/layers/questions/cash.svg"
},
{
"key": "payment:cards",
"description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop~.+)",
"value": "yes"
"value": "yes",
"description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layers Bicycle rental, Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#payment_options",
"icon_url": "./assets/layers/questions/payment_card.svg"
},
{
"key": "payment:qr_code",
"description": "Layer 'Bicycle rental' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop~.+)",
"value": "yes"
},
{
"key": "payment:cash",
"description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop=)",
"value": "yes"
},
{
"key": "payment:cards",
"description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop=)",
"value": "yes"
},
{
"key": "payment:qr_code",
"description": "Layer 'Bicycle rental' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop=)",
"value": "yes"
"value": "yes",
"description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layers Bicycle rental, Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#payment_options",
"icon_url": "./assets/layers/questions/qrcode.svg"
},
{
"key": "payment:app",
"description": "Layer 'Bicycle rental' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop=)",
"value": "yes"
"value": "yes",
"description": "payment:app=yes is displayed as \"Payment is done using a dedicated app\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#payment_options_advanced",
"icon_url": "./assets/layers/questions/smartphone.svg"
},
{
"key": "payment:membership_card",
"description": "Layer 'Bicycle rental' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if shop=)",
"value": "yes"
"value": "yes",
"description": "payment:membership_card=yes is displayed as \"Payment is done using a membership card\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#payment_options_advanced",
"icon_url": "./assets/layers/questions/nfc_card.svg"
},
{
"key": "rental",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'rental' (in the mapcomplete.org theme 'Bicycle rental')"
"description": "Values of `rental` are shown with \"{rental} is rented here\" and can be updated. The question is \"What kind of bicycles and accessories are rented here?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "rental",
"description": "Layer 'Bicycle rental' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')",
"value": "city_bike"
"value": "city_bike",
"description": "rental=city_bike is displayed as \"Normal city bikes can be rented here\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "rental",
"description": "Layer 'Bicycle rental' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')",
"value": "ebike"
"value": "ebike",
"description": "rental=ebike is displayed as \"Electrical bikes can be rented here\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "rental",
"description": "Layer 'Bicycle rental' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')",
"value": "bmx"
"value": "bmx",
"description": "rental=bmx is displayed as \"BMX bikes can be rented here\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "rental",
"description": "Layer 'Bicycle rental' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')",
"value": "mtb"
"value": "mtb",
"description": "rental=mtb is displayed as \"Mountainbikes can be rented here\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "rental",
"description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for children can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')",
"value": "kid_bike"
"value": "kid_bike",
"description": "rental=kid_bike is displayed as \"Bikes for children can be rented here\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "rental",
"description": "Layer 'Bicycle rental' shows rental=tandem with a fixed text, namely 'Tandem bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')",
"value": "tandem"
"value": "tandem",
"description": "rental=tandem is displayed as \"Tandem bicycles can be rented here\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "rental",
"description": "Layer 'Bicycle rental' shows rental=racebike with a fixed text, namely 'Race bicycles can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')",
"value": "racebike"
"value": "racebike",
"description": "rental=racebike is displayed as \"Race bicycles can be rented here\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "rental",
"description": "Layer 'Bicycle rental' shows rental=bike_helmet with a fixed text, namely 'Bike helmets can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')",
"value": "bike_helmet"
"value": "bike_helmet",
"description": "rental=bike_helmet is displayed as \"Bike helmets can be rented here\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "rental",
"description": "Layer 'Bicycle rental' shows rental=cargo_bike with a fixed text, namely 'Cargo bikes can be rented here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle rental')",
"value": "cargo_bike"
"value": "cargo_bike",
"description": "rental=cargo_bike is displayed as \"Cargo bikes can be rented here\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#bicycle_types",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "capacity:city_bike",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:city_bike' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*city_bike.*)$)"
"description": "Values of `capacity:city_bike` are shown with \"{capacity:city_bike} city bikes can be rented here\" and can be updated. The question is \"How many city bikes can be rented here?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_city_bike",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "capacity:ebike",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:ebike' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*ebike.*)$)"
"description": "Values of `capacity:ebike` are shown with \"{capacity:ebike} electrical bikes can be rented here\" and can be updated. The question is \"How many electrical bikes can be rented here?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_ebike",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "capacity:kid_bike",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:kid_bike' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*kid_bike.*)$)"
"description": "Values of `capacity:kid_bike` are shown with \"{capacity:kid_bike} bikes for children can be rented here\" and can be updated. The question is \"How many bikes for children can be rented here?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_kid_bike",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "capacity:bmx",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bmx' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*bmx.*)$)"
"description": "Values of `capacity:bmx` are shown with \"{capacity:bmx} BMX bikes can be rented here\" and can be updated. The question is \"How many BMX bikes can be rented here?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_bmx",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "capacity:mtb",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:mtb' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*mtb.*)$)"
"description": "Values of `capacity:mtb` are shown with \"{capacity:mtb} mountainbikes can be rented here\" and can be updated. The question is \"How many mountainbikes can be rented here?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_mtb",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "capacity:bicycle_pannier",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*bicycle_pannier.*)$)"
"description": "Values of `capacity:bicycle_pannier` are shown with \"{capacity:bicycle_pannier} bicycle panniers can be rented here\" and can be updated. The question is \"How many bicycle panniers can be rented here?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_bicycle_pannier",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
},
{
"key": "capacity:tandem_bicycle",
"description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:tandem_bicycle' (in the mapcomplete.org theme 'Bicycle rental') (This is only shown if rental~^(.*tandem_bicycle.*)$)"
"description": "Values of `capacity:tandem_bicycle` are shown with \"{capacity:tandem_bicycle} tandem can be rented here\" and can be updated. The question is \"How many tandem can be rented here?\" by layer Bicycle rental",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_rental.md#rental_capacity_tandem_bicycle",
"icon_url": "./assets/themes/bicycle_rental/logo.svg"
}
]
}

View file

@ -7,121 +7,172 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/bicyclelib/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Bicycle libraries has a layer Bicycle library showing features with this tag",
"value": "bicycle_library"
"value": "bicycle_library",
"description": "Features with this tag are displayed by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "id",
"description": "Layer 'Bicycle library' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Bicycle libraries') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#images",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "panoramax",
"description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#images",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "mapillary",
"description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#images",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "wikidata",
"description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#images",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Bicycle library allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#images",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "name",
"description": "Layer 'Bicycle library' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "Values of `name` are shown with \"This bicycle library is called {name}\" and can be updated. The question is \"What is the name of this bicycle library?\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_name",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "website",
"description": "Layer 'Bicycle library' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Bicycle library' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "phone",
"description": "Layer 'Bicycle library' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Bicycle library' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "email",
"description": "Layer 'Bicycle library' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Bicycle library' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Bicycle library' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Bicycle library' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#opening_hours",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Bicycle library' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Bicycle libraries')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#opening_hours",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "charge",
"description": "Layer 'Bicycle library' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "Values of `charge` are shown with \"Lending a bicycle costs {charge}\" and can be updated. The question is \"How much does lending a bicycle cost?\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "fee",
"description": "Layer 'Bicycle library' shows fee=no & charge= with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')",
"value": "no"
"value": "no",
"description": "fee=no & charge= is displayed as \"Lending a bicycle is free\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "charge",
"description": "Layer 'Bicycle library' shows fee=no & charge= with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries') Picking this answer will delete the key charge.",
"value": ""
"description": "fee=no & charge= is displayed as \"Lending a bicycle is free\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "fee",
"description": "Layer 'Bicycle library' shows fee=yes & charge=€20warranty + €20/year with a fixed text, namely 'Lending a bicycle costs €20/year and €20 warranty' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')",
"value": "yes"
"value": "yes",
"description": "fee=yes & charge=€20warranty + €20/year is displayed as \"Lending a bicycle costs €20/year and €20 warranty\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "charge",
"description": "Layer 'Bicycle library' shows fee=yes & charge=€20warranty + €20/year with a fixed text, namely 'Lending a bicycle costs €20/year and €20 warranty' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')",
"value": "€20warranty + €20/year"
"value": "€20warranty + €20/year",
"description": "fee=yes & charge=€20warranty + €20/year is displayed as \"Lending a bicycle costs €20/year and €20 warranty\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_charge",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "bicycle_library:for",
"description": "Layer 'Bicycle library' shows bicycle_library:for=child with a fixed text, namely 'Bikes for children available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')",
"value": "child"
"value": "child",
"description": "bicycle_library:for=child is displayed as \"Bikes for children available\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "bicycle_library:for",
"description": "Layer 'Bicycle library' shows bicycle_library:for=adult with a fixed text, namely 'Bikes for adult available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')",
"value": "adult"
"value": "adult",
"description": "bicycle_library:for=adult is displayed as \"Bikes for adult available\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "bicycle_library:for",
"description": "Layer 'Bicycle library' shows bicycle_library:for=disabled with a fixed text, namely 'Bikes for disabled persons available' and allows to pick this as a default answer (in the mapcomplete.org theme 'Bicycle libraries')",
"value": "disabled"
"value": "disabled",
"description": "bicycle_library:for=disabled is displayed as \"Bikes for disabled persons available\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#bicycle_library_target_group",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
},
{
"key": "description",
"description": "Layer 'Bicycle library' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Bicycle libraries')"
"description": "Values of `description` are shown with \"{description}\" and can be updated. The question is \"Is there still some relevant info that the previous questions did not cover? Feel free to add it here.\" by layer Bicycle library",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bicycle_library.md#description",
"icon_url": "./assets/layers/bicycle_library/bicycle_library.svg"
}
]
}

View file

@ -7,55 +7,76 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/binocular/telescope.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Binoculars has a layer Binoculars showing features with this tag",
"value": "binoculars"
"value": "binoculars",
"description": "Features with this tag are displayed by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md",
"icon_url": "./assets/layers/binocular/telescope.svg"
},
{
"key": "id",
"description": "Layer 'Binoculars' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Binoculars') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#images",
"icon_url": "./assets/layers/binocular/telescope.svg"
},
{
"key": "panoramax",
"description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#images",
"icon_url": "./assets/layers/binocular/telescope.svg"
},
{
"key": "mapillary",
"description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#images",
"icon_url": "./assets/layers/binocular/telescope.svg"
},
{
"key": "wikidata",
"description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#images",
"icon_url": "./assets/layers/binocular/telescope.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Binoculars allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#images",
"icon_url": "./assets/layers/binocular/telescope.svg"
},
{
"key": "charge",
"description": "Layer 'Binoculars' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Binoculars')"
"description": "Values of `charge` are shown with \"Using these binoculars costs {charge}\" and can be updated. The question is \"How much does one have to pay to use these binoculars?\" by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_charge",
"icon_url": "./assets/layers/binocular/telescope.svg"
},
{
"key": "fee",
"description": "Layer 'Binoculars' shows fee=no & charge= with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Binoculars')",
"value": "no"
"value": "no",
"description": "fee=no & charge= is displayed as \"Free to use\" by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_charge",
"icon_url": "./assets/layers/binocular/telescope.svg"
},
{
"key": "charge",
"description": "Layer 'Binoculars' shows fee=no & charge= with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Binoculars') Picking this answer will delete the key charge.",
"value": ""
"description": "fee=no & charge= is displayed as \"Free to use\" by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_charge",
"icon_url": "./assets/layers/binocular/telescope.svg"
},
{
"key": "direction",
"description": "Layer 'Binoculars' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Binoculars')"
"description": "Values of `direction` are shown with \"Looks towards {direction}°\" and can be updated. The question is \"When looking through this binocular, in what direction does one look?\" by layer Binoculars",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/binocular.md#binocular_direction",
"icon_url": "./assets/layers/binocular/telescope.svg"
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -7,134 +7,186 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/bookcases/bookcase.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Public bookcases has a layer Bookcases showing features with this tag",
"value": "public_bookcase"
"value": "public_bookcase",
"description": "Features with this tag are displayed by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "id",
"description": "Layer 'Bookcases' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Public bookcases') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "panoramax",
"description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "mapillary",
"description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "wikidata",
"description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Bookcases allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#images",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "name",
"description": "Layer 'Bookcases' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Public bookcases')"
"description": "Values of `name` are shown with \"The name of this bookcase is {name}\" and can be updated. The question is \"What is the name of this public bookcase?\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_name",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "noname",
"description": "Layer 'Bookcases' shows noname=yes & name= with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases')",
"value": "yes"
"value": "yes",
"description": "noname=yes & name= is displayed as \"This bookcase doesn't have a name\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_name",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "name",
"description": "Layer 'Bookcases' shows noname=yes & name= with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') Picking this answer will delete the key name.",
"value": ""
"description": "noname=yes & name= is displayed as \"This bookcase doesn't have a name\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_name",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "capacity",
"description": "Layer 'Bookcases' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Public bookcases')"
"description": "Values of `capacity` are shown with \"{capacity} books fit in this bookcase\" and can be updated. The question is \"How many books fit into this public bookcase?\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_capacity",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "books",
"description": "Layer 'Bookcases' shows and asks freeform values for key 'books' (in the mapcomplete.org theme 'Public bookcases')"
"description": "Values of `books` are shown with \"This place mostly serves {books}\" and can be updated. The question is \"What kind of books can be found in this public bookcase?\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_booktypes",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "books",
"description": "Layer 'Bookcases' shows books=children with a fixed text, namely 'Mostly children books' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases')",
"value": "children"
"value": "children",
"description": "books=children is displayed as \"Mostly children books\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_booktypes",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "books",
"description": "Layer 'Bookcases' shows books=adults with a fixed text, namely 'Mostly books for adults' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases')",
"value": "adults"
"value": "adults",
"description": "books=adults is displayed as \"Mostly books for adults\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_booktypes",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "indoor",
"description": "Layer 'Bookcases' shows indoor=yes with a fixed text, namely 'This bookcase is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases')",
"value": "yes"
"value": "yes",
"description": "indoor=yes is displayed as \"This bookcase is located indoors\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_indoors",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "indoor",
"description": "Layer 'Bookcases' shows indoor=no with a fixed text, namely 'This bookcase is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases')",
"value": "no"
"value": "no",
"description": "indoor=no is displayed as \"This bookcase is located outdoors\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_indoors",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "indoor",
"description": "Layer 'Bookcases' shows indoor= with a fixed text, namely 'This bookcase is located outdoors' (in the mapcomplete.org theme 'Public bookcases') Picking this answer will delete the key indoor.",
"value": ""
"description": "indoor= is displayed as \"This bookcase is located outdoors\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_indoors",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "access",
"description": "Layer 'Bookcases' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') (This is only shown if indoor=yes)",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"Publicly accessible\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_accessible",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "access",
"description": "Layer 'Bookcases' shows access=customers with a fixed text, namely 'Only accessible to customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') (This is only shown if indoor=yes)",
"value": "customers"
"value": "customers",
"description": "access=customers is displayed as \"Only accessible to customers\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#bookcase_is_accessible",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "operator",
"description": "Layer 'Bookcases' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Public bookcases')"
"description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who maintains this public bookcase?\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_operator",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "brand",
"description": "Layer 'Bookcases' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Public bookcases') (This is only shown if ref=)"
"description": "Values of `brand` are shown with \"This public bookcase is part of {brand}\" and can be updated. The question is \"Is this public bookcase part of a bigger network?\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_brand",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "nobrand",
"description": "Layer 'Bookcases' shows nobrand=yes with a fixed text, namely 'This public bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') (This is only shown if ref=)",
"value": "yes"
"value": "yes",
"description": "nobrand=yes is displayed as \"This public bookcase is not part of a bigger network\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_brand",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "ref",
"description": "Layer 'Bookcases' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Public bookcases') (This is only shown if brand~.+)"
"description": "Values of `ref` are shown with \"The reference number of this public bookcase within {brand} is {ref}\" and can be updated. The question is \"What is the reference number of this public bookcase?\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "nobrand",
"description": "Layer 'Bookcases' shows nobrand=yes & brand= & ref= with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') (This is only shown if brand~.+)",
"value": "yes"
"value": "yes",
"description": "nobrand=yes & brand= & ref= is displayed as \"This bookcase is not part of a bigger network\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "brand",
"description": "Layer 'Bookcases' shows nobrand=yes & brand= & ref= with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') Picking this answer will delete the key brand. (This is only shown if brand~.+)",
"value": ""
"description": "nobrand=yes & brand= & ref= is displayed as \"This bookcase is not part of a bigger network\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "ref",
"description": "Layer 'Bookcases' shows nobrand=yes & brand= & ref= with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public bookcases') Picking this answer will delete the key ref. (This is only shown if brand~.+)",
"value": ""
"description": "nobrand=yes & brand= & ref= is displayed as \"This bookcase is not part of a bigger network\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_ref",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "start_date",
"description": "Layer 'Bookcases' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Public bookcases')"
"description": "Values of `start_date` are shown with \"Installed on {start_date}\" and can be updated. The question is \"When was this public bookcase installed?\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_start_date",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
},
{
"key": "website",
"description": "Layer 'Bookcases' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Public bookcases')"
"description": "Values of `website` are shown with \"{link(More info on the website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this public bookcase?\" by layer Bookcases",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/public_bookcase.md#public_bookcase_website",
"icon_url": "./assets/themes/bookcases/bookcase.svg"
}
]
}

View file

@ -7,614 +7,563 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/cafe_pub/pub.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag",
"value": "bar"
"value": "bar",
"description": "Features with this tag are displayed by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag",
"value": "pub"
"value": "pub",
"description": "Features with this tag are displayed by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag",
"value": "cafe"
"value": "cafe",
"description": "Features with this tag are displayed by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag",
"value": "biergarten"
"value": "biergarten",
"description": "Features with this tag are displayed by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Cafés and pubs has a layer Cafés and pubs showing features with this tag",
"value": "nightclub"
"value": "nightclub",
"description": "Features with this tag are displayed by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "id",
"description": "Layer 'Cafés and pubs' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "panoramax",
"description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "mapillary",
"description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "wikidata",
"description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#images",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "level",
"description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if repeat_on=)"
"description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "location",
"description": "Layer 'Cafés and pubs' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if repeat_on=)",
"value": "underground"
"value": "underground",
"description": "location=underground is displayed as \"Located underground\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "level",
"description": "Layer 'Cafés and pubs' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if repeat_on=)",
"value": "0"
"value": "0",
"description": "level=0 is displayed as \"Located on the ground floor\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "level",
"description": "Layer 'Cafés and pubs' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Cafés and pubs') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
"value": ""
"description": "level= is displayed as \"Located on the ground floor\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "level",
"description": "Layer 'Cafés and pubs' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if repeat_on=)",
"value": "1"
"value": "1",
"description": "level=1 is displayed as \"Located on the first floor\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "level",
"description": "Layer 'Cafés and pubs' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if repeat_on=)",
"value": "-1"
"value": "-1",
"description": "level=-1 is displayed as \"Located on the first basement level\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#single_level",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "name",
"description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Cafés and pubs')"
"description": "Values of `name` are shown with \"This business is named {name}\" and can be updated. The question is \"What is the name of this business?\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Name",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "amenity",
"description": "Layer 'Cafés and pubs' shows amenity=pub with a fixed text, namely 'A pub, mostly for drinking beers in a warm, relaxed interior' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "pub"
"value": "pub",
"description": "amenity=pub is displayed as \"A pub, mostly for drinking beers in a warm, relaxed interior\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "amenity",
"description": "Layer 'Cafés and pubs' shows amenity=bar with a fixed text, namely 'A more modern and commercial <b>bar</b>, possibly with a music and light installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "bar"
"value": "bar",
"description": "amenity=bar is displayed as \"A more modern and commercial <b>bar</b>, possibly with a music and light installation\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "amenity",
"description": "Layer 'Cafés and pubs' shows amenity=cafe with a fixed text, namely 'A <b>cafe</b> to drink tea, coffee or an alcoholical bevarage in a quiet environment' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "cafe"
"value": "cafe",
"description": "amenity=cafe is displayed as \"A <b>cafe</b> to drink tea, coffee or an alcoholical bevarage in a quiet environment\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "amenity",
"description": "Layer 'Cafés and pubs' shows amenity=restaurant with a fixed text, namely 'A <b>restaurant</b> where one can get a proper meal' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "restaurant"
"value": "restaurant",
"description": "amenity=restaurant is displayed as \"A <b>restaurant</b> where one can get a proper meal\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "amenity",
"description": "Layer 'Cafés and pubs' shows amenity=biergarten with a fixed text, namely 'An open space where beer is served, typically seen in Germany' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "biergarten"
"value": "biergarten",
"description": "amenity=biergarten is displayed as \"An open space where beer is served, typically seen in Germany\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "amenity",
"description": "Layer 'Cafés and pubs' shows amenity=nightclub with a fixed text, namely 'This is a <b>nightclub</b> or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "nightclub"
"value": "nightclub",
"description": "amenity=nightclub is displayed as \"This is a <b>nightclub</b> or disco with a focus on dancing, music by a DJ with accompanying light show and a bar to get (alcoholic) drinks\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#Classification",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cafés and pubs')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#opening_hours",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Cafés and pubs' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#opening_hours",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "website",
"description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cafés and pubs')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Cafés and pubs' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Cafés and pubs')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "email",
"description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Cafés and pubs')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Cafés and pubs' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Cafés and pubs')"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Cafés and pubs' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Cafés and pubs')"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "phone",
"description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cafés and pubs')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Cafés and pubs, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Cafés and pubs' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cafés and pubs')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Cafés and pubs, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "payment:cash",
"description": "Layer 'Cafés and pubs' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#payment_options",
"icon_url": "./assets/layers/questions/cash.svg"
},
{
"key": "payment:cards",
"description": "Layer 'Cafés and pubs' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#payment_options",
"icon_url": "./assets/layers/questions/payment_card.svg"
},
{
"key": "payment:qr_code",
"description": "Layer 'Cafés and pubs' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#payment_options",
"icon_url": "./assets/layers/questions/qrcode.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Cafés and pubs' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "designated"
"value": "designated",
"description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Cafés and pubs' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Cafés and pubs' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "limited"
"value": "limited",
"description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Cafés and pubs' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "no"
"value": "no",
"description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#wheelchair_access",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "smoking",
"description": "Layer 'Cafés and pubs' shows smoking=yes with a fixed text, namely 'Smoking is <b>allowed</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)",
"value": "yes"
"value": "yes",
"description": "smoking=yes is displayed as \"Smoking is <b>allowed</b>\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#smoking",
"icon_url": "./assets/layers/questions/smoking.svg"
},
{
"key": "smoking",
"description": "Layer 'Cafés and pubs' shows smoking=no with a fixed text, namely 'Smoking is <b>not allowed</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)",
"value": "no"
"value": "no",
"description": "smoking=no is displayed as \"Smoking is <b>not allowed</b>\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#smoking",
"icon_url": "./assets/layers/questions/no_smoking.svg"
},
{
"key": "smoking",
"description": "Layer 'Cafés and pubs' shows smoking=outside with a fixed text, namely 'Smoking is <b>allowed outside</b>.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)",
"value": "outside"
"value": "outside",
"description": "smoking=outside is displayed as \"Smoking is <b>allowed outside</b>.\" by layers Cafés and pubs, Outdoor Seating, Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#smoking",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "service:electricity",
"description": "Layer 'Cafés and pubs' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "service:electricity=yes is displayed as \"There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "service:electricity",
"description": "Layer 'Cafés and pubs' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "limited"
"value": "limited",
"description": "service:electricity=limited is displayed as \"There are a few domestic sockets available to customers seated indoors, where they can charge their electronics\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "service:electricity",
"description": "Layer 'Cafés and pubs' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "ask"
"value": "ask",
"description": "service:electricity=ask is displayed as \"There are no sockets available indoors to customers, but charging might be possible if the staff is asked\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "service:electricity",
"description": "Layer 'Cafés and pubs' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "no"
"value": "no",
"description": "service:electricity=no is displayed as \"There are a no domestic sockets available to customers seated indoors\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#service_electricity",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "outdoor_seating",
"description": "Layer 'Cafés and pubs' shows outdoor_seating=yes with a fixed text, namely 'This place has outdoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "outdoor_seating=yes is displayed as \"This place has outdoor seating\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#seating",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "indoor_seating",
"description": "Layer 'Cafés and pubs' shows indoor_seating=yes with a fixed text, namely 'This place has indoor seating' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "indoor_seating=yes is displayed as \"This place has indoor seating\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#seating",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "dog",
"description": "Layer 'Cafés and pubs' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "dog=yes is displayed as \"Dogs are allowed\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_allowed.svg"
},
{
"key": "dog",
"description": "Layer 'Cafés and pubs' shows dog=no with a fixed text, namely 'Dogs are <b>not</b> allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "no"
"value": "no",
"description": "dog=no is displayed as \"Dogs are <b>not</b> allowed\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access",
"icon_url": "./assets/layers/questions/no_dogs.svg"
},
{
"key": "dog",
"description": "Layer 'Cafés and pubs' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "leashed"
"value": "leashed",
"description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_leashed.svg"
},
{
"key": "dog",
"description": "Layer 'Cafés and pubs' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "unleashed"
"value": "unleashed",
"description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_allowed.svg"
},
{
"key": "dog",
"description": "Layer 'Cafés and pubs' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "outside"
"value": "outside",
"description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Cafés and pubs",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_outside.svg"
},
{
"key": "internet_access",
"description": "Layer 'Cafés and pubs' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "wlan"
"value": "wlan",
"description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet",
"icon_url": "wifi"
},
{
"key": "internet_access",
"description": "Layer 'Cafés and pubs' shows internet_access=no with a fixed text, namely 'This place <b>does not</b> offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "no"
"value": "no",
"description": "internet_access=no is displayed as \"This place <b>does not</b> offer internet access\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet",
"icon_url": "wifi;cross_bottom_right:red"
},
{
"key": "internet_access",
"description": "Layer 'Cafés and pubs' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "internet_access=yes is displayed as \"This place offers internet access\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "internet_access",
"description": "Layer 'Cafés and pubs' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "terminal"
"value": "terminal",
"description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet",
"icon_url": "computer"
},
{
"key": "internet_access",
"description": "Layer 'Cafés and pubs' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "wired"
"value": "wired",
"description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "internet_access",
"description": "Layer 'Cafés and pubs' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "terminal;wifi"
"value": "terminal;wifi",
"description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Cafés and pubs' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "yes"
"value": "yes",
"description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_fee",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Cafés and pubs' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "no"
"value": "no",
"description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_fee",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Cafés and pubs' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "customers"
"value": "customers",
"description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_fee",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "internet_access:ssid",
"description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access~^(.*wlan.*)$)"
"description": "Values of `internet_access:ssid` are shown with \"The network name is <b>{internet_access:ssid}</b>\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_ssid",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "internet_access:ssid",
"description": "Layer 'Cafés and pubs' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access~^(.*wlan.*)$)",
"value": "Telekom"
"value": "Telekom",
"description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layers Cafés and pubs, Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cafe_pub.md#internet_ssid",
"icon_url": "./assets/layers/cafe_pub/pub.svg"
},
{
"key": "leisure",
"description": "The MapComplete theme Cafés and pubs has a layer Outdoor Seating showing features with this tag",
"value": "outdoor_seating"
},
{
"key": "id",
"description": "Layer 'Outdoor Seating' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Outdoor Seating allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "outdoor_seating",
"description": "Features with this tag are displayed by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "access",
"description": "Layer 'Outdoor Seating' shows access=yes with a fixed text, namely 'Anyone can use this outdoor seating area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"Anyone can use this outdoor seating area.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#access",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "access",
"description": "Layer 'Outdoor Seating' shows access=customers with a fixed text, namely 'Only customers can use this outdoor seating area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "customers"
"value": "customers",
"description": "access=customers is displayed as \"Only customers can use this outdoor seating area.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#access",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "access",
"description": "Layer 'Outdoor Seating' shows access=private with a fixed text, namely 'This outdoor seating area is private.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "private"
"value": "private",
"description": "access=private is displayed as \"This outdoor seating area is private.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#access",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "seasonal",
"description": "Layer 'Outdoor Seating' shows seasonal=no with a fixed text, namely 'This outdoor seating area is available all year round.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "no"
"value": "no",
"description": "seasonal=no is displayed as \"This outdoor seating area is available all year round.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "seasonal",
"description": "Layer 'Outdoor Seating' shows seasonal=spring with a fixed text, namely 'This outdoor seating area is available in spring.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "spring"
"value": "spring",
"description": "seasonal=spring is displayed as \"This outdoor seating area is available in spring.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "seasonal",
"description": "Layer 'Outdoor Seating' shows seasonal=summer with a fixed text, namely 'This outdoor seating area is available in summer.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "summer"
"value": "summer",
"description": "seasonal=summer is displayed as \"This outdoor seating area is available in summer.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "seasonal",
"description": "Layer 'Outdoor Seating' shows seasonal=autumn with a fixed text, namely 'This outdoor seating area is available in autumn.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "autumn"
"value": "autumn",
"description": "seasonal=autumn is displayed as \"This outdoor seating area is available in autumn.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "seasonal",
"description": "Layer 'Outdoor Seating' shows seasonal=winter with a fixed text, namely 'This outdoor seating area is available in winter.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "winter"
"value": "winter",
"description": "seasonal=winter is displayed as \"This outdoor seating area is available in winter.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "seasonal",
"description": "Layer 'Outdoor Seating' shows seasonal=dry_season with a fixed text, namely 'This outdoor seating area is available in the dry season.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "dry_season"
"value": "dry_season",
"description": "seasonal=dry_season is displayed as \"This outdoor seating area is available in the dry season.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#seasonal",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cafés and pubs')"
},
{
"key": "opening_hours",
"description": "Layer 'Outdoor Seating' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "24/7"
},
{
"key": "opening_hours",
"description": "Layer 'Outdoor Seating' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "closed"
},
{
"key": "website",
"description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cafés and pubs')"
},
{
"key": "contact:website",
"description": "Layer 'Outdoor Seating' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Cafés and pubs')"
},
{
"key": "internet_access",
"description": "Layer 'Outdoor Seating' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "wlan"
},
{
"key": "internet_access",
"description": "Layer 'Outdoor Seating' shows internet_access=no with a fixed text, namely 'This place <b>does not</b> offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "no"
},
{
"key": "internet_access",
"description": "Layer 'Outdoor Seating' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
},
{
"key": "internet_access",
"description": "Layer 'Outdoor Seating' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "terminal"
},
{
"key": "internet_access",
"description": "Layer 'Outdoor Seating' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "wired"
},
{
"key": "internet_access",
"description": "Layer 'Outdoor Seating' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "terminal;wifi"
},
{
"key": "internet_access:fee",
"description": "Layer 'Outdoor Seating' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "yes"
},
{
"key": "internet_access:fee",
"description": "Layer 'Outdoor Seating' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "no"
},
{
"key": "internet_access:fee",
"description": "Layer 'Outdoor Seating' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "customers"
},
{
"key": "internet_access:ssid",
"description": "Layer 'Outdoor Seating' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access~^(.*wlan.*)$)"
},
{
"key": "internet_access:ssid",
"description": "Layer 'Outdoor Seating' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if internet_access~^(.*wlan.*)$)",
"value": "Telekom"
},
{
"key": "wheelchair",
"description": "Layer 'Outdoor Seating' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "designated"
},
{
"key": "wheelchair",
"description": "Layer 'Outdoor Seating' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
},
{
"key": "wheelchair",
"description": "Layer 'Outdoor Seating' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "limited"
},
{
"key": "wheelchair",
"description": "Layer 'Outdoor Seating' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "no"
"value": "24/7",
"description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#opening_hours_24_7",
"icon_url": "./assets/layers/questions/open24_7.svg"
},
{
"key": "heating",
"description": "Layer 'Outdoor Seating' shows heating=yes with a fixed text, namely 'This outdoor seating area is heated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "heating=yes is displayed as \"This outdoor seating area is heated.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#heating",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "heating",
"description": "Layer 'Outdoor Seating' shows heating=no with a fixed text, namely 'This outdoor seating area is not heated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "no"
"value": "no",
"description": "heating=no is displayed as \"This outdoor seating area is not heated.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#heating",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "covered",
"description": "Layer 'Outdoor Seating' shows covered=yes with a fixed text, namely 'This outdoor seating area is covered.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
"value": "yes",
"description": "covered=yes is displayed as \"This outdoor seating area is covered.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#covered",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "covered",
"description": "Layer 'Outdoor Seating' shows covered=no with a fixed text, namely 'This outdoor seating area is not covered.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "no"
},
{
"key": "smoking",
"description": "Layer 'Outdoor Seating' shows smoking=yes with a fixed text, namely 'Smoking is <b>allowed</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)",
"value": "yes"
},
{
"key": "smoking",
"description": "Layer 'Outdoor Seating' shows smoking=no with a fixed text, namely 'Smoking is <b>not allowed</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)",
"value": "no"
},
{
"key": "smoking",
"description": "Layer 'Outdoor Seating' shows smoking=outside with a fixed text, namely 'Smoking is <b>allowed outside</b>.' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)",
"value": "outside"
"value": "no",
"description": "covered=no is displayed as \"This outdoor seating area is not covered.\" by layer Outdoor Seating",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/outdoor_seating.md#covered",
"icon_url": "./assets/layers/outdoor_seating/outdoor_seating.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Cafés and pubs has a layer Food Courts showing features with this tag",
"value": "food_court"
},
{
"key": "id",
"description": "Layer 'Food Courts' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"value": "food_court",
"description": "Features with this tag are displayed by layer Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_courts.md",
"icon_url": "./assets/layers/food_courts/food_court.svg"
},
{
"key": "name",
"description": "Layer 'Food Courts' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Cafés and pubs')"
},
{
"key": "image",
"description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Food Courts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "opening_hours",
"description": "Layer 'Food Courts' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Cafés and pubs')"
},
{
"key": "opening_hours",
"description": "Layer 'Food Courts' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "closed"
},
{
"key": "wheelchair",
"description": "Layer 'Food Courts' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "designated"
},
{
"key": "wheelchair",
"description": "Layer 'Food Courts' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "yes"
},
{
"key": "wheelchair",
"description": "Layer 'Food Courts' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "limited"
},
{
"key": "wheelchair",
"description": "Layer 'Food Courts' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs')",
"value": "no"
},
{
"key": "website",
"description": "Layer 'Food Courts' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Cafés and pubs')"
},
{
"key": "contact:website",
"description": "Layer 'Food Courts' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Cafés and pubs')"
},
{
"key": "phone",
"description": "Layer 'Food Courts' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Cafés and pubs')"
},
{
"key": "contact:phone",
"description": "Layer 'Food Courts' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Cafés and pubs')"
},
{
"key": "smoking",
"description": "Layer 'Food Courts' shows smoking=yes with a fixed text, namely 'Smoking is <b>allowed</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)",
"value": "yes"
},
{
"key": "smoking",
"description": "Layer 'Food Courts' shows smoking=no with a fixed text, namely 'Smoking is <b>not allowed</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)",
"value": "no"
},
{
"key": "smoking",
"description": "Layer 'Food Courts' shows smoking=outside with a fixed text, namely 'Smoking is <b>allowed outside</b>.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cafés and pubs') (This is only shown if _country!~^(al|be)$)",
"value": "outside"
"description": "Values of `name` are shown with \"This food court is called <b>{name}</b>.\" and can be updated. The question is \"What is the name of this food court?\" by layer Food Courts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_courts.md#name",
"icon_url": "./assets/layers/food_courts/food_court.svg"
}
]
}

View file

@ -7,257 +7,289 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/campersite/caravan.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "tourism",
"description": "The MapComplete theme Campersites has a layer Camper sites showing features with this tag",
"value": "caravan_site"
"value": "caravan_site",
"description": "Features with this tag are displayed by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "id",
"description": "Layer 'Camper sites' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Campersites') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Camper sites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#images",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "panoramax",
"description": "The layer 'Camper sites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#images",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "mapillary",
"description": "The layer 'Camper sites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#images",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "wikidata",
"description": "The layer 'Camper sites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#images",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Camper sites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#images",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "name",
"description": "Layer 'Camper sites' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Campersites')"
"description": "Values of `name` are shown with \"This place is called {name}\" and can be updated. The question is \"What is this place called?\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_name",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "fee",
"description": "Layer 'Camper sites' shows fee=yes with a fixed text, namely 'You need to pay for use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
"value": "yes",
"description": "fee=yes is displayed as \"You need to pay for use\" by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_fee",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "fee",
"description": "Layer 'Camper sites' shows fee=no with a fixed text, namely 'Can be used for free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
"value": "no",
"description": "fee=no is displayed as \"Can be used for free\" by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_fee",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "charge",
"description": "Layer 'Camper sites' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Campersites') (This is only shown if fee=yes)"
"description": "Values of `charge` are shown with \"This place charges {charge}\" and can be updated. The question is \"How much does this place charge?\" by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_charge",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "sanitary_dump_station",
"description": "Layer 'Camper sites' shows sanitary_dump_station=yes with a fixed text, namely 'This place has a sanitary dump station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
"value": "yes",
"description": "sanitary_dump_station=yes is displayed as \"This place has a sanitary dump station\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_sanitary_dump",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "sanitary_dump_station",
"description": "Layer 'Camper sites' shows sanitary_dump_station=no with a fixed text, namely 'This place does not have a sanitary dump station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
"value": "no",
"description": "sanitary_dump_station=no is displayed as \"This place does not have a sanitary dump station\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_sanitary_dump",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "capacity",
"description": "Layer 'Camper sites' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Campersites')"
"description": "Values of `capacity` are shown with \"{capacity} campers can use this place at the same time\" and can be updated. The question is \"How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_capacity",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "internet_access",
"description": "Layer 'Camper sites' shows internet_access=yes with a fixed text, namely 'There is internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
"value": "yes",
"description": "internet_access=yes is displayed as \"There is internet access\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "internet_access",
"description": "Layer 'Camper sites' shows internet_access=wifi | internet_access=wlan with a fixed text, namely 'There is internet access' (in the mapcomplete.org theme 'Campersites')",
"value": "wifi"
"value": "wifi",
"description": "internet_access=wifi | internet_access=wlan is displayed as \"There is internet access\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "internet_access",
"description": "Layer 'Camper sites' shows internet_access=wifi | internet_access=wlan with a fixed text, namely 'There is internet access' (in the mapcomplete.org theme 'Campersites')",
"value": "wlan"
"value": "wlan",
"description": "internet_access=wifi | internet_access=wlan is displayed as \"There is internet access\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "internet_access",
"description": "Layer 'Camper sites' shows internet_access=no with a fixed text, namely 'There is no internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
"value": "no",
"description": "internet_access=no is displayed as \"There is no internet access\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Camper sites' shows internet_access:fee=yes with a fixed text, namely 'You need to pay extra for internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites') (This is only shown if internet_access=yes)",
"value": "yes"
"value": "yes",
"description": "internet_access:fee=yes is displayed as \"You need to pay extra for internet access\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet_fee",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Camper sites' shows internet_access:fee=no with a fixed text, namely 'You do not need to pay extra for internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites') (This is only shown if internet_access=yes)",
"value": "no"
"value": "no",
"description": "internet_access:fee=no is displayed as \"You do not need to pay extra for internet access\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_internet_fee",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "toilets",
"description": "Layer 'Camper sites' shows toilets=yes with a fixed text, namely 'This place has toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
"value": "yes",
"description": "toilets=yes is displayed as \"This place has toilets\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_toilets",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "toilets",
"description": "Layer 'Camper sites' shows toilets=no with a fixed text, namely 'This place does not have toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
"value": "no",
"description": "toilets=no is displayed as \"This place does not have toilets\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_toilets",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "website",
"description": "Layer 'Camper sites' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Campersites')"
"description": "Values of `website` are shown with \"Official website: <a href='{website}'>{website}</a>\" and can be updated. The question is \"Does this place have a website?\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_website",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "permanent_camping",
"description": "Layer 'Camper sites' shows permanent_camping=yes with a fixed text, namely 'There are some spots for long term rental, but you can also stay on a daily basis' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
"value": "yes",
"description": "permanent_camping=yes is displayed as \"There are some spots for long term rental, but you can also stay on a daily basis\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_long_term",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "permanent_camping",
"description": "Layer 'Camper sites' shows permanent_camping=no with a fixed text, namely 'There are no permanent guests here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
"value": "no",
"description": "permanent_camping=no is displayed as \"There are no permanent guests here\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_long_term",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "permanent_camping",
"description": "Layer 'Camper sites' shows permanent_camping=only with a fixed text, namely 'It is only possible to stay here if you have a long term contract (this place disappears from this map if you choose this)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "only"
"value": "only",
"description": "permanent_camping=only is displayed as \"It is only possible to stay here if you have a long term contract (this place disappears from this map if you choose this)\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_long_term",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "description",
"description": "Layer 'Camper sites' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Campersites')"
"description": "Values of `description` are shown with \"More details about this place: {description}\" and can be updated. 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)\" by layer Camper sites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#caravansites_description",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "operator",
"description": "Layer 'Camper sites' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Campersites')"
"description": "Values of `operator` are shown with \"This place is operated by {operator}\" and can be updated. The question is \"Who operates this place?\" by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#operator",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "power_supply",
"description": "Layer 'Camper sites' shows power_supply=yes with a fixed text, namely 'This place has a power supply' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
"value": "yes",
"description": "power_supply=yes is displayed as \"This place has a power supply\" by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#power_supply",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "power_supply",
"description": "Layer 'Camper sites' shows power_supply=no with a fixed text, namely 'This place does not have power supply' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
"value": "no",
"description": "power_supply=no is displayed as \"This place does not have power supply\" by layers Camper sites, Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/caravansites.md#power_supply",
"icon_url": "./assets/themes/campersite/caravan.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Campersites has a layer Sanitary dump stations showing features with this tag",
"value": "sanitary_dump_station"
},
{
"key": "id",
"description": "Layer 'Sanitary dump stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Campersites') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Sanitary dump stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "fee",
"description": "Layer 'Sanitary dump stations' shows fee=yes with a fixed text, namely 'You need to pay for use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
},
{
"key": "fee",
"description": "Layer 'Sanitary dump stations' shows fee=no with a fixed text, namely 'Can be used for free' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
},
{
"key": "charge",
"description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Campersites') (This is only shown if fee=yes)"
"value": "sanitary_dump_station",
"description": "Features with this tag are displayed by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "water_point",
"description": "Layer 'Sanitary dump stations' shows water_point=yes with a fixed text, namely 'This place has a water point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
"value": "yes",
"description": "water_point=yes is displayed as \"This place has a water point\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_waterpoint",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "water_point",
"description": "Layer 'Sanitary dump stations' shows water_point=no with a fixed text, namely 'This place does not have a water point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
"value": "no",
"description": "water_point=no is displayed as \"This place does not have a water point\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_waterpoint",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "sanitary_dump_station:grey_water",
"description": "Layer 'Sanitary dump stations' shows sanitary_dump_station:grey_water=yes with a fixed text, namely 'You can dispose of grey water here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
"value": "yes",
"description": "sanitary_dump_station:grey_water=yes is displayed as \"You can dispose of grey water here\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_grey_water",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "sanitary_dump_station:grey_water",
"description": "Layer 'Sanitary dump stations' shows sanitary_dump_station:grey_water=no with a fixed text, namely 'You cannot dispose of gray water here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
"value": "no",
"description": "sanitary_dump_station:grey_water=no is displayed as \"You cannot dispose of gray water here\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_grey_water",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "sanitary_dump_station:chemical_toilet",
"description": "Layer 'Sanitary dump stations' shows sanitary_dump_station:chemical_toilet=yes with a fixed text, namely 'You can dispose of chemical toilet waste here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
"value": "yes",
"description": "sanitary_dump_station:chemical_toilet=yes is displayed as \"You can dispose of chemical toilet waste here\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_chemical_waste",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "sanitary_dump_station:chemical_toilet",
"description": "Layer 'Sanitary dump stations' shows sanitary_dump_station:chemical_toilet=no with a fixed text, namely 'You cannot dispose of chemical toilet waste here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
"value": "no",
"description": "sanitary_dump_station:chemical_toilet=no is displayed as \"You cannot dispose of chemical toilet waste here\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_chemical_waste",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "access",
"description": "Layer 'Sanitary dump stations' shows access=network with a fixed text, namely 'You need a network key/code to use this' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "network"
"value": "network",
"description": "access=network is displayed as \"You need a network key/code to use this\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_access",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "access",
"description": "Layer 'Sanitary dump stations' shows access=customers with a fixed text, namely 'You need to be a customer of camping/campersite to use this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "customers"
"value": "customers",
"description": "access=customers is displayed as \"You need to be a customer of camping/campersite to use this place\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_access",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "access",
"description": "Layer 'Sanitary dump stations' shows access=public with a fixed text, namely 'Anyone can use this dump station' (in the mapcomplete.org theme 'Campersites')",
"value": "public"
"value": "public",
"description": "access=public is displayed as \"Anyone can use this dump station\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_access",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "access",
"description": "Layer 'Sanitary dump stations' shows access=yes with a fixed text, namely 'Anyone can use this dump station' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"Anyone can use this dump station\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_access",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
},
{
"key": "network",
"description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'network' (in the mapcomplete.org theme 'Campersites')"
},
{
"key": "operator",
"description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Campersites')"
},
{
"key": "power_supply",
"description": "Layer 'Sanitary dump stations' shows power_supply=yes with a fixed text, namely 'This place has a power supply' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "yes"
},
{
"key": "power_supply",
"description": "Layer 'Sanitary dump stations' shows power_supply=no with a fixed text, namely 'This place does not have power supply' and allows to pick this as a default answer (in the mapcomplete.org theme 'Campersites')",
"value": "no"
"description": "Values of `network` are shown with \"This station is part of network {network}\" and can be updated. The question is \"What network is this place a part of? (skip if none)\" by layer Sanitary dump stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/dumpstations.md#dumpstations_network",
"icon_url": "./assets/themes/campersite/sanitary_dump_station.svg"
}
]
}

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

View file

@ -7,186 +7,256 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/clock/clock.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Clocks has a layer Clocks showing features with this tag",
"value": "clock"
"value": "clock",
"description": "Features with this tag are displayed by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "id",
"description": "Layer 'Clocks' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Clocks') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Clocks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#images",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "panoramax",
"description": "The layer 'Clocks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#images",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "mapillary",
"description": "The layer 'Clocks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#images",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "wikidata",
"description": "The layer 'Clocks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#images",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Clocks allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#images",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "support",
"description": "Layer 'Clocks' shows support=pole with a fixed text, namely 'This clock is mounted on a pole' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "pole"
"value": "pole",
"description": "support=pole is displayed as \"This clock is mounted on a pole\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#support",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "support",
"description": "Layer 'Clocks' shows support=wall_mounted with a fixed text, namely 'This clock is mounted on a wall, usually through a support perpendicular to the wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "wall_mounted"
"value": "wall_mounted",
"description": "support=wall_mounted is displayed as \"This clock is mounted on a wall, usually through a support perpendicular to the wall\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#support",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "support",
"description": "Layer 'Clocks' shows support=wall with a fixed text, namely 'This clock is mounted directly on a wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "wall"
"value": "wall",
"description": "support=wall is displayed as \"This clock is mounted directly on a wall\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#support",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "support",
"description": "Layer 'Clocks' shows support=billboard with a fixed text, namely 'This clock is part of a billboard' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "billboard"
"value": "billboard",
"description": "support=billboard is displayed as \"This clock is part of a billboard\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#support",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "support",
"description": "Layer 'Clocks' shows support=ground with a fixed text, namely 'This clock is on the ground' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "ground"
"value": "ground",
"description": "support=ground is displayed as \"This clock is on the ground\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#support",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "display",
"description": "Layer 'Clocks' shows display=analog with a fixed text, namely 'This clock displays the time with hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "analog"
"value": "analog",
"description": "display=analog is displayed as \"This clock displays the time with hands\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#display",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "display",
"description": "Layer 'Clocks' shows display=digital with a fixed text, namely 'This clock displays the time with digits' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "digital"
"value": "digital",
"description": "display=digital is displayed as \"This clock displays the time with digits\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#display",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "display",
"description": "Layer 'Clocks' shows display=sundial with a fixed text, namely 'This clock displays the time with a sundial' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "sundial"
"value": "sundial",
"description": "display=sundial is displayed as \"This clock displays the time with a sundial\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#display",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "display",
"description": "Layer 'Clocks' shows display=unorthodox with a fixed text, namely 'This clock displays the time in a non-standard way, e.g using binary, water or something else' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "unorthodox"
"value": "unorthodox",
"description": "display=unorthodox is displayed as \"This clock displays the time in a non-standard way, e.g using binary, water or something else\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#display",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "indoor",
"description": "Layer 'Clocks' shows indoor=yes with a fixed text, namely 'This clock is indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "yes"
"value": "yes",
"description": "indoor=yes is displayed as \"This clock is indoors\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#indoor",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "indoor",
"description": "Layer 'Clocks' shows indoor=no with a fixed text, namely 'This clock is outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "no"
"value": "no",
"description": "indoor=no is displayed as \"This clock is outdoors\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#indoor",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "visibility",
"description": "Layer 'Clocks' shows visibility=house with a fixed text, namely 'This clock is visible from about 5 meters away (small wall-mounted clock)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks') (This is only shown if indoor!=yes)",
"value": "house"
"value": "house",
"description": "visibility=house is displayed as \"This clock is visible from about 5 meters away (small wall-mounted clock)\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#visibility",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "visibility",
"description": "Layer 'Clocks' shows visibility=street with a fixed text, namely 'This clock is visible from about 20 meters away (medium size billboard clock)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks') (This is only shown if indoor!=yes)",
"value": "street"
"value": "street",
"description": "visibility=street is displayed as \"This clock is visible from about 20 meters away (medium size billboard clock)\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#visibility",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "visibility",
"description": "Layer 'Clocks' shows visibility=area with a fixed text, namely 'This clock is visible from more than 20 meters away (e.g. a church clock or station clock)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks') (This is only shown if indoor!=yes)",
"value": "area"
"value": "area",
"description": "visibility=area is displayed as \"This clock is visible from more than 20 meters away (e.g. a church clock or station clock)\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#visibility",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "date",
"description": "Layer 'Clocks' shows date=yes with a fixed text, namely 'This clock also displays the date' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "yes"
"value": "yes",
"description": "date=yes is displayed as \"This clock also displays the date\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#date",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "date",
"description": "Layer 'Clocks' shows date=no with a fixed text, namely 'This clock does not display the date' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "no"
"value": "no",
"description": "date=no is displayed as \"This clock does not display the date\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#date",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "date",
"description": "Layer 'Clocks' shows date= with a fixed text, namely 'This clock does probably not display the date' (in the mapcomplete.org theme 'Clocks') Picking this answer will delete the key date.",
"value": ""
"description": "date= is displayed as \"This clock does probably not display the date\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#date",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "thermometer",
"description": "Layer 'Clocks' shows thermometer=yes with a fixed text, namely 'This clock also displays the temperature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "yes"
"value": "yes",
"description": "thermometer=yes is displayed as \"This clock also displays the temperature\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#thermometer",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "thermometer",
"description": "Layer 'Clocks' shows thermometer=no with a fixed text, namely 'This clock does not display the temperature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "no"
"value": "no",
"description": "thermometer=no is displayed as \"This clock does not display the temperature\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#thermometer",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "thermometer",
"description": "Layer 'Clocks' shows thermometer= with a fixed text, namely 'This clock does probably not display the temperature' (in the mapcomplete.org theme 'Clocks') Picking this answer will delete the key thermometer.",
"value": ""
"description": "thermometer= is displayed as \"This clock does probably not display the temperature\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#thermometer",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "barometer",
"description": "Layer 'Clocks' shows barometer=yes with a fixed text, namely 'This clock also displays the air pressure' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "yes"
"value": "yes",
"description": "barometer=yes is displayed as \"This clock also displays the air pressure\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#barometer",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "barometer",
"description": "Layer 'Clocks' shows barometer=no with a fixed text, namely 'This clock does not display the air pressure' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "no"
"value": "no",
"description": "barometer=no is displayed as \"This clock does not display the air pressure\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#barometer",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "barometer",
"description": "Layer 'Clocks' shows barometer= with a fixed text, namely 'This clock does probably not display the air pressure' (in the mapcomplete.org theme 'Clocks') Picking this answer will delete the key barometer.",
"value": ""
"description": "barometer= is displayed as \"This clock does probably not display the air pressure\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#barometer",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "hygrometer",
"description": "Layer 'Clocks' shows hygrometer=yes with a fixed text, namely 'This clock also displays the humidity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "yes"
"value": "yes",
"description": "hygrometer=yes is displayed as \"This clock also displays the humidity\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#hygrometer",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "hygrometer",
"description": "Layer 'Clocks' shows hygrometer=no with a fixed text, namely 'This clock does not display the humidity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "no"
"value": "no",
"description": "hygrometer=no is displayed as \"This clock does not display the humidity\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#hygrometer",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "hygrometer",
"description": "Layer 'Clocks' shows hygrometer= with a fixed text, namely 'This clock does probably not display the humidity' (in the mapcomplete.org theme 'Clocks') Picking this answer will delete the key hygrometer.",
"value": ""
"description": "hygrometer= is displayed as \"This clock does probably not display the humidity\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#hygrometer",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "faces",
"description": "Layer 'Clocks' shows and asks freeform values for key 'faces' (in the mapcomplete.org theme 'Clocks')"
"description": "Values of `faces` are shown with \"This clock has {faces} faces\" and can be updated. The question is \"How many faces does this clock have?\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#faces",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "faces",
"description": "Layer 'Clocks' shows faces=1 with a fixed text, namely 'This clock has one face' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "1"
"value": "1",
"description": "faces=1 is displayed as \"This clock has one face\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#faces",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "faces",
"description": "Layer 'Clocks' shows faces=2 with a fixed text, namely 'This clock has two faces' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "2"
"value": "2",
"description": "faces=2 is displayed as \"This clock has two faces\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#faces",
"icon_url": "./assets/layers/clock/clock.svg"
},
{
"key": "faces",
"description": "Layer 'Clocks' shows faces=4 with a fixed text, namely 'This clock has four faces' and allows to pick this as a default answer (in the mapcomplete.org theme 'Clocks')",
"value": "4"
"value": "4",
"description": "faces=4 is displayed as \"This clock has four faces\" by layer Clocks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/clock.md#faces",
"icon_url": "./assets/layers/clock/clock.svg"
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -7,532 +7,243 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/cyclestreets/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "cyclestreet",
"description": "The MapComplete theme Cyclestreets has a layer Cyclestreets showing features with this tag",
"value": "yes"
"value": "yes",
"description": "Features with this tag are displayed by layer Cyclestreets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md"
},
{
"key": "bicycle_road",
"description": "The MapComplete theme Cyclestreets has a layer Cyclestreets showing features with this tag",
"value": "yes"
"value": "yes",
"description": "Features with this tag are displayed by layer Cyclestreets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md"
},
{
"key": "id",
"description": "Layer 'Cyclestreets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Cyclestreets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#images"
},
{
"key": "panoramax",
"description": "The layer 'Cyclestreets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#images"
},
{
"key": "mapillary",
"description": "The layer 'Cyclestreets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#images"
},
{
"key": "wikidata",
"description": "The layer 'Cyclestreets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#images"
},
{
"key": "wikipedia",
"description": "The layer 'Cyclestreets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#images"
},
{
"key": "cyclestreet",
"description": "Layer 'Cyclestreets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
"value": "yes",
"description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "maxspeed",
"description": "Layer 'Cyclestreets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "30"
"value": "30",
"description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "overtaking:motor_vehicle",
"description": "Layer 'Cyclestreets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "no"
"value": "no",
"description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'Cyclestreets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
"value": ""
"description": "cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= is displayed as \"This street is a cyclestreet (and has a speed limit of 30 km/h)\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "bicycle_road",
"description": "Layer 'Cyclestreets' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
"value": "yes",
"description": "bicycle_road=yes is displayed as \"This street is a bicycle road\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "bicycle_road",
"description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
"value": "yes",
"description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "proposed:bicycle_road",
"description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
"value": ""
"description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "maxspeed",
"description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "30"
"value": "30",
"description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "source:maxspeed",
"description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "DE:bicycle_road"
"value": "DE:bicycle_road",
"description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "vehicle",
"description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "no"
"value": "no",
"description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "bicycle",
"description": "Layer 'Cyclestreets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "designated"
"value": "designated",
"description": "bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated is displayed as \"This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "cyclestreet",
"description": "Layer 'Cyclestreets' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
"value": "yes",
"description": "cyclestreet=yes & proposed:cyclestreet= is displayed as \"This street is a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'Cyclestreets' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
"value": ""
"description": "cyclestreet=yes & proposed:cyclestreet= is displayed as \"This street is a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "cyclestreet",
"description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
"value": ""
"description": "cyclestreet= & proposed:cyclestreet=yes is displayed as \"This street will become a cyclestreet soon\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
"value": "yes",
"description": "cyclestreet= & proposed:cyclestreet=yes is displayed as \"This street will become a cyclestreet soon\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "bicycle_road",
"description": "Layer 'Cyclestreets' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
"value": ""
"description": "bicycle_road= & proposed:bicycle_road=yes is displayed as \"This street will become a bicycle road soon\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "proposed:bicycle_road",
"description": "Layer 'Cyclestreets' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
"value": "yes",
"description": "bicycle_road= & proposed:bicycle_road=yes is displayed as \"This street will become a bicycle road soon\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "cyclestreet",
"description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
"value": ""
"description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
"value": ""
"description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "bicycle_road",
"description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
"value": ""
"description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "proposed:bicycle_road",
"description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
"value": ""
"description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "overtaking:motor_vehicle",
"description": "Layer 'Cyclestreets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.",
"value": ""
"description": "cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= is displayed as \"This street is not a cyclestreet\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#is_cyclestreet"
},
{
"key": "traffic_sign",
"description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1020-30"
"value": "DE:244.1,1020-30",
"description": "traffic_sign=DE:244.1,1020-30 is displayed as \"Residents allowed\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#supplementary_sign",
"icon_url": "./assets/themes/cyclestreets/Zeichen_244_1020-30.svg"
},
{
"key": "traffic_sign",
"description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1022-12,1024-10"
"value": "DE:244.1,1022-12,1024-10",
"description": "traffic_sign=DE:244.1,1022-12,1024-10 is displayed as \"Motor vehicles allowed\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#supplementary_sign",
"icon_url": "./assets/themes/cyclestreets/Zeichen_244_KFZ_frei.svg"
},
{
"key": "traffic_sign",
"description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1022-12"
"value": "DE:244.1,1022-12",
"description": "traffic_sign=DE:244.1,1022-12 is displayed as \"Motorcycles allowed\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#supplementary_sign",
"icon_url": "./assets/themes/cyclestreets/Zeichen_244_1022-12.svg"
},
{
"key": "traffic_sign",
"description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1024-10"
"value": "DE:244.1,1024-10",
"description": "traffic_sign=DE:244.1,1024-10 is displayed as \"Cars allowed\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#supplementary_sign",
"icon_url": "./assets/themes/cyclestreets/Zeichen_244_1024-10.svg"
},
{
"key": "traffic_sign",
"description": "Layer 'Cyclestreets' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1"
"value": "DE:244.1",
"description": "traffic_sign=DE:244.1 is displayed as \"There are no supplementary signs at this bicycle road.\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#supplementary_sign",
"icon_url": "./assets/themes/cyclestreets/Zeichen_244.svg"
},
{
"key": "cyclestreet:start_date",
"description": "Layer 'Cyclestreets' shows and asks freeform values for key 'cyclestreet:start_date' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if proposed:cyclestreet=yes)"
"description": "Values of `cyclestreet:start_date` are shown with \"This street will become a cyclestreet at {cyclestreet:start_date}\" and can be updated. The question is \"When will this street become a cyclestreet?\" by layers Cyclestreets, Future cyclestreet, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cyclestreets.md#future_cyclestreet"
},
{
"key": "proposed:cyclestreet",
"description": "The MapComplete theme Cyclestreets has a layer Future cyclestreet showing features with this tag",
"value": "yes"
"value": "yes",
"description": "Features with this tag are displayed by layer Future cyclestreet",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toekomstige_fietsstraat.md"
},
{
"key": "proposed:bicycle_road",
"description": "The MapComplete theme Cyclestreets has a layer Future cyclestreet showing features with this tag",
"value": "yes"
},
{
"key": "id",
"description": "Layer 'Future cyclestreet' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "cyclestreet",
"description": "Layer 'Future cyclestreet' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "maxspeed",
"description": "Layer 'Future cyclestreet' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "30"
},
{
"key": "overtaking:motor_vehicle",
"description": "Layer 'Future cyclestreet' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "no"
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'Future cyclestreet' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
"value": ""
},
{
"key": "bicycle_road",
"description": "Layer 'Future cyclestreet' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "bicycle_road",
"description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "proposed:bicycle_road",
"description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
"value": ""
},
{
"key": "maxspeed",
"description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "30"
},
{
"key": "source:maxspeed",
"description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "DE:bicycle_road"
},
{
"key": "vehicle",
"description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "no"
},
{
"key": "bicycle",
"description": "Layer 'Future cyclestreet' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "designated"
},
{
"key": "cyclestreet",
"description": "Layer 'Future cyclestreet' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'Future cyclestreet' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
"value": ""
},
{
"key": "cyclestreet",
"description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
"value": ""
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "bicycle_road",
"description": "Layer 'Future cyclestreet' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
"value": ""
},
{
"key": "proposed:bicycle_road",
"description": "Layer 'Future cyclestreet' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "cyclestreet",
"description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
"value": ""
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
"value": ""
},
{
"key": "bicycle_road",
"description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
"value": ""
},
{
"key": "proposed:bicycle_road",
"description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
"value": ""
},
{
"key": "overtaking:motor_vehicle",
"description": "Layer 'Future cyclestreet' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.",
"value": ""
},
{
"key": "traffic_sign",
"description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1020-30"
},
{
"key": "traffic_sign",
"description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1022-12,1024-10"
},
{
"key": "traffic_sign",
"description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1022-12"
},
{
"key": "traffic_sign",
"description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1024-10"
},
{
"key": "traffic_sign",
"description": "Layer 'Future cyclestreet' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1"
},
{
"key": "cyclestreet:start_date",
"description": "Layer 'Future cyclestreet' shows and asks freeform values for key 'cyclestreet:start_date' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if proposed:cyclestreet=yes)"
"value": "yes",
"description": "Features with this tag are displayed by layer Future cyclestreet",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toekomstige_fietsstraat.md"
},
{
"key": "highway",
"description": "The MapComplete theme Cyclestreets has a layer All streets showing features with this tag",
"value": "residential"
"value": "residential",
"description": "Features with this tag are displayed by layer All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/not_cyclestreets.md"
},
{
"key": "highway",
"description": "The MapComplete theme Cyclestreets has a layer All streets showing features with this tag",
"value": "tertiary"
"value": "tertiary",
"description": "Features with this tag are displayed by layer All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/not_cyclestreets.md"
},
{
"key": "highway",
"description": "The MapComplete theme Cyclestreets has a layer All streets showing features with this tag",
"value": "unclassified"
},
{
"key": "id",
"description": "Layer 'All streets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "cyclestreet",
"description": "Layer 'All streets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "maxspeed",
"description": "Layer 'All streets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "30"
},
{
"key": "overtaking:motor_vehicle",
"description": "Layer 'All streets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "no"
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'All streets' shows cyclestreet=yes & maxspeed=30 & overtaking:motor_vehicle=no & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
"value": ""
},
{
"key": "bicycle_road",
"description": "Layer 'All streets' shows bicycle_road=yes with a fixed text, namely 'This street is a bicycle road' (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "bicycle_road",
"description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "proposed:bicycle_road",
"description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
"value": ""
},
{
"key": "maxspeed",
"description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "30"
},
{
"key": "source:maxspeed",
"description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "DE:bicycle_road"
},
{
"key": "vehicle",
"description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "no"
},
{
"key": "bicycle",
"description": "Layer 'All streets' shows bicycle_road=yes & proposed:bicycle_road= & maxspeed=30 & source:maxspeed=DE:bicycle_road & vehicle=no & bicycle=designated with a fixed text, namely 'This street is a bicycle road (has a speed limit of 30 km/h and vehicles are not allowed) (sign will be asked later)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "designated"
},
{
"key": "cyclestreet",
"description": "Layer 'All streets' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'All streets' shows cyclestreet=yes & proposed:cyclestreet= with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
"value": ""
},
{
"key": "cyclestreet",
"description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
"value": ""
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclestreet soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "bicycle_road",
"description": "Layer 'All streets' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
"value": ""
},
{
"key": "proposed:bicycle_road",
"description": "Layer 'All streets' shows bicycle_road= & proposed:bicycle_road=yes with a fixed text, namely 'This street will become a bicycle road soon' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets')",
"value": "yes"
},
{
"key": "cyclestreet",
"description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.",
"value": ""
},
{
"key": "proposed:cyclestreet",
"description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.",
"value": ""
},
{
"key": "bicycle_road",
"description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key bicycle_road.",
"value": ""
},
{
"key": "proposed:bicycle_road",
"description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key proposed:bicycle_road.",
"value": ""
},
{
"key": "overtaking:motor_vehicle",
"description": "Layer 'All streets' shows cyclestreet= & proposed:cyclestreet= & bicycle_road= & proposed:bicycle_road= & overtaking:motor_vehicle= with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.",
"value": ""
},
{
"key": "traffic_sign",
"description": "Layer 'All streets' shows traffic_sign=DE:244.1,1020-30 with a fixed text, namely 'Residents allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1020-30"
},
{
"key": "traffic_sign",
"description": "Layer 'All streets' shows traffic_sign=DE:244.1,1022-12,1024-10 with a fixed text, namely 'Motor vehicles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1022-12,1024-10"
},
{
"key": "traffic_sign",
"description": "Layer 'All streets' shows traffic_sign=DE:244.1,1022-12 with a fixed text, namely 'Motorcycles allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1022-12"
},
{
"key": "traffic_sign",
"description": "Layer 'All streets' shows traffic_sign=DE:244.1,1024-10 with a fixed text, namely 'Cars allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1,1024-10"
},
{
"key": "traffic_sign",
"description": "Layer 'All streets' shows traffic_sign=DE:244.1 with a fixed text, namely 'There are no supplementary signs at this bicycle road.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if bicycle_road=yes & _country=de)",
"value": "DE:244.1"
},
{
"key": "cyclestreet:start_date",
"description": "Layer 'All streets' shows and asks freeform values for key 'cyclestreet:start_date' (in the mapcomplete.org theme 'Cyclestreets') (This is only shown if proposed:cyclestreet=yes)"
"value": "unclassified",
"description": "Features with this tag are displayed by layer All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/not_cyclestreets.md"
}
]
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -7,269 +7,376 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/drinking_water/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Drinking Water has a layer Drinking water showing features with this tag",
"value": "drinking_water"
"value": "drinking_water",
"description": "Features with this tag are displayed by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "drinking_water",
"description": "The MapComplete theme Drinking Water has a layer Drinking water showing features with this tag",
"value": "yes"
"value": "yes",
"description": "Features with this tag are displayed by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "disused:amenity",
"description": "The MapComplete theme Drinking Water has a layer Drinking water showing features with this tag",
"value": "drinking_water"
"value": "drinking_water",
"description": "Features with this tag are displayed by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "id",
"description": "Layer 'Drinking water' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "panoramax",
"description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "mapillary",
"description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "wikidata",
"description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Drinking water allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#images",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "operational_status",
"description": "Layer 'Drinking water' shows and asks freeform values for key 'operational_status' (in the mapcomplete.org theme 'Drinking Water')"
"description": "Values of `operational_status` are shown with \"The operational status is <i>{operational_status}</i>\" and can be updated. The question is \"Is this drinking water spot still operational?\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "operational_status",
"description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') Picking this answer will delete the key operational_status.",
"value": ""
"description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "disused:amenity",
"description": "Layer 'Drinking water' shows operational_status= & disused:amenity= with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') Picking this answer will delete the key disused:amenity.",
"value": ""
"description": "operational_status= & disused:amenity= is displayed as \"This drinking water works\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "operational_status",
"description": "Layer 'Drinking water' shows operational_status=broken with a fixed text, namely 'This drinking water is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "broken"
"value": "broken",
"description": "operational_status=broken is displayed as \"This drinking water is broken\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "operational_status",
"description": "Layer 'Drinking water' shows operational_status=closed with a fixed text, namely 'This drinking water is closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "closed"
"value": "closed",
"description": "operational_status=closed is displayed as \"This drinking water is closed\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "disused:amenity",
"description": "Layer 'Drinking water' shows disused:amenity=drinking_water with a fixed text, namely 'This drinking water is permanently closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "drinking_water"
"value": "drinking_water",
"description": "disused:amenity=drinking_water is displayed as \"This drinking water is permanently closed\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Still_in_use_",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "fee",
"description": "Layer 'Drinking water' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "no"
"value": "no",
"description": "fee=no is displayed as \"Free to use\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#fee",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "fee",
"description": "Layer 'Drinking water' shows fee=yes with a fixed text, namely 'One needs to pay to use this drinking water point' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "yes"
"value": "yes",
"description": "fee=yes is displayed as \"One needs to pay to use this drinking water point\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#fee",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "fountain",
"description": "Layer 'Drinking water' shows fountain=bubbler with a fixed text, namely 'This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "bubbler"
"value": "bubbler",
"description": "fountain=bubbler is displayed as \"This is a bubbler fountain. A water jet to drink from is sent upwards, typically controlled by a push button.\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type",
"icon_url": "./assets/layers/drinking_water/bubbler.svg"
},
{
"key": "fountain",
"description": "Layer 'Drinking water' shows fountain=bottle_refill with a fixed text, namely 'This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "bottle_refill"
"value": "bottle_refill",
"description": "fountain=bottle_refill is displayed as \"This is a bottle refill point where the water is sent downwards, typically controlled by a push button or a motion sensor. Drinking directly from the stream might be very hard or impossible.\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type",
"icon_url": "./assets/layers/drinking_water/bottle.svg"
},
{
"key": "man_made",
"description": "Layer 'Drinking water' shows man_made=water_tap with a fixed text, namely 'This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "water_tap"
"value": "water_tap",
"description": "man_made=water_tap is displayed as \"This is a water tap. The water flows downward and the stream is controlled by a valve or push-button.\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#type",
"icon_url": "./assets/layers/drinking_water/tap.svg"
},
{
"key": "bottle",
"description": "Layer 'Drinking water' shows bottle=yes with a fixed text, namely 'It is easy to refill water bottles' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if fountain!=bottle_refill)",
"value": "yes"
"value": "yes",
"description": "bottle=yes is displayed as \"It is easy to refill water bottles\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "bottle",
"description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if fountain!=bottle_refill)",
"value": "no"
"value": "no",
"description": "bottle=no is displayed as \"Water bottles may not fit\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#Bottle_refill",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "iced_water",
"description": "Layer 'Drinking water' shows iced_water=yes with a fixed text, namely 'Ice-cold water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "yes"
"value": "yes",
"description": "iced_water=yes is displayed as \"Ice-cold water is provided here\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "cold_water",
"description": "Layer 'Drinking water' shows cold_water=yes with a fixed text, namely 'Actively cooled water is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "yes"
"value": "yes",
"description": "cold_water=yes is displayed as \"Actively cooled water is available here\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "room_temperature_water",
"description": "Layer 'Drinking water' shows room_temperature_water=yes with a fixed text, namely 'Ambient temperature water (without active cooling or heating) is available here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "yes"
"value": "yes",
"description": "room_temperature_water=yes is displayed as \"Ambient temperature water (without active cooling or heating) is available here\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "warm_water",
"description": "Layer 'Drinking water' shows warm_water=yes with a fixed text, namely 'Warmed water is provided here; the water is not dangerously hot' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "yes"
"value": "yes",
"description": "warm_water=yes is displayed as \"Warmed water is provided here; the water is not dangerously hot\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "hot_water",
"description": "Layer 'Drinking water' shows hot_water=yes with a fixed text, namely 'Hot water is provided here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "yes"
"value": "yes",
"description": "hot_water=yes is displayed as \"Hot water is provided here\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#temperature_cold",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "seasonal",
"description": "Layer 'Drinking water' shows seasonal=no with a fixed text, namely 'Available all around the year' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "no"
"value": "no",
"description": "seasonal=no is displayed as \"Available all around the year\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "seasonal",
"description": "Layer 'Drinking water' shows seasonal=summer with a fixed text, namely 'Only available in summer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "summer"
"value": "summer",
"description": "seasonal=summer is displayed as \"Only available in summer\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "seasonal",
"description": "Layer 'Drinking water' shows seasonal=spring;summer;autumn with a fixed text, namely 'Closed during the winter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "spring;summer;autumn"
"value": "spring;summer;autumn",
"description": "seasonal=spring;summer;autumn is displayed as \"Closed during the winter\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#seasonal",
"icon_url": "./assets/layers/drinking_water/no_winter.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Drinking water' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Drinking Water')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "seasonal",
"description": "Layer 'Drinking water' shows seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) with a fixed text, namely 'This drinking water fountain is closed this season. As such, the opening hours are not shown.' (in the mapcomplete.org theme 'Drinking Water')"
"description": "seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)) is displayed as \"This drinking water fountain is closed this season. As such, the opening hours are not shown.\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Drinking water' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "24/7"
"value": "24/7",
"description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7",
"icon_url": "./assets/layers/questions/open24_7.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Drinking water' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Drinking Water')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#opening_hours_24_7",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "tourism",
"description": "Layer 'Drinking water' shows tourism=artwork with a fixed text, namely 'This drinking water point has an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "artwork"
"value": "artwork",
"description": "tourism=artwork is displayed as \"This drinking water point has an integrated artwork\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "not:tourism:artwork",
"description": "Layer 'Drinking water' shows not:tourism:artwork=yes with a fixed text, namely 'This drinking water point does not have an integrated artwork' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water')",
"value": "yes"
"value": "yes",
"description": "not:tourism:artwork=yes is displayed as \"This drinking water point does not have an integrated artwork\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "tourism",
"description": "Layer 'Drinking water' shows tourism= with a fixed text, namely 'This drinking water point <span class=\"subtle\">probably</span> doesn't have an integrated artwork' (in the mapcomplete.org theme 'Drinking Water') Picking this answer will delete the key tourism.",
"value": ""
"description": "tourism= is displayed as \"This drinking water point <span class=\"subtle\">probably</span> doesn't have an integrated artwork\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#bench_artwork",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)"
"description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "architecture"
"value": "architecture",
"description": "artwork_type=architecture is displayed as \"Architecture\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "mural"
"value": "mural",
"description": "artwork_type=mural is displayed as \"Mural\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "painting"
"value": "painting",
"description": "artwork_type=painting is displayed as \"Painting\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "sculpture"
"value": "sculpture",
"description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "statue"
"value": "statue",
"description": "artwork_type=statue is displayed as \"Statue\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "bust"
"value": "bust",
"description": "artwork_type=bust is displayed as \"Bust\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "stone"
"value": "stone",
"description": "artwork_type=stone is displayed as \"Stone\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "installation"
"value": "installation",
"description": "artwork_type=installation is displayed as \"Installation\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "graffiti"
"value": "graffiti",
"description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "relief"
"value": "relief",
"description": "artwork_type=relief is displayed as \"Relief\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "azulejo"
"value": "azulejo",
"description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "tilework"
"value": "tilework",
"description": "artwork_type=tilework is displayed as \"Tilework\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artwork_type",
"description": "Layer 'Drinking water' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)",
"value": "woodcarving"
"value": "woodcarving",
"description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artwork_type",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artist:wikidata",
"description": "Layer 'Drinking water' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)"
"description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_wikidata",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "artist_name",
"description": "Layer 'Drinking water' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)"
"description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_artist_name",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "website",
"description": "Layer 'Drinking water' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)"
"description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_website",
"icon_url": "./assets/layers/drinking_water/drips.svg"
},
{
"key": "subject:wikidata",
"description": "Layer 'Drinking water' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Drinking Water') (This is only shown if tourism=artwork)"
"description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Drinking water",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/drinking_water.md#artwork_subject",
"icon_url": "./assets/layers/drinking_water/drips.svg"
}
]
}

View file

@ -7,534 +7,609 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/school/college.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Education has a layer Childcare showing features with this tag",
"value": "childcare"
"value": "childcare",
"description": "Features with this tag are displayed by layer Childcare",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md"
},
{
"key": "id",
"description": "Layer 'Childcare' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Education') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Childcare, Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "name",
"description": "Layer 'Childcare' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Education')"
"description": "Values of `name` are shown with \"This facility is named <b>{name}</b>\" and can be updated. The question is \"What is the name of this facility?\" by layer Childcare",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#name"
},
{
"key": "website",
"description": "Layer 'Childcare' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Education')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layers Childcare, Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Childcare' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Education')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layers Childcare, Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "email",
"description": "Layer 'Childcare' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Education')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Childcare, Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Childcare' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Education')"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layers Childcare, Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Childcare' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Education')"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layers Childcare, Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "phone",
"description": "Layer 'Childcare' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Education')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Childcare, Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Childcare' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Education')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Childcare, Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Childcare' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Education') (This is only shown if amenity=childcare)"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When is this childcare opened?\" by layer Childcare",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#opening_hours"
},
{
"key": "opening_hours",
"description": "Layer 'Childcare' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Education') (This is only shown if amenity=childcare)",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Childcare",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#opening_hours"
},
{
"key": "capacity",
"description": "Layer 'Childcare' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Education')"
"description": "Values of `capacity` are shown with \"This facility has room for {capacity} kids\" and can be updated. The question is \"How much kids (at most) can be enrolled here?\" by layer Childcare",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/childcare.md#capacity"
},
{
"key": "amenity",
"description": "The MapComplete theme Education has a layer Primary and secondary schools showing features with this tag",
"value": "school"
"value": "school",
"description": "Features with this tag are displayed by layers Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Education has a layer Primary and secondary schools showing features with this tag",
"value": "kindergarten"
},
{
"key": "id",
"description": "Layer 'Primary and secondary schools' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Education') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"value": "kindergarten",
"description": "Features with this tag are displayed by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "image",
"description": "The layer 'Primary and secondary schools allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#images",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "panoramax",
"description": "The layer 'Primary and secondary schools allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#images",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "mapillary",
"description": "The layer 'Primary and secondary schools allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#images",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "wikidata",
"description": "The layer 'Primary and secondary schools allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#images",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Primary and secondary schools allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#images",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "name",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Education')"
},
{
"key": "phone",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Education')"
},
{
"key": "contact:phone",
"description": "Layer 'Primary and secondary schools' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Education')"
},
{
"key": "email",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Education')"
},
{
"key": "contact:email",
"description": "Layer 'Primary and secondary schools' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Education')"
},
{
"key": "operator:email",
"description": "Layer 'Primary and secondary schools' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Education')"
},
{
"key": "website",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Education')"
},
{
"key": "contact:website",
"description": "Layer 'Primary and secondary schools' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Education')"
"description": "Values of `name` are shown with \"This school is named {name}\" and can be updated. The question is \"What is the name of this school?\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#school_name",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "addr:street",
"description": "Layer 'Primary and secondary schools' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Education')",
"value": ""
"description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#header",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "addr:unit",
"description": "Layer 'Primary and secondary schools' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Education')",
"value": ""
"description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#header",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "addr:housenumber",
"description": "Layer 'Primary and secondary schools' shows addr:street= & addr:unit= & addr:housenumber= with a fixed text, namely 'No address is known' (in the mapcomplete.org theme 'Education')",
"value": ""
"description": "addr:street= & addr:unit= & addr:housenumber= is displayed as \"No address is known\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#header",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "addr:housenumber",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'addr:housenumber' (in the mapcomplete.org theme 'Education')"
"description": "Values of `addr:housenumber` are shown with \"The house number is <b>{addr:housenumber}</b>\" and can be updated. The question is \"What is the number of this house?\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#housenumber",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "nohousenumber",
"description": "Layer 'Primary and secondary schools' shows nohousenumber=yes with a fixed text, namely 'This building has no house number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "yes"
"value": "yes",
"description": "nohousenumber=yes is displayed as \"This building has no house number\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#housenumber",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "addr:street",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Education') (This is only shown if nohousenumber!~^(yes)$)"
"description": "Values of `addr:street` are shown with \"This address is in street <b>{addr:street}</b>\" and can be updated. The question is \"What street is this address located in?\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#street",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "addr:unit",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'addr:unit' (in the mapcomplete.org theme 'Education')"
"description": "Values of `addr:unit` are shown with \"The unit number is <b>{addr:unit}</b>\" and can be updated. The question is \"What is the unit number or letter?\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#unit",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "addr:unit",
"description": "Layer 'Primary and secondary schools' shows addr:unit= with a fixed text, namely 'No unit number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') Picking this answer will delete the key addr:unit.",
"value": ""
"description": "addr:unit= is displayed as \"No unit number\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#unit",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "capacity",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Education')"
"description": "Values of `capacity` are shown with \"This school can enroll at most {capacity} students\" and can be updated. The question is \"How much students can at most enroll in this school?\" by layers Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#capacity",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school",
"description": "Layer 'Primary and secondary schools' shows school=kindergarten with a fixed text, namely 'This is a school with a kindergarten section where young kids receive some education which prepares reading and writing.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be)",
"value": "kindergarten"
"value": "kindergarten",
"description": "school=kindergarten is displayed as \"This is a school with a kindergarten section where young kids receive some education which prepares reading and writing.\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#education_level_belgium",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school",
"description": "Layer 'Primary and secondary schools' shows school=primary with a fixed text, namely 'This is a school where one learns primary skills such as basic literacy and numerical skills. <div class='subtle'>Pupils typically enroll from 6 years old till 12 years old</div>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be)",
"value": "primary"
"value": "primary",
"description": "school=primary is displayed as \"This is a school where one learns primary skills such as basic literacy and numerical skills. <div class='subtle'>Pupils typically enroll from 6 years old till 12 years old</div>\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#education_level_belgium",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school",
"description": "Layer 'Primary and secondary schools' shows school=secondary with a fixed text, namely 'This is a secondary school which offers all grades' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be)",
"value": "secondary"
"value": "secondary",
"description": "school=secondary is displayed as \"This is a secondary school which offers all grades\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#education_level_belgium",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school",
"description": "Layer 'Primary and secondary schools' shows school=lower_secondary with a fixed text, namely 'This is a secondary school which does <i>not</i> have all grades, but offers <b>first and second</b> grade' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be)",
"value": "lower_secondary"
"value": "lower_secondary",
"description": "school=lower_secondary is displayed as \"This is a secondary school which does <i>not</i> have all grades, but offers <b>first and second</b> grade\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#education_level_belgium",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school",
"description": "Layer 'Primary and secondary schools' shows school=middle_secondary with a fixed text, namely 'This is a secondary school which does <i>not</i> have all grades, but offers <b>third and fourth</b> grade' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be)",
"value": "middle_secondary"
"value": "middle_secondary",
"description": "school=middle_secondary is displayed as \"This is a secondary school which does <i>not</i> have all grades, but offers <b>third and fourth</b> grade\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#education_level_belgium",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school",
"description": "Layer 'Primary and secondary schools' shows school=upper_secondary with a fixed text, namely 'This is a secondary school which does <i>not</i> have all grades, but offers <b>fifth and sixth</b> grade' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be)",
"value": "upper_secondary"
"value": "upper_secondary",
"description": "school=upper_secondary is displayed as \"This is a secondary school which does <i>not</i> have all grades, but offers <b>fifth and sixth</b> grade\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#education_level_belgium",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school",
"description": "Layer 'Primary and secondary schools' shows school=post_secondary with a fixed text, namely 'This school offers post-secondary education (e.g. a seventh or eight specialisation year)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be)",
"value": "post_secondary"
"value": "post_secondary",
"description": "school=post_secondary is displayed as \"This school offers post-secondary education (e.g. a seventh or eight specialisation year)\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#education_level_belgium",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:special_needs",
"description": "Layer 'Primary and secondary schools' shows school:special_needs=only with a fixed text, namely 'This school is only for special need students; a certificate is needed to enroll' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "only"
"value": "only",
"description": "school:special_needs=only is displayed as \"This school is only for special need students; a certificate is needed to enroll\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#is_special_needs",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:special_needs",
"description": "Layer 'Primary and secondary schools' shows school:special_needs=separated with a fixed text, namely 'This school has a separate section for special need students.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "separated"
"value": "separated",
"description": "school:special_needs=separated is displayed as \"This school has a separate section for special need students.\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#is_special_needs",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:special_needs",
"description": "Layer 'Primary and secondary schools' shows school:special_needs=mixed with a fixed text, namely 'Students with special needs and non-special need students have classes together.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "mixed"
"value": "mixed",
"description": "school:special_needs=mixed is displayed as \"Students with special needs and non-special need students have classes together.\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#is_special_needs",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:special_needs",
"description": "Layer 'Primary and secondary schools' shows school:special_needs=limited with a fixed text, namely 'This school offers limited, ad hoc support but has no significant expertise and is not considered a special needs school.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "limited"
"value": "limited",
"description": "school:special_needs=limited is displayed as \"This school offers limited, ad hoc support but has no significant expertise and is not considered a special needs school.\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#is_special_needs",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:special_needs",
"description": "Layer 'Primary and secondary schools' shows school:special_needs=no with a fixed text, namely 'This school has no support for special need students.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "no"
"value": "no",
"description": "school:special_needs=no is displayed as \"This school has no support for special need students.\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#is_special_needs",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:special_needs",
"description": "Layer 'Primary and secondary schools' shows school:special_needs=yes with a fixed text, namely 'This school is for special need students.' (in the mapcomplete.org theme 'Education')",
"value": "yes"
"value": "yes",
"description": "school:special_needs=yes is displayed as \"This school is for special need students.\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#is_special_needs",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:orientation",
"description": "Layer 'Primary and secondary schools' shows school:orientation=academic with a fixed text, namely 'Prepares for an academic study at university' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if (school~^((.+;)?upper_secondary(;.+)?)$ | school~^((.+;)?secondary(;.+)?)$) & (school:special_needs=no | school:special_needs= | school:special_needs=limited))",
"value": "academic"
"value": "academic",
"description": "school:orientation=academic is displayed as \"Prepares for an academic study at university\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#orientation_belgium",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:orientation",
"description": "Layer 'Primary and secondary schools' shows school:orientation=professional with a fixed text, namely 'Prepares for a professional study at a college' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if (school~^((.+;)?upper_secondary(;.+)?)$ | school~^((.+;)?secondary(;.+)?)$) & (school:special_needs=no | school:special_needs= | school:special_needs=limited))",
"value": "professional"
"value": "professional",
"description": "school:orientation=professional is displayed as \"Prepares for a professional study at a college\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#orientation_belgium",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:orientation",
"description": "Layer 'Primary and secondary schools' shows school:orientation=vocational with a fixed text, namely 'Prepares for a job' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if (school~^((.+;)?upper_secondary(;.+)?)$ | school~^((.+;)?secondary(;.+)?)$) & (school:special_needs=no | school:special_needs= | school:special_needs=limited))",
"value": "vocational"
"value": "vocational",
"description": "school:orientation=vocational is displayed as \"Prepares for a job\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#orientation_belgium",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:orientation",
"description": "Layer 'Primary and secondary schools' shows school:orientation=care_institution with a fixed text, namely '<b>Training type 1</b>: trains elementary life skills to live in an institution. There is no intention to do a (paid) job after training' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if (school~^((.+;)?upper_secondary(;.+)?)$ | school~^((.+;)?secondary(;.+)?)$) & (school:special_needs=yes | school:special_needs=only))",
"value": "care_institution"
"value": "care_institution",
"description": "school:orientation=care_institution is displayed as \"<b>Training type 1</b>: trains elementary life skills to live in an institution. There is no intention to do a (paid) job after training\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#orientation_belgium_special_needs",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:orientation",
"description": "Layer 'Primary and secondary schools' shows school:orientation=sheltered_workshop with a fixed text, namely '<b>Training type 2</b>: prepares to work in an environment with extra care and facilities such as a sheltered workshop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if (school~^((.+;)?upper_secondary(;.+)?)$ | school~^((.+;)?secondary(;.+)?)$) & (school:special_needs=yes | school:special_needs=only))",
"value": "sheltered_workshop"
"value": "sheltered_workshop",
"description": "school:orientation=sheltered_workshop is displayed as \"<b>Training type 2</b>: prepares to work in an environment with extra care and facilities such as a sheltered workshop\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#orientation_belgium_special_needs",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:orientation",
"description": "Layer 'Primary and secondary schools' shows school:orientation=vocational with a fixed text, namely '<b>Training type 3</b>: prepares for a job and a (more-or-less) independent life in society' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if (school~^((.+;)?upper_secondary(;.+)?)$ | school~^((.+;)?secondary(;.+)?)$) & (school:special_needs=yes | school:special_needs=only))",
"value": "vocational"
"value": "vocational",
"description": "school:orientation=vocational is displayed as \"<b>Training type 3</b>: prepares for a job and a (more-or-less) independent life in society\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#orientation_belgium_special_needs",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:orientation",
"description": "Layer 'Primary and secondary schools' shows school:orientation=professional with a fixed text, namely '<b>Training type 4</b>: prepares for a job or continued education' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if (school~^((.+;)?upper_secondary(;.+)?)$ | school~^((.+;)?secondary(;.+)?)$) & (school:special_needs=yes | school:special_needs=only))",
"value": "professional"
"value": "professional",
"description": "school:orientation=professional is displayed as \"<b>Training type 4</b>: prepares for a job or continued education\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#orientation_belgium_special_needs",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:gender",
"description": "Layer 'Primary and secondary schools' shows school:gender=mixed with a fixed text, namely 'Both boys and girls can enroll here and have classes together' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "mixed"
"value": "mixed",
"description": "school:gender=mixed is displayed as \"Both boys and girls can enroll here and have classes together\" by layers Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#gender",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:gender",
"description": "Layer 'Primary and secondary schools' shows school:gender=separated with a fixed text, namely 'Both boys and girls can enroll here but they are separated (e.g. they have lessons in different classrooms or at different times)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "separated"
"value": "separated",
"description": "school:gender=separated is displayed as \"Both boys and girls can enroll here but they are separated (e.g. they have lessons in different classrooms or at different times)\" by layers Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#gender",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:gender",
"description": "Layer 'Primary and secondary schools' shows school:gender=male with a fixed text, namely 'This is a boys only-school' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "male"
"value": "male",
"description": "school:gender=male is displayed as \"This is a boys only-school\" by layers Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#gender",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "school:gender",
"description": "Layer 'Primary and secondary schools' shows school:gender=female with a fixed text, namely 'This is a girls-only school' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "female"
"value": "female",
"description": "school:gender=female is displayed as \"This is a girls-only school\" by layers Primary and secondary schools, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#gender",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "pedagogy",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'pedagogy' (in the mapcomplete.org theme 'Education')"
"description": "Values of `pedagogy` are shown with \"This school uses {pedagogy}\" and can be updated. The question is \"What educational theory is applied on this school?\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#pedagogy",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "pedagogy",
"description": "Layer 'Primary and secondary schools' shows pedagogy=mainstream with a fixed text, namely 'This school does not use a specific pedagogy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "mainstream"
"value": "mainstream",
"description": "pedagogy=mainstream is displayed as \"This school does not use a specific pedagogy\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#pedagogy",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "pedagogy",
"description": "Layer 'Primary and secondary schools' shows pedagogy=montessori with a fixed text, namely 'This school uses the Montessori method of education' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "montessori"
"value": "montessori",
"description": "pedagogy=montessori is displayed as \"This school uses the Montessori method of education\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#pedagogy",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "pedagogy",
"description": "Layer 'Primary and secondary schools' shows pedagogy=freinet with a fixed text, namely 'This school is associated with the Freinet Modern School Movement' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "freinet"
"value": "freinet",
"description": "pedagogy=freinet is displayed as \"This school is associated with the Freinet Modern School Movement\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#pedagogy",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "pedagogy",
"description": "Layer 'Primary and secondary schools' shows pedagogy=jenaplan with a fixed text, namely 'This school uses the Jenaplan teaching concept' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "jenaplan"
"value": "jenaplan",
"description": "pedagogy=jenaplan is displayed as \"This school uses the Jenaplan teaching concept\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#pedagogy",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "pedagogy",
"description": "Layer 'Primary and secondary schools' shows pedagogy=waldorf with a fixed text, namely 'This school uses the Steiner/Waldorf educational philosophy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "waldorf"
"value": "waldorf",
"description": "pedagogy=waldorf is displayed as \"This school uses the Steiner/Waldorf educational philosophy\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#pedagogy",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "pedagogy",
"description": "Layer 'Primary and secondary schools' shows pedagogy=dalton with a fixed text, namely 'This school uses the Dalton plan teaching concept' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "dalton"
"value": "dalton",
"description": "pedagogy=dalton is displayed as \"This school uses the Dalton plan teaching concept\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#pedagogy",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "pedagogy",
"description": "Layer 'Primary and secondary schools' shows pedagogy=outdoor with a fixed text, namely 'This school uses outdoor learning' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "outdoor"
"value": "outdoor",
"description": "pedagogy=outdoor is displayed as \"This school uses outdoor learning\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#pedagogy",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "pedagogy",
"description": "Layer 'Primary and secondary schools' shows pedagogy=reggio_emilia with a fixed text, namely 'This school uses the Reggio Emilia approach' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "reggio_emilia"
"value": "reggio_emilia",
"description": "pedagogy=reggio_emilia is displayed as \"This school uses the Reggio Emilia approach\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#pedagogy",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "pedagogy",
"description": "Layer 'Primary and secondary schools' shows pedagogy=sudbury with a fixed text, namely 'This school uses the Sudbury system' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "sudbury"
"value": "sudbury",
"description": "pedagogy=sudbury is displayed as \"This school uses the Sudbury system\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#pedagogy",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "special_needs:intellectual_disability",
"description": "Layer 'Primary and secondary schools' shows special_needs:intellectual_disability=yes with a fixed text, namely 'For students with an intellectual disability (type 2)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be & school:special_needs!~^(no)$ & school:special_needs~.+)",
"value": "yes"
"value": "yes",
"description": "special_needs:intellectual_disability=yes is displayed as \"For students with an intellectual disability (type 2)\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#special_needs_categories_be",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "special_needs:emotional_behavioural_disorder",
"description": "Layer 'Primary and secondary schools' shows special_needs:emotional_behavioural_disorder=yes with a fixed text, namely 'For students with an emotional and behavioural problem (type 3)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be & school:special_needs!~^(no)$ & school:special_needs~.+)",
"value": "yes"
"value": "yes",
"description": "special_needs:emotional_behavioural_disorder=yes is displayed as \"For students with an emotional and behavioural problem (type 3)\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#special_needs_categories_be",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "special_needs:physical_disability",
"description": "Layer 'Primary and secondary schools' shows special_needs:physical_disability=yes with a fixed text, namely 'For students with an physical disability (type 4)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be & school:special_needs!~^(no)$ & school:special_needs~.+)",
"value": "yes"
"value": "yes",
"description": "special_needs:physical_disability=yes is displayed as \"For students with an physical disability (type 4)\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#special_needs_categories_be",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "special_needs:blind",
"description": "Layer 'Primary and secondary schools' shows special_needs:blind=yes with a fixed text, namely 'For blind and visually impaired students (type 6)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be & school:special_needs!~^(no)$ & school:special_needs~.+)",
"value": "yes"
"value": "yes",
"description": "special_needs:blind=yes is displayed as \"For blind and visually impaired students (type 6)\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#special_needs_categories_be",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "special_needs:deaf",
"description": "Layer 'Primary and secondary schools' shows special_needs:deaf=yes with a fixed text, namely 'For deaf students and students with hearing loss (type 7)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be & school:special_needs!~^(no)$ & school:special_needs~.+)",
"value": "yes"
"value": "yes",
"description": "special_needs:deaf=yes is displayed as \"For deaf students and students with hearing loss (type 7)\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#special_needs_categories_be",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "special_needs:language_disorder",
"description": "Layer 'Primary and secondary schools' shows special_needs:language_disorder=yes with a fixed text, namely 'For students with a Developemental Language Disorder (type 7 - DLD)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be & school:special_needs!~^(no)$ & school:special_needs~.+)",
"value": "yes"
"value": "yes",
"description": "special_needs:language_disorder=yes is displayed as \"For students with a Developemental Language Disorder (type 7 - DLD)\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#special_needs_categories_be",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "special_needs:autism",
"description": "Layer 'Primary and secondary schools' shows special_needs:autism=yes with a fixed text, namely 'For students with an autism spectrum disorder (type 9)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be & school:special_needs!~^(no)$ & school:special_needs~.+)",
"value": "yes"
"value": "yes",
"description": "special_needs:autism=yes is displayed as \"For students with an autism spectrum disorder (type 9)\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#special_needs_categories_be",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "special_needs:learning_disabilities",
"description": "Layer 'Primary and secondary schools' shows special_needs:learning_disabilities=yes with a fixed text, namely 'For students with a learning disability (basic offering )' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if _country=be & school:special_needs!~^(no)$ & school:special_needs~.+)",
"value": "yes"
"value": "yes",
"description": "special_needs:learning_disabilities=yes is displayed as \"For students with a learning disability (basic offering )\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#special_needs_categories_be",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "dress_code",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'dress_code' (in the mapcomplete.org theme 'Education')"
"description": "Values of `dress_code` are shown with \"{dress_code}\" and can be updated. The question is \"Do pupils have to wear a uniform or obey a dresscode?\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#uniform",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "dress_code",
"description": "Layer 'Primary and secondary schools' shows dress_code=uniform with a fixed text, namely 'Students must wear a uniform, which is extensively described' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "uniform"
"value": "uniform",
"description": "dress_code=uniform is displayed as \"Students must wear a uniform, which is extensively described\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#uniform",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "dress_code",
"description": "Layer 'Primary and secondary schools' shows dress_code=obligated_colour with a fixed text, namely 'Students must wear clothes in a specific colour scheme' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "obligated_colour"
"value": "obligated_colour",
"description": "dress_code=obligated_colour is displayed as \"Students must wear clothes in a specific colour scheme\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#uniform",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "dress_code",
"description": "Layer 'Primary and secondary schools' shows dress_code=casual with a fixed text, namely 'There is no formal dress code, students are allowed to come in casual wear such as t-shirt, jeans, ...' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "casual"
"value": "casual",
"description": "dress_code=casual is displayed as \"There is no formal dress code, students are allowed to come in casual wear such as t-shirt, jeans, ...\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#uniform",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "dress_code",
"description": "Layer 'Primary and secondary schools' shows dress_code=arms_covered with a fixed text, namely 'Arms must be covered by the clothes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "arms_covered"
"value": "arms_covered",
"description": "dress_code=arms_covered is displayed as \"Arms must be covered by the clothes\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#uniform",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "dress_code",
"description": "Layer 'Primary and secondary schools' shows dress_code=knees_covered with a fixed text, namely 'Knees must be covered by the clothes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "knees_covered"
"value": "knees_covered",
"description": "dress_code=knees_covered is displayed as \"Knees must be covered by the clothes\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#uniform",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "dress_code",
"description": "Layer 'Primary and secondary schools' shows dress_code=legs_covered with a fixed text, namely 'Legs must be covered by the clothes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "legs_covered"
"value": "legs_covered",
"description": "dress_code=legs_covered is displayed as \"Legs must be covered by the clothes\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#uniform",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "dress_code",
"description": "Layer 'Primary and secondary schools' shows dress_code=belly_covered with a fixed text, namely 'The belly must be covered by the clothes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "belly_covered"
"value": "belly_covered",
"description": "dress_code=belly_covered is displayed as \"The belly must be covered by the clothes\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#uniform",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "wikidata",
"description": "Layer 'Primary and secondary schools' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Education')"
"description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#wikipedia",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "wikipedia",
"description": "Layer 'Primary and secondary schools' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Education')"
"description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#wikipedia",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "wikidata",
"description": "Layer 'Primary and secondary schools' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Education') Picking this answer will delete the key wikidata.",
"value": ""
"description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer Primary and secondary schools",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/school.md#wikipedia",
"icon_url": "./assets/layers/school/school.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag",
"value": "college"
"value": "college",
"description": "Features with this tag are displayed by layer Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tertiary_education.md",
"icon_url": "./assets/layers/school/college.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag",
"value": "university"
"value": "university",
"description": "Features with this tag are displayed by layer Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tertiary_education.md",
"icon_url": "./assets/layers/school/college.svg"
},
{
"key": "isced:2011:level",
"description": "Features with this tag are displayed by layers Colleges and universities, Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tertiary_education.md",
"icon_url": "./assets/layers/school/college.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag",
"value": "school"
},
{
"key": "isced:2011:level",
"description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag"
},
{
"key": "isced:2011:level",
"description": "The MapComplete theme Education has a layer Colleges and universities showing features with this tag"
},
{
"key": "id",
"description": "Layer 'Colleges and universities' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Education') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"value": "college",
"description": "amenity=college is displayed as \"This is an institution of post-secondary, non-tertiary education. One has to have completed secondary education to enroll here, but no bachelor (or higher) degrees are awarded here\" by layer Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tertiary_education.md#institution_kind",
"icon_url": "./assets/layers/school/college.svg"
},
{
"key": "amenity",
"description": "Layer 'Colleges and universities' shows amenity=college with a fixed text, namely 'This is an institution of post-secondary, non-tertiary education. One has to have completed secondary education to enroll here, but no bachelor (or higher) degrees are awarded here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "college"
},
{
"key": "amenity",
"description": "Layer 'Colleges and universities' shows amenity=university with a fixed text, namely 'This is a university, an institution of tertiary education where bachelor degrees or higher are awarded.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "university"
"value": "university",
"description": "amenity=university is displayed as \"This is a university, an institution of tertiary education where bachelor degrees or higher are awarded.\" by layer Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tertiary_education.md#institution_kind",
"icon_url": "./assets/layers/school/college.svg"
},
{
"key": "isced:2011:level",
"description": "Layer 'Colleges and universities' shows isced:2011:level=bachelor with a fixed text, namely 'Bachelor degrees are awarded here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if amenity=university)",
"value": "bachelor"
"value": "bachelor",
"description": "isced:2011:level=bachelor is displayed as \"Bachelor degrees are awarded here\" by layer Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tertiary_education.md#isced",
"icon_url": "./assets/layers/school/college.svg"
},
{
"key": "isced:2011:level",
"description": "Layer 'Colleges and universities' shows isced:2011:level=master with a fixed text, namely 'Master degrees are awarded here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if amenity=university)",
"value": "master"
"value": "master",
"description": "isced:2011:level=master is displayed as \"Master degrees are awarded here\" by layer Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tertiary_education.md#isced",
"icon_url": "./assets/layers/school/college.svg"
},
{
"key": "isced:2011:level",
"description": "Layer 'Colleges and universities' shows isced:2011:level=doctorate with a fixed text, namely 'Doctorate degrees are awarded here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education') (This is only shown if amenity=university)",
"value": "doctorate"
},
{
"key": "capacity",
"description": "Layer 'Colleges and universities' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Education')"
},
{
"key": "school:gender",
"description": "Layer 'Colleges and universities' shows school:gender=mixed with a fixed text, namely 'Both boys and girls can enroll here and have classes together' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "mixed"
},
{
"key": "school:gender",
"description": "Layer 'Colleges and universities' shows school:gender=separated with a fixed text, namely 'Both boys and girls can enroll here but they are separated (e.g. they have lessons in different classrooms or at different times)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "separated"
},
{
"key": "school:gender",
"description": "Layer 'Colleges and universities' shows school:gender=male with a fixed text, namely 'This is a boys only-school' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "male"
},
{
"key": "school:gender",
"description": "Layer 'Colleges and universities' shows school:gender=female with a fixed text, namely 'This is a girls-only school' and allows to pick this as a default answer (in the mapcomplete.org theme 'Education')",
"value": "female"
},
{
"key": "website",
"description": "Layer 'Colleges and universities' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Education')"
},
{
"key": "contact:website",
"description": "Layer 'Colleges and universities' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Education')"
},
{
"key": "email",
"description": "Layer 'Colleges and universities' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Education')"
},
{
"key": "contact:email",
"description": "Layer 'Colleges and universities' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Education')"
},
{
"key": "operator:email",
"description": "Layer 'Colleges and universities' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Education')"
},
{
"key": "phone",
"description": "Layer 'Colleges and universities' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Education')"
},
{
"key": "contact:phone",
"description": "Layer 'Colleges and universities' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Education')"
"value": "doctorate",
"description": "isced:2011:level=doctorate is displayed as \"Doctorate degrees are awarded here\" by layer Colleges and universities",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tertiary_education.md#isced",
"icon_url": "./assets/layers/school/college.svg"
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -7,690 +7,285 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/etymology/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "name:etymology:wikidata",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Has etymology showing features with this tag"
"description": "Features with this tag are displayed by layer Has etymology",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md",
"icon_url": "pin"
},
{
"key": "name:etymology",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Has etymology showing features with this tag"
"description": "Features with this tag are displayed by layer Has etymology",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md",
"icon_url": "pin"
},
{
"key": "id",
"description": "Layer 'Has etymology' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images",
"icon_url": "pin"
},
{
"key": "panoramax",
"description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images",
"icon_url": "pin"
},
{
"key": "mapillary",
"description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images",
"icon_url": "pin"
},
{
"key": "wikidata",
"description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images",
"icon_url": "pin"
},
{
"key": "wikipedia",
"description": "The layer 'Has etymology shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images",
"icon_url": "pin"
},
{
"key": "name:etymology:wikidata",
"description": "Layer 'Has etymology' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)"
"description": "Values of `name:etymology:wikidata` are shown with \"<h3>Wikipedia article of the name giver</h3>{wikipedia(name:etymology:wikidata):max-height:20rem}\" and can be updated. The question is \"What is the Wikidata-item that this object is named after?\" by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#wikipedia_etymology",
"icon_url": "pin"
},
{
"key": "name:etymology",
"description": "Layer 'Has etymology' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)"
"description": "Values of `name:etymology` are shown with \"Named after {name:etymology}\" and can be updated. The question is \"What is this object named after?\" by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#simple_etymology",
"icon_url": "pin"
},
{
"key": "name:etymology",
"description": "Layer 'Has etymology' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)",
"value": "unknown"
"value": "unknown",
"description": "name:etymology=unknown is displayed as \"The origin of this name is unknown in all literature\" by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#simple_etymology",
"icon_url": "pin"
},
{
"key": "image",
"description": "The layer 'Has etymology allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images",
"icon_url": "pin"
},
{
"key": "panoramax",
"description": "The layer 'Has etymology allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images",
"icon_url": "pin"
},
{
"key": "mapillary",
"description": "The layer 'Has etymology allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images",
"icon_url": "pin"
},
{
"key": "wikidata",
"description": "The layer 'Has etymology allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images",
"icon_url": "pin"
},
{
"key": "wikipedia",
"description": "The layer 'Has etymology allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Has etymology, Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/etymology.md#images",
"icon_url": "pin"
},
{
"key": "name",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Streets without etymology information showing features with this tag"
"description": "Features with this tag are displayed by layers Streets without etymology information, Parks and forests without etymology information, Education institutions without etymology information, Cultural places without etymology information, Touristic places without etymology information, Health and social places without etymology information, Sport places without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/streets_without_etymology.md",
"icon_url": "pin"
},
{
"key": "highway",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Streets without etymology information showing features with this tag"
},
{
"key": "id",
"description": "Layer 'Streets without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Streets without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Streets without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Streets without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Streets without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Streets without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name:etymology:wikidata",
"description": "Layer 'Streets without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)"
},
{
"key": "name:etymology",
"description": "Layer 'Streets without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)"
},
{
"key": "name:etymology",
"description": "Layer 'Streets without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)",
"value": "unknown"
},
{
"key": "image",
"description": "The layer 'Streets without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Streets without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Streets without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Streets without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Streets without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks and forests without etymology information showing features with this tag"
"description": "Features with this tag are displayed by layer Streets without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/streets_without_etymology.md",
"icon_url": "pin"
},
{
"key": "leisure",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks and forests without etymology information showing features with this tag",
"value": "park"
"value": "park",
"description": "Features with this tag are displayed by layers Parks and forests without etymology information, Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parks_and_forests_without_etymology.md",
"icon_url": "pin"
},
{
"key": "landuse",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks and forests without etymology information showing features with this tag",
"value": "forest"
},
{
"key": "id",
"description": "Layer 'Parks and forests without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Parks and forests without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Parks and forests without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Parks and forests without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Parks and forests without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Parks and forests without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name:etymology:wikidata",
"description": "Layer 'Parks and forests without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)"
},
{
"key": "name:etymology",
"description": "Layer 'Parks and forests without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)"
},
{
"key": "name:etymology",
"description": "Layer 'Parks and forests without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)",
"value": "unknown"
},
{
"key": "image",
"description": "The layer 'Parks and forests without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Parks and forests without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Parks and forests without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Parks and forests without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Parks and forests without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag"
"value": "forest",
"description": "Features with this tag are displayed by layer Parks and forests without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parks_and_forests_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag",
"value": "school"
"value": "school",
"description": "Features with this tag are displayed by layer Education institutions without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/education_institutions_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag",
"value": "kindergarten"
"value": "kindergarten",
"description": "Features with this tag are displayed by layer Education institutions without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/education_institutions_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag",
"value": "university"
"value": "university",
"description": "Features with this tag are displayed by layer Education institutions without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/education_institutions_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag",
"value": "college"
"value": "college",
"description": "Features with this tag are displayed by layer Education institutions without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/education_institutions_without_etymology.md",
"icon_url": "pin"
},
{
"key": "landuse",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Education institutions without etymology information showing features with this tag",
"value": "education"
},
{
"key": "id",
"description": "Layer 'Education institutions without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Education institutions without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Education institutions without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Education institutions without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Education institutions without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Education institutions without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name:etymology:wikidata",
"description": "Layer 'Education institutions without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)"
},
{
"key": "name:etymology",
"description": "Layer 'Education institutions without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)"
},
{
"key": "name:etymology",
"description": "Layer 'Education institutions without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)",
"value": "unknown"
},
{
"key": "image",
"description": "The layer 'Education institutions without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Education institutions without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Education institutions without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Education institutions without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Education institutions without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag"
"value": "education",
"description": "Features with this tag are displayed by layer Education institutions without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/education_institutions_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag",
"value": "arts_centre"
"value": "arts_centre",
"description": "Features with this tag are displayed by layer Cultural places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cultural_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag",
"value": "cinema"
"value": "cinema",
"description": "Features with this tag are displayed by layer Cultural places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cultural_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag",
"value": "community_centre"
"value": "community_centre",
"description": "Features with this tag are displayed by layer Cultural places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cultural_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag",
"value": "library"
"value": "library",
"description": "Features with this tag are displayed by layer Cultural places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cultural_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Cultural places without etymology information showing features with this tag",
"value": "theatre"
},
{
"key": "id",
"description": "Layer 'Cultural places without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Cultural places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Cultural places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Cultural places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Cultural places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Cultural places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name:etymology:wikidata",
"description": "Layer 'Cultural places without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)"
},
{
"key": "name:etymology",
"description": "Layer 'Cultural places without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)"
},
{
"key": "name:etymology",
"description": "Layer 'Cultural places without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)",
"value": "unknown"
},
{
"key": "image",
"description": "The layer 'Cultural places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Cultural places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Cultural places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Cultural places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Cultural places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Touristic places without etymology information showing features with this tag"
"value": "theatre",
"description": "Features with this tag are displayed by layer Cultural places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/cultural_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "tourism",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Touristic places without etymology information showing features with this tag",
"value": "aquarium"
"value": "aquarium",
"description": "Features with this tag are displayed by layer Touristic places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toursistic_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "tourism",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Touristic places without etymology information showing features with this tag",
"value": "museum"
"value": "museum",
"description": "Features with this tag are displayed by layer Touristic places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toursistic_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "tourism",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Touristic places without etymology information showing features with this tag",
"value": "theme_park"
"value": "theme_park",
"description": "Features with this tag are displayed by layer Touristic places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toursistic_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "tourism",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Touristic places without etymology information showing features with this tag",
"value": "zoo"
},
{
"key": "id",
"description": "Layer 'Touristic places without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Touristic places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Touristic places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Touristic places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Touristic places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Touristic places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name:etymology:wikidata",
"description": "Layer 'Touristic places without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)"
},
{
"key": "name:etymology",
"description": "Layer 'Touristic places without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)"
},
{
"key": "name:etymology",
"description": "Layer 'Touristic places without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)",
"value": "unknown"
},
{
"key": "image",
"description": "The layer 'Touristic places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Touristic places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Touristic places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Touristic places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Touristic places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Health and social places without etymology information showing features with this tag"
"value": "zoo",
"description": "Features with this tag are displayed by layer Touristic places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/toursistic_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Health and social places without etymology information showing features with this tag",
"value": "clinic"
"value": "clinic",
"description": "Features with this tag are displayed by layer Health and social places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/health_and_social_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Health and social places without etymology information showing features with this tag",
"value": "hospital"
"value": "hospital",
"description": "Features with this tag are displayed by layer Health and social places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/health_and_social_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "amenity",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Health and social places without etymology information showing features with this tag",
"value": "social_facility"
},
{
"key": "id",
"description": "Layer 'Health and social places without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Health and social places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Health and social places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Health and social places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Health and social places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Health and social places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name:etymology:wikidata",
"description": "Layer 'Health and social places without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)"
},
{
"key": "name:etymology",
"description": "Layer 'Health and social places without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)"
},
{
"key": "name:etymology",
"description": "Layer 'Health and social places without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)",
"value": "unknown"
},
{
"key": "image",
"description": "The layer 'Health and social places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Health and social places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Health and social places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Health and social places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Health and social places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Sport places without etymology information showing features with this tag"
"value": "social_facility",
"description": "Features with this tag are displayed by layer Health and social places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/health_and_social_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "leisure",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Sport places without etymology information showing features with this tag",
"value": "sports_centre"
"value": "sports_centre",
"description": "Features with this tag are displayed by layer Sport places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "leisure",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Sport places without etymology information showing features with this tag",
"value": "stadium"
"value": "stadium",
"description": "Features with this tag are displayed by layer Sport places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "leisure",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Sport places without etymology information showing features with this tag",
"value": "swimming_pool"
},
{
"key": "id",
"description": "Layer 'Sport places without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Sport places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Sport places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Sport places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Sport places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Sport places without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name:etymology:wikidata",
"description": "Layer 'Sport places without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)"
},
{
"key": "name:etymology",
"description": "Layer 'Sport places without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)"
},
{
"key": "name:etymology",
"description": "Layer 'Sport places without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)",
"value": "unknown"
},
{
"key": "image",
"description": "The layer 'Sport places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Sport places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Sport places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Sport places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Sport places without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks without etymology information showing features with this tag"
},
{
"key": "leisure",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks without etymology information showing features with this tag",
"value": "park"
"value": "swimming_pool",
"description": "Features with this tag are displayed by layer Sport places without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_places_without_etymology.md",
"icon_url": "pin"
},
{
"key": "landuse",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks without etymology information showing features with this tag",
"value": "village_green"
"value": "village_green",
"description": "Features with this tag are displayed by layer Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parks_without_etymology.md",
"icon_url": "pin"
},
{
"key": "landuse",
"description": "The MapComplete theme Etymology - what is a place named after? has a layer Parks without etymology information showing features with this tag",
"value": "recreation_ground"
},
{
"key": "id",
"description": "Layer 'Parks without etymology information' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Parks without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Parks without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Parks without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Parks without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Parks without etymology information shows images based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "name:etymology:wikidata",
"description": "Layer 'Parks without etymology information' shows and asks freeform values for key 'name:etymology:wikidata' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology!=unknown)"
},
{
"key": "name:etymology",
"description": "Layer 'Parks without etymology information' shows and asks freeform values for key 'name:etymology' (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)"
},
{
"key": "name:etymology",
"description": "Layer 'Parks without etymology information' shows name:etymology=unknown with a fixed text, namely 'The origin of this name is unknown in all literature' and allows to pick this as a default answer (in the mapcomplete.org theme 'Etymology - what is a place named after?') (This is only shown if name:etymology~.+ | name:etymology:wikidata=)",
"value": "unknown"
},
{
"key": "image",
"description": "The layer 'Parks without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Parks without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Parks without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Parks without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Parks without etymology information allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "recreation_ground",
"description": "Features with this tag are displayed by layer Parks without etymology information",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/parks_without_etymology.md",
"icon_url": "pin"
}
]
}

View file

@ -7,109 +7,153 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/facadegardens/geveltuin.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "leisure",
"description": "The MapComplete theme Facade gardens has a layer Facade gardens showing features with this tag",
"value": "garden"
"value": "garden",
"description": "Features with this tag are displayed by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "garden:type",
"description": "The MapComplete theme Facade gardens has a layer Facade gardens showing features with this tag",
"value": "facade_garden"
"value": "facade_garden",
"description": "Features with this tag are displayed by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "id",
"description": "Layer 'Facade gardens' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Facade gardens') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Facade gardens allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#images",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "panoramax",
"description": "The layer 'Facade gardens allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#images",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "mapillary",
"description": "The layer 'Facade gardens allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#images",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "wikidata",
"description": "The layer 'Facade gardens allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#images",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Facade gardens allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#images",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "direction",
"description": "Layer 'Facade gardens' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Facade gardens')"
"description": "Values of `direction` are shown with \"Orientation: {direction} (where 0=N and 90=O)\" and can be updated. The question is \"What is the orientation of the garden?\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_direction",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "direct_sunlight",
"description": "Layer 'Facade gardens' shows direct_sunlight=yes with a fixed text, namely 'The garden is in full sun' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "yes"
"value": "yes",
"description": "direct_sunlight=yes is displayed as \"The garden is in full sun\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_sunshine",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "direct_sunlight",
"description": "Layer 'Facade gardens' shows direct_sunlight=partial with a fixed text, namely 'The garden is in partial shade' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "partial"
"value": "partial",
"description": "direct_sunlight=partial is displayed as \"The garden is in partial shade\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_sunshine",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "direct_sunlight",
"description": "Layer 'Facade gardens' shows direct_sunlight=no with a fixed text, namely 'The garden is in the shade' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "no"
"value": "no",
"description": "direct_sunlight=no is displayed as \"The garden is in the shade\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_sunshine",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "rain_barrel",
"description": "Layer 'Facade gardens' shows rain_barrel=yes with a fixed text, namely 'There is a rain barrel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "yes"
"value": "yes",
"description": "rain_barrel=yes is displayed as \"There is a rain barrel\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_rainbarrel",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "rain_barrel",
"description": "Layer 'Facade gardens' shows rain_barrel=no with a fixed text, namely 'There is no rain barrel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "no"
"value": "no",
"description": "rain_barrel=no is displayed as \"There is no rain barrel\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_rainbarrel",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "start_date",
"description": "Layer 'Facade gardens' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Facade gardens')"
"description": "Values of `start_date` are shown with \"Construction date of the garden: {start_date}\" and can be updated. The question is \"When was the garden constructed? (a year is sufficient)\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_start_date",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "edible",
"description": "Layer 'Facade gardens' shows edible=yes with a fixed text, namely 'There are edible plants' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "yes"
"value": "yes",
"description": "edible=yes is displayed as \"There are edible plants\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_edible",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "edible",
"description": "Layer 'Facade gardens' shows edible=no with a fixed text, namely 'There are no edible plants' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "no"
"value": "no",
"description": "edible=no is displayed as \"There are no edible plants\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_edible",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "plant",
"description": "Layer 'Facade gardens' shows plant=vine with a fixed text, namely 'There are vines' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "vine"
"value": "vine",
"description": "plant=vine is displayed as \"There are vines\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_plants",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "plant",
"description": "Layer 'Facade gardens' shows plant=flower with a fixed text, namely 'There are flowering plants' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "flower"
"value": "flower",
"description": "plant=flower is displayed as \"There are flowering plants\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_plants",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "plant",
"description": "Layer 'Facade gardens' shows plant=shrub with a fixed text, namely 'There are shrubs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "shrub"
"value": "shrub",
"description": "plant=shrub is displayed as \"There are shrubs\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_plants",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "plant",
"description": "Layer 'Facade gardens' shows plant=groundcover with a fixed text, namely 'There are groundcovering plants' and allows to pick this as a default answer (in the mapcomplete.org theme 'Facade gardens')",
"value": "groundcover"
"value": "groundcover",
"description": "plant=groundcover is displayed as \"There are groundcovering plants\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_plants",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
},
{
"key": "description",
"description": "Layer 'Facade gardens' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Facade gardens')"
"description": "Values of `description` are shown with \"More details: {description}\" and can be updated. The question is \"Extra describing info about the garden (if needed and not yet described above)\" by layer Facade gardens",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/facadegardens.md#facadegardens_description",
"icon_url": "./assets/themes/facadegardens/geveltuin.svg"
}
]
}

View file

@ -7,171 +7,205 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/assembly_point/fire.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "leisure",
"description": "The MapComplete theme Fireplaces and barbeques has a layer Firepit showing features with this tag",
"value": "firepit"
"value": "firepit",
"description": "Features with this tag are displayed by layer Firepit",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "id",
"description": "Layer 'Firepit' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Fireplaces and barbeques') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Firepit, BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Firepit, BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#images",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "panoramax",
"description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Firepit, BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#images",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "mapillary",
"description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Firepit, BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#images",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "wikidata",
"description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Firepit, BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#images",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Firepit allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Firepit, BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#images",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "access",
"description": "Layer 'Firepit' shows access=yes with a fixed text, namely 'Public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"Public\" by layer Firepit",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "access",
"description": "Layer 'Firepit' shows access=no with a fixed text, namely 'No access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "no"
"value": "no",
"description": "access=no is displayed as \"No access\" by layer Firepit",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "access",
"description": "Layer 'Firepit' shows access=private with a fixed text, namely 'Private' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "private"
"value": "private",
"description": "access=private is displayed as \"Private\" by layer Firepit",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "access",
"description": "Layer 'Firepit' shows access=permissive with a fixed text, namely 'Access until revoked' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "permissive"
"value": "permissive",
"description": "access=permissive is displayed as \"Access until revoked\" by layer Firepit",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "access",
"description": "Layer 'Firepit' shows access=customers with a fixed text, namely 'Access only for customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "customers"
"value": "customers",
"description": "access=customers is displayed as \"Access only for customers\" by layer Firepit",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "access",
"description": "Layer 'Firepit' shows access=permit with a fixed text, namely 'Access only for authorized' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "permit"
"value": "permit",
"description": "access=permit is displayed as \"Access only for authorized\" by layer Firepit",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#access",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "seasonal",
"description": "Layer 'Firepit' shows seasonal=no with a fixed text, namely 'Available all around the year' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "no"
"value": "no",
"description": "seasonal=no is displayed as \"Available all around the year\" by layer Firepit",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#seasonal",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "seasonal",
"description": "Layer 'Firepit' shows seasonal=summer with a fixed text, namely 'Only available in summer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "summer"
"value": "summer",
"description": "seasonal=summer is displayed as \"Only available in summer\" by layer Firepit",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#seasonal",
"icon_url": "./assets/layers/assembly_point/fire.svg"
},
{
"key": "seasonal",
"description": "Layer 'Firepit' shows seasonal=spring;summer;autumn with a fixed text, namely 'Closed during the winter' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "spring;summer;autumn"
"value": "spring;summer;autumn",
"description": "seasonal=spring;summer;autumn is displayed as \"Closed during the winter\" by layer Firepit",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/firepit.md#seasonal",
"icon_url": "./assets/layers/drinking_water/no_winter.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Fireplaces and barbeques has a layer BBQ showing features with this tag",
"value": "bbq"
},
{
"key": "id",
"description": "Layer 'BBQ' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Fireplaces and barbeques') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'BBQ allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "bbq",
"description": "Features with this tag are displayed by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "access",
"description": "Layer 'BBQ' shows access=yes with a fixed text, namely 'This barbecue can be used by anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"This barbecue can be used by anyone\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "access",
"description": "Layer 'BBQ' shows access=no with a fixed text, namely 'This barbecue can't be used by anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "no"
"value": "no",
"description": "access=no is displayed as \"This barbecue can't be used by anyone\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "access",
"description": "Layer 'BBQ' shows access=private with a fixed text, namely 'This barbecue is private' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "private"
"value": "private",
"description": "access=private is displayed as \"This barbecue is private\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "access",
"description": "Layer 'BBQ' shows access=permissive with a fixed text, namely 'This barbecue can be used by anyone, but the owner can revoke access at any time' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "permissive"
"value": "permissive",
"description": "access=permissive is displayed as \"This barbecue can be used by anyone, but the owner can revoke access at any time\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "access",
"description": "Layer 'BBQ' shows access=customers with a fixed text, namely 'This barbecue can only be used by customers' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "customers"
"value": "customers",
"description": "access=customers is displayed as \"This barbecue can only be used by customers\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "access",
"description": "Layer 'BBQ' shows access=permit with a fixed text, namely 'This barbecue can only be used by authorized persons' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "permit"
"value": "permit",
"description": "access=permit is displayed as \"This barbecue can only be used by authorized persons\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#access",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "covered",
"description": "Layer 'BBQ' shows covered=no with a fixed text, namely 'This barbecue is not covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "no"
"value": "no",
"description": "covered=no is displayed as \"This barbecue is not covered\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#covered",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "covered",
"description": "Layer 'BBQ' shows covered=yes with a fixed text, namely 'This barbecue is covered' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "yes"
"value": "yes",
"description": "covered=yes is displayed as \"This barbecue is covered\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#covered",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "fuel",
"description": "Layer 'BBQ' shows fuel=wood with a fixed text, namely 'This barbecue uses wood as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "wood"
"value": "wood",
"description": "fuel=wood is displayed as \"This barbecue uses wood as fuel\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "fuel",
"description": "Layer 'BBQ' shows fuel=charcoal with a fixed text, namely 'This barbecue uses charcoal as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "charcoal"
"value": "charcoal",
"description": "fuel=charcoal is displayed as \"This barbecue uses charcoal as fuel\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "fuel",
"description": "Layer 'BBQ' shows fuel=electric with a fixed text, namely 'This barbecue is powered by electricity' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "electric"
"value": "electric",
"description": "fuel=electric is displayed as \"This barbecue is powered by electricity\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel",
"icon_url": "./assets/layers/bbq/bbq.svg"
},
{
"key": "fuel",
"description": "Layer 'BBQ' shows fuel=gas with a fixed text, namely 'This barbecue uses gas as fuel' and allows to pick this as a default answer (in the mapcomplete.org theme 'Fireplaces and barbeques')",
"value": "gas"
"value": "gas",
"description": "fuel=gas is displayed as \"This barbecue uses gas as fuel\" by layer BBQ",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bbq.md#fuel",
"icon_url": "./assets/layers/bbq/bbq.svg"
}
]
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -7,62 +7,88 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/ghostbikes/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "memorial",
"description": "The MapComplete theme Ghost bikes has a layer Ghost bikes showing features with this tag",
"value": "ghost_bike"
"value": "ghost_bike",
"description": "Features with this tag are displayed by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "id",
"description": "Layer 'Ghost bikes' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Ghost bikes') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "panoramax",
"description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "mapillary",
"description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "wikidata",
"description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Ghost bikes allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#images",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "subject",
"description": "Layer 'Ghost bikes' shows and asks freeform values for key 'subject' (in the mapcomplete.org theme 'Ghost bikes')"
"description": "Values of `subject` are shown with \"In remembrance of {subject}\" and can be updated. The question is \"Whom is remembered by this ghost bike?\" by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_name",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "name",
"description": "Layer 'Ghost bikes' shows name~.+ with a fixed text, namely 'In remembrance of {name}' (in the mapcomplete.org theme 'Ghost bikes')"
"description": "name~.+ is displayed as \"In remembrance of {name}\" by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_name",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "noname",
"description": "Layer 'Ghost bikes' shows noname=yes with a fixed text, namely 'No name is marked on the bike' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost bikes')",
"value": "yes"
"value": "yes",
"description": "noname=yes is displayed as \"No name is marked on the bike\" by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_name",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "source",
"description": "Layer 'Ghost bikes' shows and asks freeform values for key 'source' (in the mapcomplete.org theme 'Ghost bikes')"
"description": "Values of `source` are shown with \"{link(More info available,&LBRACEsource&RBRACE,,,,)}\" and can be updated. The question is \"On what webpage can one find more info about the ghost bike or the accident?\" by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_source",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "inscription",
"description": "Layer 'Ghost bikes' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Ghost bikes')"
"description": "Values of `inscription` are shown with \"<i>{inscription}</i>\" and can be updated. The question is \"What is the inscription on this Ghost bike?\" by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_inscription",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
},
{
"key": "start_date",
"description": "Layer 'Ghost bikes' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Ghost bikes')"
"description": "Values of `start_date` are shown with \"Placed on {start_date}\" and can be updated. The question is \"When was this Ghost bike installed?\" by layer Ghost bikes",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ghost_bike.md#ghost_bike_start_date",
"icon_url": "./assets/layers/ghost_bike/ghost_bike.svg"
}
]
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -7,62 +7,125 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/guidepost/guidepost.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "information",
"description": "The MapComplete theme Guideposts has a layer Guideposts showing features with this tag",
"value": "guidepost"
"value": "guidepost",
"description": "Features with this tag are displayed by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "id",
"description": "Layer 'Guideposts' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Guideposts') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#images",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "panoramax",
"description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#images",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "mapillary",
"description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#images",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "wikidata",
"description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#images",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Guideposts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#images",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "bicycle",
"description": "Layer 'Guideposts' shows bicycle=yes with a fixed text, namely 'This guidepost shows bicycle routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Guideposts')",
"value": "yes"
"value": "yes",
"description": "bicycle=yes is displayed as \"This guidepost shows bicycle routes\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "hiking",
"description": "Layer 'Guideposts' shows hiking=yes with a fixed text, namely 'This guidepost shows hiking routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Guideposts')",
"value": "yes"
"value": "yes",
"description": "hiking=yes is displayed as \"This guidepost shows hiking routes\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "mtb",
"description": "Layer 'Guideposts' shows mtb=yes with a fixed text, namely 'This guidepost shows mountain bike routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Guideposts')",
"value": "yes"
"value": "yes",
"description": "mtb=yes is displayed as \"This guidepost shows mountain bike routes\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "horse",
"description": "Layer 'Guideposts' shows horse=yes with a fixed text, namely 'This guidepost shows horse riding routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Guideposts')",
"value": "yes"
"value": "yes",
"description": "horse=yes is displayed as \"This guidepost shows horse riding routes\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "ski",
"description": "Layer 'Guideposts' shows ski=yes with a fixed text, namely 'This guidepost shows ski routes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Guideposts')",
"value": "yes"
"value": "yes",
"description": "ski=yes is displayed as \"This guidepost shows ski routes\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#type",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "name",
"description": "Values of `name` are shown with \"Name noted on the guidepost: {name}\" and can be updated. The question is \"What is the name noted on this guidepost?\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#name",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "noname",
"value": "yes",
"description": "noname=yes is displayed as \"There is no name noted on this guidepost\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#name",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "ref",
"description": "Values of `ref` are shown with \"Reference number of the guidepost: {ref}\" and can be updated. The question is \"What is the reference number of this guidepost?\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ref",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "noref",
"value": "yes",
"description": "noref=yes is displayed as \"There is no reference number noted on this guidepost\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ref",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "ele",
"description": "Values of `ele` are shown with \"Elevation noted on the guidepost: {ele} m\" and can be updated. The question is \"What is the elevation noted on this guidepost?\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ele",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
},
{
"key": "noele",
"value": "yes",
"description": "noele=yes is displayed as \"There is no elevation noted on this guidepost\" by layer Guideposts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/guidepost.md#ele",
"icon_url": "./assets/layers/guidepost/guidepost.svg"
}
]
}

View file

@ -7,354 +7,498 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/hackerspaces/glider.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "leisure",
"description": "The MapComplete theme Hackerspaces and makerspaces has a layer Hackerspace showing features with this tag",
"value": "hackerspace"
"value": "hackerspace",
"description": "Features with this tag are displayed by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "id",
"description": "Layer 'Hackerspace' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Hackerspace allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#images",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "panoramax",
"description": "The layer 'Hackerspace allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#images",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "mapillary",
"description": "The layer 'Hackerspace allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#images",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "wikidata",
"description": "The layer 'Hackerspace allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#images",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Hackerspace allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#images",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "hackerspace",
"description": "Layer 'Hackerspace' shows hackerspace=makerspace with a fixed text, namely 'This is a makerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "makerspace"
"value": "makerspace",
"description": "hackerspace=makerspace is displayed as \"This is a makerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#is_makerspace",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "hackerspace",
"description": "Layer 'Hackerspace' shows hackerspace= with a fixed text, namely 'This is a traditional (software oriented) hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') Picking this answer will delete the key hackerspace.",
"value": ""
"description": "hackerspace= is displayed as \"This is a traditional (software oriented) hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#is_makerspace",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "hackerspace",
"description": "Layer 'Hackerspace' shows hackerspace=hacklab with a fixed text, namely 'This is a <b>hacklab</b> which is mostly focussed on basic computer skills, using recycled devices and/or providing internet to the community. This is typically located in autonomous spaces, squats or social facilities' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "hacklab"
"value": "hacklab",
"description": "hackerspace=hacklab is displayed as \"This is a <b>hacklab</b> which is mostly focussed on basic computer skills, using recycled devices and/or providing internet to the community. This is typically located in autonomous spaces, squats or social facilities\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#is_makerspace",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "name",
"description": "Layer 'Hackerspace' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "Values of `name` are shown with \"This hackerspace is named <b>{name}</b>\" and can be updated. The question is \"What is the name of this hackerspace?\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_name",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "level",
"description": "Layer 'Hackerspace' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if repeat_on=)"
"description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "location",
"description": "Layer 'Hackerspace' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if repeat_on=)",
"value": "underground"
"value": "underground",
"description": "location=underground is displayed as \"Located underground\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "level",
"description": "Layer 'Hackerspace' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if repeat_on=)",
"value": "0"
"value": "0",
"description": "level=0 is displayed as \"Located on the ground floor\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "level",
"description": "Layer 'Hackerspace' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Hackerspaces and makerspaces') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
"value": ""
"description": "level= is displayed as \"Located on the ground floor\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "level",
"description": "Layer 'Hackerspace' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if repeat_on=)",
"value": "1"
"value": "1",
"description": "level=1 is displayed as \"Located on the first floor\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "level",
"description": "Layer 'Hackerspace' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if repeat_on=)",
"value": "-1"
"value": "-1",
"description": "level=-1 is displayed as \"Located on the first basement level\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#single_level",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "website",
"description": "Layer 'Hackerspace' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Hackerspace' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "email",
"description": "Layer 'Hackerspace' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Hackerspace' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Hackerspace' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "phone",
"description": "Layer 'Hackerspace' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Hackerspace' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:mastodon",
"description": "Layer 'Hackerspace' shows and asks freeform values for key 'contact:mastodon' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "Values of `contact:mastodon` are shown with \"{fediverse_link(contact:mastodon)}\" and can be updated. The question is \"What is the Mastodon-handle of {title()}?\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#mastodon",
"icon_url": "./assets/svg/mastodon.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Hackerspace' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"When is this hackerspace opened?\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#opening_hours_24_7",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Hackerspace' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "24/7"
"value": "24/7",
"description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#opening_hours_24_7",
"icon_url": "./assets/layers/questions/open24_7.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Hackerspace' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#opening_hours_24_7",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:3dprinter",
"description": "Layer 'Hackerspace' shows service:3dprinter=yes with a fixed text, namely 'There is a 3D-printer available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "service:3dprinter=yes is displayed as \"There is a 3D-printer available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_3dprinter",
"icon_url": "./assets/layers/hackerspace/3d_printer.svg"
},
{
"key": "service:3dprinter",
"description": "Layer 'Hackerspace' shows service:3dprinter=no with a fixed text, namely 'There is no 3D-printer available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "service:3dprinter=no is displayed as \"There is no 3D-printer available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_3dprinter",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:3dprinter",
"description": "Layer 'Hackerspace' shows service:3dprinter=limited with a fixed text, namely 'There is a limited 3D-printer available at this hackerspace' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "limited"
"value": "limited",
"description": "service:3dprinter=limited is displayed as \"There is a limited 3D-printer available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_3dprinter",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:lasercutter",
"description": "Layer 'Hackerspace' shows service:lasercutter=yes with a fixed text, namely 'There is a laser cutter available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "service:lasercutter=yes is displayed as \"There is a laser cutter available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_lasercutter",
"icon_url": "./assets/layers/hackerspace/lasercutter.svg"
},
{
"key": "service:lasercutter",
"description": "Layer 'Hackerspace' shows service:lasercutter=no with a fixed text, namely 'There is no laser cutter available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "service:lasercutter=no is displayed as \"There is no laser cutter available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_lasercutter",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:lasercutter",
"description": "Layer 'Hackerspace' shows service:lasercutter=limited with a fixed text, namely 'There is a limited laser cutter available at this hackerspace' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "limited"
"value": "limited",
"description": "service:lasercutter=limited is displayed as \"There is a limited laser cutter available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_lasercutter",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:cnc_drilling_machine",
"description": "Layer 'Hackerspace' shows service:cnc_drilling_machine=yes with a fixed text, namely 'There is a CNC drill available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "service:cnc_drilling_machine=yes is displayed as \"There is a CNC drill available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_cnc_drilling_machine",
"icon_url": "./assets/layers/hackerspace/cnc.svg"
},
{
"key": "service:cnc_drilling_machine",
"description": "Layer 'Hackerspace' shows service:cnc_drilling_machine=no with a fixed text, namely 'There is no CNC drill available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "service:cnc_drilling_machine=no is displayed as \"There is no CNC drill available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_cnc_drilling_machine",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:cnc_drilling_machine",
"description": "Layer 'Hackerspace' shows service:cnc_drilling_machine=limited with a fixed text, namely 'There is a limited CNC drill available at this hackerspace' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "limited"
"value": "limited",
"description": "service:cnc_drilling_machine=limited is displayed as \"There is a limited CNC drill available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_cnc_drilling_machine",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:media_studio",
"description": "Layer 'Hackerspace' shows service:media_studio=yes with a fixed text, namely 'There is a multimedia studio available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "service:media_studio=yes is displayed as \"There is a multimedia studio available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_media_studio",
"icon_url": "./assets/layers/hackerspace/media_studio.svg"
},
{
"key": "service:media_studio",
"description": "Layer 'Hackerspace' shows service:media_studio=no with a fixed text, namely 'There is no multimedia studio available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "service:media_studio=no is displayed as \"There is no multimedia studio available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_media_studio",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:media_studio",
"description": "Layer 'Hackerspace' shows service:media_studio=limited with a fixed text, namely 'There is a limited multimedia studio available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "limited"
"value": "limited",
"description": "service:media_studio=limited is displayed as \"There is a limited multimedia studio available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_media_studio",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:sewing_machine",
"description": "Layer 'Hackerspace' shows service:sewing_machine=yes with a fixed text, namely 'There is a sewing machine available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "service:sewing_machine=yes is displayed as \"There is a sewing machine available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_sewing_machine",
"icon_url": "./assets/layers/hackerspace/sewing_machine.svg"
},
{
"key": "service:sewing_machine",
"description": "Layer 'Hackerspace' shows service:sewing_machine=no with a fixed text, namely 'There is no sewing machine available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "service:sewing_machine=no is displayed as \"There is no sewing machine available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_sewing_machine",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:sewing_machine",
"description": "Layer 'Hackerspace' shows service:sewing_machine=limited with a fixed text, namely 'There is a limited sewing machine available at this hackerspace' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "limited"
"value": "limited",
"description": "service:sewing_machine=limited is displayed as \"There is a limited sewing machine available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_sewing_machine",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:workshop:wood",
"description": "Layer 'Hackerspace' shows service:workshop:wood=yes with a fixed text, namely 'There is a woodworking workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "service:workshop:wood=yes is displayed as \"There is a woodworking workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_wood",
"icon_url": "./assets/layers/hackerspace/woodworking.svg"
},
{
"key": "service:workshop:wood",
"description": "Layer 'Hackerspace' shows service:workshop:wood=no with a fixed text, namely 'There is no woodworking workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "service:workshop:wood=no is displayed as \"There is no woodworking workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_wood",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:workshop:wood",
"description": "Layer 'Hackerspace' shows service:workshop:wood=limited with a fixed text, namely 'There is a limited woodworking workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "limited"
"value": "limited",
"description": "service:workshop:wood=limited is displayed as \"There is a limited woodworking workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_wood",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:workshop:ceramics",
"description": "Layer 'Hackerspace' shows service:workshop:ceramics=yes with a fixed text, namely 'There is a ceramics workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "service:workshop:ceramics=yes is displayed as \"There is a ceramics workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_ceramics",
"icon_url": "./assets/layers/hackerspace/ceramics.svg"
},
{
"key": "service:workshop:ceramics",
"description": "Layer 'Hackerspace' shows service:workshop:ceramics=no with a fixed text, namely 'There is no ceramics workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "service:workshop:ceramics=no is displayed as \"There is no ceramics workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_ceramics",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:workshop:ceramics",
"description": "Layer 'Hackerspace' shows service:workshop:ceramics=limited with a fixed text, namely 'There is a limited ceramics workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "limited"
"value": "limited",
"description": "service:workshop:ceramics=limited is displayed as \"There is a limited ceramics workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_ceramics",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:workshop:metal",
"description": "Layer 'Hackerspace' shows service:workshop:metal=yes with a fixed text, namely 'There is a metal workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "service:workshop:metal=yes is displayed as \"There is a metal workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_metal",
"icon_url": "./assets/layers/hackerspace/metal.svg"
},
{
"key": "service:workshop:metal",
"description": "Layer 'Hackerspace' shows service:workshop:metal=no with a fixed text, namely 'There is no metal workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "service:workshop:metal=no is displayed as \"There is no metal workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_metal",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:workshop:metal",
"description": "Layer 'Hackerspace' shows service:workshop:metal=limited with a fixed text, namely 'There is a limited metal workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "limited"
"value": "limited",
"description": "service:workshop:metal=limited is displayed as \"There is a limited metal workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_workshop_metal",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:bicycle:diy",
"description": "Layer 'Hackerspace' shows service:bicycle:diy=yes with a fixed text, namely 'There is a bicycle repair workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "service:bicycle:diy=yes is displayed as \"There is a bicycle repair workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_bicycle_diy",
"icon_url": "./assets/layers/hackerspace/bicycle.svg"
},
{
"key": "service:bicycle:diy",
"description": "Layer 'Hackerspace' shows service:bicycle:diy=no with a fixed text, namely 'There is no bicycle repair workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "service:bicycle:diy=no is displayed as \"There is no bicycle repair workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_bicycle_diy",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "service:bicycle:diy",
"description": "Layer 'Hackerspace' shows service:bicycle:diy=limited with a fixed text, namely 'There is a limited bicycle repair workshop available at this hackerspace' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "limited"
"value": "limited",
"description": "service:bicycle:diy=limited is displayed as \"There is a limited bicycle repair workshop available at this hackerspace\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_service_bicycle_diy",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Hackerspace' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "designated"
"value": "designated",
"description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#wheelchair_access",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Hackerspace' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#wheelchair_access",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Hackerspace' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "limited"
"value": "limited",
"description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#wheelchair_access",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Hackerspace' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#wheelchair_access",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "drink:club-mate",
"description": "Layer 'Hackerspace' shows drink:club-mate=yes with a fixed text, namely 'This hackerspace serves Club-Mate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "drink:club-mate=yes is displayed as \"This hackerspace serves Club-Mate\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hs_club_mate",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "drink:club-mate",
"description": "Layer 'Hackerspace' shows drink:club-mate=no with a fixed text, namely 'This hackerspace does not serve Club-Mate' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "drink:club-mate=no is displayed as \"This hackerspace does not serve Club-Mate\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hs_club_mate",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "start_date",
"description": "Layer 'Hackerspace' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')"
"description": "Values of `start_date` are shown with \"This hackerspace was founded at {start_date}\" and can be updated. The question is \"When was this hackerspace founded?\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#hackerspaces_start_date",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "internet_access",
"description": "Layer 'Hackerspace' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "wlan"
"value": "wlan",
"description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet",
"icon_url": "wifi"
},
{
"key": "internet_access",
"description": "Layer 'Hackerspace' shows internet_access=no with a fixed text, namely 'This place <b>does not</b> offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "no"
"value": "no",
"description": "internet_access=no is displayed as \"This place <b>does not</b> offer internet access\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet",
"icon_url": "wifi;cross_bottom_right:red"
},
{
"key": "internet_access",
"description": "Layer 'Hackerspace' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "yes"
"value": "yes",
"description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "internet_access",
"description": "Layer 'Hackerspace' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "terminal"
"value": "terminal",
"description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet",
"icon_url": "computer"
},
{
"key": "internet_access",
"description": "Layer 'Hackerspace' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "wired"
"value": "wired",
"description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "internet_access",
"description": "Layer 'Hackerspace' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces')",
"value": "terminal;wifi"
"value": "terminal;wifi",
"description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Hackerspace' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "yes"
"value": "yes",
"description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet_fee",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Hackerspace' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "no"
"value": "no",
"description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet_fee",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Hackerspace' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "customers"
"value": "customers",
"description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet_fee",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "internet_access:ssid",
"description": "Layer 'Hackerspace' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if internet_access~^(.*wlan.*)$)"
"description": "Values of `internet_access:ssid` are shown with \"The network name is <b>{internet_access:ssid}</b>\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet_ssid",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
},
{
"key": "internet_access:ssid",
"description": "Layer 'Hackerspace' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hackerspaces and makerspaces') (This is only shown if internet_access~^(.*wlan.*)$)",
"value": "Telekom"
"value": "Telekom",
"description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Hackerspace",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hackerspace.md#internet_ssid",
"icon_url": "./assets/themes/hackerspaces/glider.svg"
}
]
}

View file

@ -7,322 +7,308 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/hailhydrant/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "emergency",
"description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations has a layer Map of hydrants showing features with this tag",
"value": "fire_hydrant"
"value": "fire_hydrant",
"description": "Features with this tag are displayed by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "id",
"description": "Layer 'Map of hydrants' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "colour",
"description": "Layer 'Map of hydrants' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `colour` are shown with \"The hydrant color is {colour}\" and can be updated. The question is \"What color is the hydrant?\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_color",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "colour",
"description": "Layer 'Map of hydrants' shows colour=yellow with a fixed text, namely 'The hydrant color is yellow.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "yellow"
"value": "yellow",
"description": "colour=yellow is displayed as \"The hydrant color is yellow.\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_color",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "colour",
"description": "Layer 'Map of hydrants' shows colour=red with a fixed text, namely 'The hydrant color is red.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "red"
"value": "red",
"description": "colour=red is displayed as \"The hydrant color is red.\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_color",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "fire_hydrant:type",
"description": "Layer 'Map of hydrants' shows and asks freeform values for key 'fire_hydrant:type' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `fire_hydrant:type` are shown with \" Hydrant type: {fire_hydrant:type}\" and can be updated. The question is \"What type of hydrant is it?\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "fire_hydrant:type",
"description": "Layer 'Map of hydrants' shows fire_hydrant:type=pillar with a fixed text, namely 'Pillar type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "pillar"
"value": "pillar",
"description": "fire_hydrant:type=pillar is displayed as \"Pillar type.\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type",
"icon_url": "./assets/themes/hailhydrant/hydrant_pillar.svg"
},
{
"key": "fire_hydrant:type",
"description": "Layer 'Map of hydrants' shows fire_hydrant:type=pipe with a fixed text, namely 'Pipe type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "pipe"
"value": "pipe",
"description": "fire_hydrant:type=pipe is displayed as \"Pipe type.\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type",
"icon_url": "./assets/themes/hailhydrant/hydrant_unknown.svg"
},
{
"key": "fire_hydrant:type",
"description": "Layer 'Map of hydrants' shows fire_hydrant:type=wall with a fixed text, namely 'Wall type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "wall"
"value": "wall",
"description": "fire_hydrant:type=wall is displayed as \"Wall type.\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type",
"icon_url": "./assets/themes/hailhydrant/hydrant_unknown.svg"
},
{
"key": "fire_hydrant:type",
"description": "Layer 'Map of hydrants' shows fire_hydrant:type=underground with a fixed text, namely 'Underground type.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "underground"
"value": "underground",
"description": "fire_hydrant:type=underground is displayed as \"Underground type.\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_type",
"icon_url": "./assets/themes/hailhydrant/hydrant_underground.svg"
},
{
"key": "emergency",
"description": "Layer 'Map of hydrants' shows emergency=fire_hydrant with a fixed text, namely 'The hydrant is (fully or partially) working' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "fire_hydrant"
"value": "fire_hydrant",
"description": "emergency=fire_hydrant is displayed as \"The hydrant is (fully or partially) working\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "disused:emergency",
"description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "fire_hydrant"
"value": "fire_hydrant",
"description": "disused:emergency=fire_hydrant & emergency= is displayed as \"The hydrant is unavailable\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "emergency",
"description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') Picking this answer will delete the key emergency.",
"value": ""
"description": "disused:emergency=fire_hydrant & emergency= is displayed as \"The hydrant is unavailable\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "removed:emergency",
"description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "fire_hydrant"
"value": "fire_hydrant",
"description": "removed:emergency=fire_hydrant & emergency= is displayed as \"The hydrant has been removed\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "emergency",
"description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant & emergency= with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') Picking this answer will delete the key emergency.",
"value": ""
"description": "removed:emergency=fire_hydrant & emergency= is displayed as \"The hydrant has been removed\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_state",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "fire_hydrant:diameter",
"description": "Layer 'Map of hydrants' shows and asks freeform values for key 'fire_hydrant:diameter' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `fire_hydrant:diameter` are shown with \"Pipe diameter: {canonical(fire_hydrant:diameter)}\" and can be updated. The question is \"What is the pipe diameter of this hydrant?\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_diameter",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "couplings",
"description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `couplings` are shown with \"Number of couplings: {couplings}\" and can be updated. The question is \"How many couplings does this fire hydrant have?\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_number_of_couplings",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "couplings:type",
"description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings:type' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `couplings:type` are shown with \"Couplings: {couplings:type}\" and can be updated. The question is \"What kind of couplings does this hydrant have?\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "couplings:type",
"description": "Layer 'Map of hydrants' shows couplings:type=Storz with a fixed text, namely 'Storz coupling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "Storz"
"value": "Storz",
"description": "couplings:type=Storz is displayed as \"Storz coupling\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings",
"icon_url": "./assets/layers/hydrant/storz.jpg"
},
{
"key": "couplings:type",
"description": "Layer 'Map of hydrants' shows couplings:type=UNI with a fixed text, namely 'UNI coupling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "UNI"
"value": "UNI",
"description": "couplings:type=UNI is displayed as \"UNI coupling\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "couplings:type",
"description": "Layer 'Map of hydrants' shows couplings:type=Barcelona with a fixed text, namely 'Barcelona coupling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "Barcelona"
"value": "Barcelona",
"description": "couplings:type=Barcelona is displayed as \"Barcelona coupling\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings",
"icon_url": "./assets/layers/hydrant/barcelona.jpg"
},
{
"key": "couplings:diameters",
"description": "Layer 'Map of hydrants' shows and asks freeform values for key 'couplings:diameters' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `couplings:diameters` are shown with \"Coupling diameters: {couplings:diameters}\" and can be updated. The question is \"What diameter are the couplings of this hydrant?\" by layer Map of hydrants",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#hydrant_couplings_diameters",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "image",
"description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#images",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "panoramax",
"description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#images",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "mapillary",
"description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#images",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "wikidata",
"description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#images",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Map of hydrants allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Map of hydrants, Map of fire extinguishers, Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hydrant.md#images",
"icon_url": "./assets/themes/hailhydrant/hydrant.svg"
},
{
"key": "emergency",
"description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations has a layer Map of fire extinguishers showing features with this tag",
"value": "fire_extinguisher"
},
{
"key": "id",
"description": "Layer 'Map of fire extinguishers' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"value": "fire_extinguisher",
"description": "Features with this tag are displayed by layer Map of fire extinguishers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg"
},
{
"key": "location",
"description": "Layer 'Map of fire extinguishers' shows and asks freeform values for key 'location' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `location` are shown with \"Location: {location}\" and can be updated. The question is \"Where is it positioned?\" by layer Map of fire extinguishers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md#extinguisher_location",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg"
},
{
"key": "location",
"description": "Layer 'Map of fire extinguishers' shows location=indoor with a fixed text, namely 'Found indoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "indoor"
"value": "indoor",
"description": "location=indoor is displayed as \"Found indoors.\" by layer Map of fire extinguishers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md#extinguisher_location",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg"
},
{
"key": "location",
"description": "Layer 'Map of fire extinguishers' shows location=outdoor with a fixed text, namely 'Found outdoors.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "outdoor"
},
{
"key": "image",
"description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Map of fire extinguishers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "outdoor",
"description": "location=outdoor is displayed as \"Found outdoors.\" by layer Map of fire extinguishers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/extinguisher.md#extinguisher_location",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations has a layer Map of fire stations showing features with this tag",
"value": "fire_station"
},
{
"key": "id",
"description": "Layer 'Map of fire stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"value": "fire_station",
"description": "Features with this tag are displayed by layer Map of fire stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "name",
"description": "Layer 'Map of fire stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `name` are shown with \"This station is called {name}.\" and can be updated. The question is \"What is the name of this fire station?\" by layer Map of fire stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_name",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "addr:street",
"description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `addr:street` are shown with \"This station is along a highway called {addr:street}.\" and can be updated. The question is \" What is the street name where the station located?\" by layer Map of fire stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_street",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "addr:place",
"description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:place' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `addr:place` are shown with \"This station is found within {addr:place}.\" and can be updated. The question is \"Where is the station located? (e.g. name of neighborhood, villlage, or town)\" by layers Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_place",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "operator",
"description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `operator` are shown with \"This station is operated by {operator}.\" and can be updated. The question is \"What agency operates this station?\" by layers Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_agency",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "operator",
"description": "Layer 'Map of fire stations' shows operator=Bureau of Fire Protection & operator:type=government with a fixed text, namely 'Bureau of Fire Protection' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "Bureau of Fire Protection"
"value": "Bureau of Fire Protection",
"description": "operator=Bureau of Fire Protection & operator:type=government is displayed as \"Bureau of Fire Protection\" by layer Map of fire stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_agency",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "operator:type",
"description": "Layer 'Map of fire stations' shows operator=Bureau of Fire Protection & operator:type=government with a fixed text, namely 'Bureau of Fire Protection' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "government"
"value": "government",
"description": "operator=Bureau of Fire Protection & operator:type=government is displayed as \"Bureau of Fire Protection\" by layer Map of fire stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_agency",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "operator:type",
"description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator:type' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `operator:type` are shown with \"The operator is a(n) {operator:type} entity.\" and can be updated. The question is \"How is the station operator classified?\" by layers Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "operator:type",
"description": "Layer 'Map of fire stations' shows operator:type=government with a fixed text, namely 'The station is operated by the government.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "government"
"value": "government",
"description": "operator:type=government is displayed as \"The station is operated by the government.\" by layers Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "operator:type",
"description": "Layer 'Map of fire stations' shows operator:type=community with a fixed text, namely 'The station is operated by a community-based, or informal organization.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "community"
"value": "community",
"description": "operator:type=community is displayed as \"The station is operated by a community-based, or informal organization.\" by layers Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "operator:type",
"description": "Layer 'Map of fire stations' shows operator:type=ngo with a fixed text, namely 'The station is operated by a formal group of volunteers.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "ngo"
"value": "ngo",
"description": "operator:type=ngo is displayed as \"The station is operated by a formal group of volunteers.\" by layers Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "operator:type",
"description": "Layer 'Map of fire stations' shows operator:type=private with a fixed text, namely 'The station is privately operated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "private"
},
{
"key": "image",
"description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Map of fire stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "private",
"description": "operator:type=private is displayed as \"The station is privately operated.\" by layers Map of fire stations, Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fire_station.md#station_operator",
"icon_url": "./assets/themes/hailhydrant/Twemoji12_1f692.svg"
},
{
"key": "emergency",
"description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations has a layer Map of ambulance stations showing features with this tag",
"value": "ambulance_station"
},
{
"key": "id",
"description": "Layer 'Map of ambulance stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"value": "ambulance_station",
"description": "Features with this tag are displayed by layer Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ambulancestation.md",
"icon_url": "./assets/themes/hailhydrant/Twemoji_1f691.svg"
},
{
"key": "name",
"description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
"description": "Values of `name` are shown with \"This station is called {name}.\" and can be updated. The question is \"What is the name of this ambulance station?\" by layer Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ambulancestation.md#ambulance_name",
"icon_url": "./assets/themes/hailhydrant/Twemoji_1f691.svg"
},
{
"key": "addr:street",
"description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:street' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
},
{
"key": "addr:place",
"description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:place' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
},
{
"key": "operator",
"description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
},
{
"key": "operator:type",
"description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator:type' (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')"
},
{
"key": "operator:type",
"description": "Layer 'Map of ambulance stations' shows operator:type=government with a fixed text, namely 'The station is operated by the government.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "government"
},
{
"key": "operator:type",
"description": "Layer 'Map of ambulance stations' shows operator:type=community with a fixed text, namely 'The station is operated by a community-based, or informal organization.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "community"
},
{
"key": "operator:type",
"description": "Layer 'Map of ambulance stations' shows operator:type=ngo with a fixed text, namely 'The station is operated by a formal group of volunteers.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "ngo"
},
{
"key": "operator:type",
"description": "Layer 'Map of ambulance stations' shows operator:type=private with a fixed text, namely 'The station is privately operated.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations')",
"value": "private"
},
{
"key": "image",
"description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Values of `addr:street` are shown with \"This station is along a highway called {addr:street}.\" and can be updated. The question is \"What is the street name where the station located?\" by layer Map of ambulance stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ambulancestation.md#ambulance_street",
"icon_url": "./assets/themes/hailhydrant/Twemoji_1f691.svg"
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -7,293 +7,341 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/tourism_accomodation/hotel.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "tourism",
"description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag",
"value": "hotel"
"value": "hotel",
"description": "Features with this tag are displayed by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "tourism",
"description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag",
"value": "hostel"
"value": "hostel",
"description": "Features with this tag are displayed by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "tourism",
"description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag",
"value": "apartment"
"value": "apartment",
"description": "Features with this tag are displayed by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "tourism",
"description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag",
"value": "chalet"
"value": "chalet",
"description": "Features with this tag are displayed by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "tourism",
"description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag",
"value": "motel"
"value": "motel",
"description": "Features with this tag are displayed by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "tourism",
"description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag",
"value": "guest_house"
"value": "guest_house",
"description": "Features with this tag are displayed by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "tourism",
"description": "The MapComplete theme Hotels has a layer Tourism accomodation showing features with this tag",
"value": "camp_site"
"value": "camp_site",
"description": "Features with this tag are displayed by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "id",
"description": "Layer 'Tourism accomodation' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hotels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#images",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "panoramax",
"description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#images",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "mapillary",
"description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#images",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "wikidata",
"description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#images",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Tourism accomodation allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#images",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "name",
"description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Hotels')"
"description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this {title()}?\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#name",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "group_only",
"description": "Layer 'Tourism accomodation' shows group_only=yes with a fixed text, namely 'This hostel is exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if tourism=hostel)",
"value": "yes"
"value": "yes",
"description": "group_only=yes is displayed as \"This hostel is exclusively for groups\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#group_only",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "group_only",
"description": "Layer 'Tourism accomodation' shows group_only=no with a fixed text, namely 'This hostel is not exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if tourism=hostel)",
"value": "no"
"value": "no",
"description": "group_only=no is displayed as \"This hostel is not exclusively for groups\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#group_only",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "brand",
"description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Hotels')"
"description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"Is {title()} part of a bigger brand?\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#brand",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "nobrand",
"description": "Layer 'Tourism accomodation' shows nobrand=yes with a fixed text, namely 'Not part of a bigger brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "yes"
"value": "yes",
"description": "nobrand=yes is displayed as \"Not part of a bigger brand\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#brand",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "phone",
"description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Hotels')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Tourism accomodation' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Hotels')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "email",
"description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Hotels')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Tourism accomodation' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Hotels')"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Tourism accomodation' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Hotels')"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "website",
"description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Hotels')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Tourism accomodation' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Hotels')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layers Tourism accomodation, Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Tourism accomodation' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "designated"
"value": "designated",
"description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#wheelchair_access",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Tourism accomodation' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "yes"
"value": "yes",
"description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#wheelchair_access",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Tourism accomodation' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "limited"
"value": "limited",
"description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#wheelchair_access",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Tourism accomodation' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "no"
"value": "no",
"description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#wheelchair_access",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "toilets:wheelchair",
"description": "Layer 'Tourism accomodation' shows toilets:wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "yes"
"value": "yes",
"description": "toilets:wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#toilets_wheelchair",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "toilets:wheelchair",
"description": "Layer 'Tourism accomodation' shows toilets:wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "no"
"value": "no",
"description": "toilets:wheelchair=no is displayed as \"No wheelchair access\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#toilets_wheelchair",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "toilets:wheelchair",
"description": "Layer 'Tourism accomodation' shows toilets:wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "designated"
"value": "designated",
"description": "toilets:wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#toilets_wheelchair",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access",
"description": "Layer 'Tourism accomodation' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "wlan"
"value": "wlan",
"description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet",
"icon_url": "wifi"
},
{
"key": "internet_access",
"description": "Layer 'Tourism accomodation' shows internet_access=no with a fixed text, namely 'This place <b>does not</b> offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "no"
"value": "no",
"description": "internet_access=no is displayed as \"This place <b>does not</b> offer internet access\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet",
"icon_url": "wifi;cross_bottom_right:red"
},
{
"key": "internet_access",
"description": "Layer 'Tourism accomodation' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Hotels')",
"value": "yes"
"value": "yes",
"description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access",
"description": "Layer 'Tourism accomodation' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "terminal"
"value": "terminal",
"description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet",
"icon_url": "computer"
},
{
"key": "internet_access",
"description": "Layer 'Tourism accomodation' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "wired"
"value": "wired",
"description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access",
"description": "Layer 'Tourism accomodation' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "terminal;wifi"
"value": "terminal;wifi",
"description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Tourism accomodation' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "yes"
"value": "yes",
"description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet_fee",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Tourism accomodation' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "no"
"value": "no",
"description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet_fee",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Tourism accomodation' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "customers"
"value": "customers",
"description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet_fee",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access:ssid",
"description": "Layer 'Tourism accomodation' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Hotels') (This is only shown if internet_access~^(.*wlan.*)$)"
"description": "Values of `internet_access:ssid` are shown with \"The network name is <b>{internet_access:ssid}</b>\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet_ssid",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access:ssid",
"description": "Layer 'Tourism accomodation' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels') (This is only shown if internet_access~^(.*wlan.*)$)",
"value": "Telekom"
"value": "Telekom",
"description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#internet_ssid",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "dog",
"description": "Layer 'Tourism accomodation' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "yes"
"value": "yes",
"description": "dog=yes is displayed as \"Dogs are allowed\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_allowed.svg"
},
{
"key": "dog",
"description": "Layer 'Tourism accomodation' shows dog=no with a fixed text, namely 'Dogs are <b>not</b> allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "no"
"value": "no",
"description": "dog=no is displayed as \"Dogs are <b>not</b> allowed\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#dog_access",
"icon_url": "./assets/layers/questions/no_dogs.svg"
},
{
"key": "dog",
"description": "Layer 'Tourism accomodation' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "leashed"
"value": "leashed",
"description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_leashed.svg"
},
{
"key": "dog",
"description": "Layer 'Tourism accomodation' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "unleashed"
"value": "unleashed",
"description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_allowed.svg"
},
{
"key": "dog",
"description": "Layer 'Tourism accomodation' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Hotels')",
"value": "outside"
"value": "outside",
"description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Tourism accomodation",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tourism_accomodation.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_outside.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Hotels has a layer Love hotels showing features with this tag",
"value": "love_hotel"
},
{
"key": "id",
"description": "Layer 'Love hotels' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Hotels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Love hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Love hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Love hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Love hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Love hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "love_hotel",
"description": "Features with this tag are displayed by layer Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/love_hotel.md",
"icon_url": "ring"
},
{
"key": "name",
"description": "Layer 'Love hotels' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Hotels')"
},
{
"key": "phone",
"description": "Layer 'Love hotels' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Hotels')"
},
{
"key": "contact:phone",
"description": "Layer 'Love hotels' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Hotels')"
},
{
"key": "email",
"description": "Layer 'Love hotels' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Hotels')"
},
{
"key": "contact:email",
"description": "Layer 'Love hotels' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Hotels')"
},
{
"key": "operator:email",
"description": "Layer 'Love hotels' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Hotels')"
},
{
"key": "website",
"description": "Layer 'Love hotels' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Hotels')"
},
{
"key": "contact:website",
"description": "Layer 'Love hotels' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Hotels')"
"description": "Values of `name` are shown with \"This love hotel is named <b>{name}</b>\" and can be updated. The question is \"What is the name of this love hotel?\" by layer Love hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/love_hotel.md#name",
"icon_url": "ring"
}
]
}

View file

@ -7,193 +7,273 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/ice_cream/ice_cream.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Icecream has a layer Ice cream parlors showing features with this tag",
"value": "ice_cream"
"value": "ice_cream",
"description": "Features with this tag are displayed by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "id",
"description": "Layer 'Ice cream parlors' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Icecream') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#images",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "panoramax",
"description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#images",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "mapillary",
"description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#images",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "wikidata",
"description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#images",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Ice cream parlors allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#images",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "name",
"description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Icecream')"
"description": "Values of `name` are shown with \"This ice cream parlor is named <b>{name}</b>\" and can be updated. The question is \"What is the name of this ice cream parlor?\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#1",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Icecream')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#opening_hours",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Ice cream parlors' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Icecream')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#opening_hours",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "phone",
"description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Icecream')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Ice cream parlors' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Icecream')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "email",
"description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Icecream')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Ice cream parlors' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Icecream')"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Ice cream parlors' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Icecream')"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "website",
"description": "Layer 'Ice cream parlors' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Icecream')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Ice cream parlors' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Icecream')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "diet:sugar_free",
"description": "Layer 'Ice cream parlors' shows diet:sugar_free=only with a fixed text, namely 'This shop <b>only sells sugar free</b> products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "only"
"value": "only",
"description": "diet:sugar_free=only is displayed as \"This shop <b>only sells sugar free</b> products\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#sugar_free",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:sugar_free",
"description": "Layer 'Ice cream parlors' shows diet:sugar_free=yes with a fixed text, namely 'This shop has a big sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "yes"
"value": "yes",
"description": "diet:sugar_free=yes is displayed as \"This shop has a big sugar free offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#sugar_free",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:sugar_free",
"description": "Layer 'Ice cream parlors' shows diet:sugar_free=limited with a fixed text, namely 'This shop has a <b>limited sugar free</b> offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "limited"
"value": "limited",
"description": "diet:sugar_free=limited is displayed as \"This shop has a <b>limited sugar free</b> offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#sugar_free",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:sugar_free",
"description": "Layer 'Ice cream parlors' shows diet:sugar_free=no with a fixed text, namely 'This shop has no sugar free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "no"
"value": "no",
"description": "diet:sugar_free=no is displayed as \"This shop has no sugar free offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#sugar_free",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:lactose_free",
"description": "Layer 'Ice cream parlors' shows diet:lactose_free=only with a fixed text, namely '<b>Only sells lactose free</b> products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "only"
"value": "only",
"description": "diet:lactose_free=only is displayed as \"<b>Only sells lactose free</b> products\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#lactose_free",
"icon_url": "./assets/layers/questions/lactose_free.svg"
},
{
"key": "diet:lactose_free",
"description": "Layer 'Ice cream parlors' shows diet:lactose_free=yes with a fixed text, namely 'Big lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "yes"
"value": "yes",
"description": "diet:lactose_free=yes is displayed as \"Big lactose free offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#lactose_free",
"icon_url": "./assets/layers/questions/lactose_free.svg"
},
{
"key": "diet:lactose_free",
"description": "Layer 'Ice cream parlors' shows diet:lactose_free=limited with a fixed text, namely '<b>Limited lactose free</b> offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "limited"
"value": "limited",
"description": "diet:lactose_free=limited is displayed as \"<b>Limited lactose free</b> offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#lactose_free",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:lactose_free",
"description": "Layer 'Ice cream parlors' shows diet:lactose_free=no with a fixed text, namely 'No lactose free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "no"
"value": "no",
"description": "diet:lactose_free=no is displayed as \"No lactose free offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#lactose_free",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:gluten_free",
"description": "Layer 'Ice cream parlors' shows diet:gluten_free=only with a fixed text, namely 'This shop <b>only sells gluten free</b> products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "only"
"value": "only",
"description": "diet:gluten_free=only is displayed as \"This shop <b>only sells gluten free</b> products\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#gluten_free",
"icon_url": "./assets/layers/questions/glutenfree.svg"
},
{
"key": "diet:gluten_free",
"description": "Layer 'Ice cream parlors' shows diet:gluten_free=yes with a fixed text, namely 'This shop has a big gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "yes"
"value": "yes",
"description": "diet:gluten_free=yes is displayed as \"This shop has a big gluten free offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#gluten_free",
"icon_url": "./assets/layers/questions/glutenfree.svg"
},
{
"key": "diet:gluten_free",
"description": "Layer 'Ice cream parlors' shows diet:gluten_free=limited with a fixed text, namely 'This shop has a <b>limited gluten free</b> offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "limited"
"value": "limited",
"description": "diet:gluten_free=limited is displayed as \"This shop has a <b>limited gluten free</b> offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#gluten_free",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:gluten_free",
"description": "Layer 'Ice cream parlors' shows diet:gluten_free=no with a fixed text, namely 'This shop has no gluten free offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "no"
"value": "no",
"description": "diet:gluten_free=no is displayed as \"This shop has no gluten free offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#gluten_free",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:vegan",
"description": "Layer 'Ice cream parlors' shows diet:vegan=only with a fixed text, namely 'This place <b>only sells vegan</b> products' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "only"
"value": "only",
"description": "diet:vegan=only is displayed as \"This place <b>only sells vegan</b> products\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:vegan",
"description": "Layer 'Ice cream parlors' shows diet:vegan=yes with a fixed text, namely 'This shop has a big vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "yes"
"value": "yes",
"description": "diet:vegan=yes is displayed as \"This shop has a big vegan offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:vegan",
"description": "Layer 'Ice cream parlors' shows diet:vegan=limited with a fixed text, namely 'This shop has a <b>limited vegan</b> offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "limited"
"value": "limited",
"description": "diet:vegan=limited is displayed as \"This shop has a <b>limited vegan</b> offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "diet:vegan",
"description": "Layer 'Ice cream parlors' shows diet:vegan=no with a fixed text, namely 'This shop has no vegan offering' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "no"
"value": "no",
"description": "diet:vegan=no is displayed as \"This shop has no vegan offering\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#vegan",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "payment:cash",
"description": "Layer 'Ice cream parlors' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "yes"
"value": "yes",
"description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#payment_options",
"icon_url": "./assets/layers/questions/cash.svg"
},
{
"key": "payment:cards",
"description": "Layer 'Ice cream parlors' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "yes"
"value": "yes",
"description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#payment_options",
"icon_url": "./assets/layers/questions/payment_card.svg"
},
{
"key": "payment:qr_code",
"description": "Layer 'Ice cream parlors' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "yes"
"value": "yes",
"description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#payment_options",
"icon_url": "./assets/layers/questions/qrcode.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Ice cream parlors' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "designated"
"value": "designated",
"description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Ice cream parlors' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "yes"
"value": "yes",
"description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Ice cream parlors' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "limited"
"value": "limited",
"description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Ice cream parlors' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Icecream')",
"value": "no"
"value": "no",
"description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Ice cream parlors",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/ice_cream.md#wheelchair_access",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -7,75 +7,71 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/insect_hotel/insect_hotel.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "man_made",
"description": "The MapComplete theme Insect Hotels has a layer Insect Hotels showing features with this tag",
"value": "insect_hotel"
"value": "insect_hotel",
"description": "Features with this tag are displayed by layer Insect Hotels",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md",
"icon_url": "./assets/layers/insect_hotel/insect_hotel.svg"
},
{
"key": "id",
"description": "Layer 'Insect Hotels' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Insect Hotels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Insect Hotels, Beehives",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Insect Hotels, Beehives",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#images",
"icon_url": "./assets/layers/insect_hotel/insect_hotel.svg"
},
{
"key": "panoramax",
"description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Insect Hotels, Beehives",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#images",
"icon_url": "./assets/layers/insect_hotel/insect_hotel.svg"
},
{
"key": "mapillary",
"description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Insect Hotels, Beehives",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#images",
"icon_url": "./assets/layers/insect_hotel/insect_hotel.svg"
},
{
"key": "wikidata",
"description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Insect Hotels, Beehives",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#images",
"icon_url": "./assets/layers/insect_hotel/insect_hotel.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Insect Hotels allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Insect Hotels, Beehives",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/insect_hotel.md#images",
"icon_url": "./assets/layers/insect_hotel/insect_hotel.svg"
},
{
"key": "man_made",
"description": "The MapComplete theme Insect Hotels has a layer Beehives showing features with this tag",
"value": "beehive"
},
{
"key": "id",
"description": "Layer 'Beehives' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Insect Hotels') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Beehives allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Beehives allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Beehives allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Beehives allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Beehives allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "beehive",
"description": "Features with this tag are displayed by layer Beehives",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/beehive.md",
"icon_url": "./assets/layers/beehive/beehive.svg"
},
{
"key": "capacity",
"description": "Layer 'Beehives' shows and asks freeform values for key 'capacity' (in the mapcomplete.org theme 'Insect Hotels')"
"description": "Values of `capacity` are shown with \"There are {capacity} beehives\" and can be updated. The question is \"How many beehives are there?\" by layer Beehives",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/beehive.md#capacity",
"icon_url": "./assets/layers/beehive/beehive.svg"
},
{
"key": "capacity",
"description": "Layer 'Beehives' shows capacity=1 with a fixed text, namely 'There is 1 beehive' and allows to pick this as a default answer (in the mapcomplete.org theme 'Insect Hotels')",
"value": "1"
"value": "1",
"description": "capacity=1 is displayed as \"There is 1 beehive\" by layer Beehives",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/beehive.md#capacity",
"icon_url": "./assets/layers/beehive/beehive.svg"
}
]
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -7,54 +7,75 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/lighthouses/lighthouse.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "man_made",
"description": "The MapComplete theme Lighthouses has a layer lighthouse showing features with this tag",
"value": "lighthouse"
"value": "lighthouse",
"description": "Features with this tag are displayed by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md",
"icon_url": "./assets/themes/lighthouses/lighthouse.svg"
},
{
"key": "id",
"description": "Layer 'lighthouse' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Lighthouses') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'lighthouse allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#images",
"icon_url": "./assets/themes/lighthouses/lighthouse.svg"
},
{
"key": "panoramax",
"description": "The layer 'lighthouse allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#images",
"icon_url": "./assets/themes/lighthouses/lighthouse.svg"
},
{
"key": "mapillary",
"description": "The layer 'lighthouse allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#images",
"icon_url": "./assets/themes/lighthouses/lighthouse.svg"
},
{
"key": "wikidata",
"description": "The layer 'lighthouse allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#images",
"icon_url": "./assets/themes/lighthouses/lighthouse.svg"
},
{
"key": "wikipedia",
"description": "The layer 'lighthouse allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#images",
"icon_url": "./assets/themes/lighthouses/lighthouse.svg"
},
{
"key": "wikidata",
"description": "Layer 'lighthouse' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Lighthouses')"
"description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#wikipedia",
"icon_url": "./assets/themes/lighthouses/lighthouse.svg"
},
{
"key": "wikipedia",
"description": "Layer 'lighthouse' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Lighthouses')"
"description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#wikipedia",
"icon_url": "./assets/themes/lighthouses/lighthouse.svg"
},
{
"key": "wikidata",
"description": "Layer 'lighthouse' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Lighthouses') Picking this answer will delete the key wikidata.",
"value": ""
"description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#wikipedia",
"icon_url": "./assets/themes/lighthouses/lighthouse.svg"
},
{
"key": "height",
"description": "Layer 'lighthouse' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Lighthouses')"
"description": "Values of `height` are shown with \"The height of this lighthouse is {height} metres.\" and can be updated. The question is \"What is the height of this lighthouse, in metres?\" by layer lighthouse",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lighthouse.md#lighthouse_height",
"icon_url": "./assets/themes/lighthouses/lighthouse.svg"
}
]
}

View file

@ -7,252 +7,275 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/maps/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "tourism",
"description": "The MapComplete theme A map of maps has a layer Maps showing features with this tag",
"value": "map"
"value": "map",
"description": "Features with this tag are displayed by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "information",
"description": "The MapComplete theme A map of maps has a layer Maps showing features with this tag",
"value": "map"
"value": "map",
"description": "Features with this tag are displayed by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "id",
"description": "Layer 'Maps' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'A map of maps') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Maps, Tactile Maps, Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Maps, Tactile Maps, Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#images",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "panoramax",
"description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Maps, Tactile Maps, Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#images",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "mapillary",
"description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Maps, Tactile Maps, Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#images",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "wikidata",
"description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Maps, Tactile Maps, Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#images",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Maps, Tactile Maps, Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#images",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_type",
"description": "Layer 'Maps' shows map_type=topo with a fixed text, namely 'Topographical map <p class='subtle'>The map contains contour lines. </p>' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "topo"
"value": "topo",
"description": "map_type=topo is displayed as \"Topographical map <p class='subtle'>The map contains contour lines. </p>\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_type",
"description": "Layer 'Maps' shows map_type=street with a fixed text, namely 'A map with all streets or ways of an area. <p class='subtle'>The streets are mostly named; the angles, distances etc. are accurate</p>' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "street"
"value": "street",
"description": "map_type=street is displayed as \"A map with all streets or ways of an area. <p class='subtle'>The streets are mostly named; the angles, distances etc. are accurate</p>\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_type",
"description": "Layer 'Maps' shows map_type=scheme with a fixed text, namely 'This is a schematic map. <p class='subtle'>A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.</p> ' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "scheme"
"value": "scheme",
"description": "map_type=scheme is displayed as \"This is a schematic map. <p class='subtle'>A sketched map with only important ways and POIs. The angles, distances etc. are merely illustrative, not accurate.</p> \" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_type",
"description": "Layer 'Maps' shows map_type=toposcope with a fixed text, namely 'This is a toposcope. <p class='subtle'>A marker erected on high places which indicates the direction to notable landscape features which can be seen from that point<p>' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "toposcope"
"value": "toposcope",
"description": "map_type=toposcope is displayed as \"This is a toposcope. <p class='subtle'>A marker erected on high places which indicates the direction to notable landscape features which can be seen from that point<p>\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_type",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_size",
"description": "Layer 'Maps' shows map_size=building with a fixed text, namely 'A map of the rooms within a building' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "building"
"value": "building",
"description": "map_size=building is displayed as \"A map of the rooms within a building\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_size",
"description": "Layer 'Maps' shows map_size=site with a fixed text, namely 'A map of special site, like of a historical castle, a park, a campus, a forest, ....' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "site"
"value": "site",
"description": "map_size=site is displayed as \"A map of special site, like of a historical castle, a park, a campus, a forest, ....\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_size",
"description": "Layer 'Maps' shows map_size=village with a fixed text, namely 'A map showing the village or town' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "village"
"value": "village",
"description": "map_size=village is displayed as \"A map showing the village or town\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_size",
"description": "Layer 'Maps' shows map_size=city with a fixed text, namely 'A map of a city' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "city"
"value": "city",
"description": "map_size=city is displayed as \"A map of a city\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_size",
"description": "Layer 'Maps' shows map_size=region with a fixed text, namely 'The map of an entire region, showing multiple cities and villages' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "region"
"value": "region",
"description": "map_size=region is displayed as \"The map of an entire region, showing multiple cities and villages\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_size",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_source",
"description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the mapcomplete.org theme 'A map of maps')"
"description": "Values of `map_source` are shown with \"This map is based on {map_source}\" and can be updated. The question is \"On which data is this map based?\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_source",
"description": "Layer 'Maps' shows map_source=OpenStreetMap & not:map_source= with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "OpenStreetMap"
"value": "OpenStreetMap",
"description": "map_source=OpenStreetMap & not:map_source= is displayed as \"This map is based on OpenStreetMap\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "not:map_source",
"description": "Layer 'Maps' shows map_source=OpenStreetMap & not:map_source= with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps') Picking this answer will delete the key not:map_source.",
"value": ""
"description": "map_source=OpenStreetMap & not:map_source= is displayed as \"This map is based on OpenStreetMap\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_map_source",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_source:attribution",
"description": "Layer 'Maps' shows map_source:attribution=yes with a fixed text, namely 'OpenStreetMap is clearly attributed, including the ODBL-license' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)",
"value": "yes"
"value": "yes",
"description": "map_source:attribution=yes is displayed as \"OpenStreetMap is clearly attributed, including the ODBL-license\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_source:attribution",
"description": "Layer 'Maps' shows map_source:attribution=incomplete with a fixed text, namely 'OpenStreetMap is clearly attributed, but the license is not mentioned' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)",
"value": "incomplete"
"value": "incomplete",
"description": "map_source:attribution=incomplete is displayed as \"OpenStreetMap is clearly attributed, but the license is not mentioned\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_source:attribution",
"description": "Layer 'Maps' shows map_source:attribution=sticker with a fixed text, namely 'OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)",
"value": "sticker"
"value": "sticker",
"description": "map_source:attribution=sticker is displayed as \"OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_source:attribution",
"description": "Layer 'Maps' shows map_source:attribution=none with a fixed text, namely 'There is no attribution at all' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)",
"value": "none"
"value": "none",
"description": "map_source:attribution=none is displayed as \"There is no attribution at all\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "map_source:attribution",
"description": "Layer 'Maps' shows map_source:attribution=no with a fixed text, namely 'There is no attribution at all' (in the mapcomplete.org theme 'A map of maps') (This is only shown if map_source~^((O|)pen(S|s)treet(M|m)ap)$ | map_source=osm | map_source=OSM)",
"value": "no"
"value": "no",
"description": "map_source:attribution=no is displayed as \"There is no attribution at all\" by layer Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/map.md#map_attribution",
"icon_url": "./assets/layers/map/map.svg"
},
{
"key": "information",
"description": "The MapComplete theme A map of maps has a layer Tactile Maps showing features with this tag",
"value": "tactile_map"
},
{
"key": "id",
"description": "Layer 'Tactile Maps' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'A map of maps') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Tactile Maps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "tactile_map",
"description": "Features with this tag are displayed by layer Tactile Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md",
"icon_url": "./assets/themes/maps/logo.svg"
},
{
"key": "blind:description:en",
"description": "Layer 'Tactile Maps' shows and asks freeform values for key 'blind:description:en' (in the mapcomplete.org theme 'A map of maps')"
"description": "Values of `blind:description:en` are shown with \"Description: {blind:description:en}.\" and can be updated. The question is \"What does this tactile map show?\" by layer Tactile Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#description",
"icon_url": "./assets/themes/maps/logo.svg"
},
{
"key": "braille",
"description": "Layer 'Tactile Maps' shows braille=yes with a fixed text, namely 'This tactile map has braille text.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "yes"
"value": "yes",
"description": "braille=yes is displayed as \"This tactile map has braille text.\" by layer Tactile Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#braille",
"icon_url": "./assets/themes/maps/logo.svg"
},
{
"key": "braille",
"description": "Layer 'Tactile Maps' shows braille=no with a fixed text, namely 'This tactile map does not have braille text.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "no"
"value": "no",
"description": "braille=no is displayed as \"This tactile map does not have braille text.\" by layer Tactile Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#braille",
"icon_url": "./assets/themes/maps/logo.svg"
},
{
"key": "embossed_letters",
"description": "Layer 'Tactile Maps' shows embossed_letters=yes with a fixed text, namely 'This tactile map has embossed letters.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "yes"
"value": "yes",
"description": "embossed_letters=yes is displayed as \"This tactile map has embossed letters.\" by layer Tactile Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#embossed_letters",
"icon_url": "./assets/themes/maps/logo.svg"
},
{
"key": "embossed_letters",
"description": "Layer 'Tactile Maps' shows embossed_letters=no with a fixed text, namely 'This tactile map does not have embossed letters.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "no"
"value": "no",
"description": "embossed_letters=no is displayed as \"This tactile map does not have embossed letters.\" by layer Tactile Maps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#embossed_letters",
"icon_url": "./assets/themes/maps/logo.svg"
},
{
"key": "website",
"description": "Layer 'Tactile Maps' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'A map of maps')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layers Tactile Maps, Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Tactile Maps' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'A map of maps')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layers Tactile Maps, Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_map.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "information",
"description": "The MapComplete theme A map of maps has a layer Tactile Models showing features with this tag",
"value": "tactile_model"
},
{
"key": "id",
"description": "Layer 'Tactile Models' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'A map of maps') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Tactile Models allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "tactile_model",
"description": "Features with this tag are displayed by layer Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md",
"icon_url": "./assets/layers/tactile_model/tactile_model.svg"
},
{
"key": "blind:description:en",
"description": "Layer 'Tactile Models' shows and asks freeform values for key 'blind:description:en' (in the mapcomplete.org theme 'A map of maps')"
"description": "Values of `blind:description:en` are shown with \"Description: {blind:description:en}.\" and can be updated. The question is \"What does this tactile model show?\" by layer Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#description",
"icon_url": "./assets/layers/tactile_model/tactile_model.svg"
},
{
"key": "braille",
"description": "Layer 'Tactile Models' shows braille=yes with a fixed text, namely 'There is a braille description.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "yes"
"value": "yes",
"description": "braille=yes is displayed as \"There is a braille description.\" by layer Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#braille",
"icon_url": "./assets/layers/tactile_model/tactile_model.svg"
},
{
"key": "braille",
"description": "Layer 'Tactile Models' shows braille=no with a fixed text, namely 'There is no braille description.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "no"
"value": "no",
"description": "braille=no is displayed as \"There is no braille description.\" by layer Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#braille",
"icon_url": "./assets/layers/tactile_model/tactile_model.svg"
},
{
"key": "embossed_letters",
"description": "Layer 'Tactile Models' shows embossed_letters=yes with a fixed text, namely 'There are embossed letters describing the model.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "yes"
"value": "yes",
"description": "embossed_letters=yes is displayed as \"There are embossed letters describing the model.\" by layer Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#embossed_letters",
"icon_url": "./assets/layers/tactile_model/tactile_model.svg"
},
{
"key": "embossed_letters",
"description": "Layer 'Tactile Models' shows embossed_letters=no with a fixed text, namely 'There are no embossed letters describing the model.' and allows to pick this as a default answer (in the mapcomplete.org theme 'A map of maps')",
"value": "no"
"value": "no",
"description": "embossed_letters=no is displayed as \"There are no embossed letters describing the model.\" by layer Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#embossed_letters",
"icon_url": "./assets/layers/tactile_model/tactile_model.svg"
},
{
"key": "scale",
"description": "Layer 'Tactile Models' shows and asks freeform values for key 'scale' (in the mapcomplete.org theme 'A map of maps')"
},
{
"key": "website",
"description": "Layer 'Tactile Models' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'A map of maps')"
},
{
"key": "contact:website",
"description": "Layer 'Tactile Models' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'A map of maps')"
"description": "Values of `scale` are shown with \"The scale of this model is {scale}.\" and can be updated. The question is \"What scale is the model?\" by layer Tactile Models",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tactile_model.md#scale",
"icon_url": "./assets/layers/tactile_model/tactile_model.svg"
}
]
}

View file

@ -7,145 +7,172 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/maxspeed/maxspeed_logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "residential"
"value": "residential",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "living_street"
"value": "living_street",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "motorway"
"value": "motorway",
"description": "Features with this tag are displayed by layers Maxspeed, Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "tertiary"
"value": "tertiary",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "unclassified"
"value": "unclassified",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "secondary"
"value": "secondary",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "primary"
"value": "primary",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "trunk"
"value": "trunk",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "motorway"
"value": "tertiary_link",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "tertiary_link"
"value": "secondary_link",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "secondary_link"
"value": "primary_link",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "primary_link"
"value": "trunk_link",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "trunk_link"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Maxspeed showing features with this tag",
"value": "motorway_link"
"value": "motorway_link",
"description": "Features with this tag are displayed by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md"
},
{
"key": "id",
"description": "Layer 'Maxspeed' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Maxspeed') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Maxspeed, Speed Camera, Speed Display",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "maxspeed",
"description": "Layer 'Maxspeed' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Maxspeed')"
"description": "Values of `maxspeed` are shown with \"The maximum allowed speed on this road is {canonical(maxspeed)}\" and can be updated. The question is \"What is the legal maximum speed one is allowed to drive on this road?\" by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md#maxspeed_maxspeed"
},
{
"key": "highway",
"description": "Layer 'Maxspeed' shows highway=living_street & _country=be with a fixed text, namely 'This is a living street, which has a maxspeed of 20km/h' and allows to pick this as a default answer (in the mapcomplete.org theme 'Maxspeed')",
"value": "living_street"
"value": "living_street",
"description": "highway=living_street & _country=be is displayed as \"This is a living street, which has a maxspeed of 20km/h\" by layer Maxspeed",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/maxspeed.md#maxspeed_maxspeed",
"icon_url": "./assets/layers/maxspeed/living_street_be.svg"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Speed Camera showing features with this tag",
"value": "speed_camera"
},
{
"key": "id",
"description": "Layer 'Speed Camera' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Maxspeed') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"value": "speed_camera",
"description": "Features with this tag are displayed by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "image",
"description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#images",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "panoramax",
"description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#images",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "mapillary",
"description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#images",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "wikidata",
"description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#images",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#images",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "maxspeed",
"description": "Layer 'Speed Camera' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Maxspeed')"
"description": "Values of `maxspeed` are shown with \"The maximum speed allowed is {canonical(maxspeed)}\" and can be updated. The question is \"What is the maximum speed allowed at this speed camera?\" by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#maxspeed",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "direction",
"description": "Layer 'Speed Camera' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Maxspeed')"
"description": "Values of `direction` are shown with \"Films to a compass heading of {direction}\" and can be updated. The question is \"In which geographical direction does this camera film?\" by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#camera_direction",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "highway",
"description": "The MapComplete theme Maxspeed has a layer Speed Display showing features with this tag",
"value": "speed_display"
},
{
"key": "id",
"description": "Layer 'Speed Display' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Maxspeed') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"value": "speed_display",
"description": "Features with this tag are displayed by layer Speed Display",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_display.md",
"icon_url": "./assets/layers/speed_display/speed_display.svg"
},
{
"key": "maxspeed",
"description": "Layer 'Speed Display' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Maxspeed')"
"description": "Values of `maxspeed` are shown with \"The maximum speed allowed at this speed display is {canonical(maxspeed)}\" and can be updated. The question is \"What is the maximum speed allowed at this speed display?\" by layer Speed Display",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_display.md#maxspeed",
"icon_url": "./assets/layers/speed_display/speed_display.svg"
},
{
"key": "inscription",
"description": "Layer 'Speed Display' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Maxspeed')"
"description": "Values of `inscription` are shown with \"The text on this speed display is {inscription}\" and can be updated. The question is \"What is the text on this speed display?\" by layer Speed Display",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_display.md#inscription",
"icon_url": "./assets/layers/speed_display/speed_display.svg"
}
]
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -7,29 +7,38 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/notes/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "fixme",
"description": "The MapComplete theme Notes on OpenStreetMap has a layer OSM objects with FIXME tags showing features with this tag"
"description": "Features with this tag are displayed by layer OSM objects with FIXME tags",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fixme.md",
"icon_url": "./assets/svg/bug.svg"
},
{
"key": "FIXME",
"description": "The MapComplete theme Notes on OpenStreetMap has a layer OSM objects with FIXME tags showing features with this tag"
"description": "Features with this tag are displayed by layer OSM objects with FIXME tags",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fixme.md",
"icon_url": "./assets/svg/bug.svg"
},
{
"key": "id",
"description": "Layer 'OSM objects with FIXME tags' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Notes on OpenStreetMap') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer OSM objects with FIXME tags",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fixme.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "fixme",
"description": "Layer 'OSM objects with FIXME tags' shows and asks freeform values for key 'fixme' (in the mapcomplete.org theme 'Notes on OpenStreetMap')"
"description": "Values of `fixme` are shown with \"Fixme Text: {fixme}\" and can be updated. The question is \"What is wrong with this feature?\" by layer OSM objects with FIXME tags",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fixme.md#fixme",
"icon_url": "./assets/svg/bug.svg"
},
{
"key": "fixme",
"description": "Layer 'OSM objects with FIXME tags' shows fixme= with a fixed text, namely 'This issue has been resolved' and allows to pick this as a default answer (in the mapcomplete.org theme 'Notes on OpenStreetMap') Picking this answer will delete the key fixme.",
"value": ""
"description": "fixme= is displayed as \"This issue has been resolved\" by layer OSM objects with FIXME tags",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/fixme.md#fixme",
"icon_url": "./assets/svg/bug.svg"
}
]
}

View file

@ -7,148 +7,208 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/observation_tower/Tower_observation.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "tower:type",
"description": "The MapComplete theme Observation towers has a layer Observation towers showing features with this tag",
"value": "observation"
"value": "observation",
"description": "Features with this tag are displayed by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "id",
"description": "Layer 'Observation towers' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Observation towers') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Observation towers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#images",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "panoramax",
"description": "The layer 'Observation towers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#images",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "mapillary",
"description": "The layer 'Observation towers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#images",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "wikidata",
"description": "The layer 'Observation towers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#images",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Observation towers allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#images",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "name",
"description": "Layer 'Observation towers' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Observation towers')"
"description": "Values of `name` are shown with \"This tower is called <b>{name}</b>\" and can be updated. The question is \"What is the name of this tower?\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#name",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "noname",
"description": "Layer 'Observation towers' shows noname=yes with a fixed text, namely 'This tower doesn't have a specific name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers')",
"value": "yes"
"value": "yes",
"description": "noname=yes is displayed as \"This tower doesn't have a specific name\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#name",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "height",
"description": "Layer 'Observation towers' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Observation towers')"
"description": "Values of `height` are shown with \"This tower is {height} high\" and can be updated. The question is \"What is the height of this tower?\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Height",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "access",
"description": "Layer 'Observation towers' shows access=yes with a fixed text, namely 'This tower is publicly accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers')",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"This tower is publicly accessible\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#access",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "access",
"description": "Layer 'Observation towers' shows access=guided with a fixed text, namely 'This tower can only be visited with a guide' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers')",
"value": "guided"
"value": "guided",
"description": "access=guided is displayed as \"This tower can only be visited with a guide\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#access",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "charge",
"description": "Layer 'Observation towers' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Observation towers') (This is only shown if access=yes | access=guided)"
"description": "Values of `charge` are shown with \"Visiting this tower costs <b>{charge}</b>\" and can be updated. The question is \"How much does one have to pay to enter this tower?\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Fee",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "fee",
"description": "Layer 'Observation towers' shows fee=no & charge= with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if access=yes | access=guided)",
"value": "no"
"value": "no",
"description": "fee=no & charge= is displayed as \"Free to visit\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Fee",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "charge",
"description": "Layer 'Observation towers' shows fee=no & charge= with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') Picking this answer will delete the key charge. (This is only shown if access=yes | access=guided)",
"value": ""
"description": "fee=no & charge= is displayed as \"Free to visit\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Fee",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "payment:cash",
"description": "Layer 'Observation towers' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if fee=yes | charge~.+)",
"value": "yes"
"value": "yes",
"description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Payment_methods",
"icon_url": "./assets/layers/questions/cash.svg"
},
{
"key": "payment:cards",
"description": "Layer 'Observation towers' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if fee=yes | charge~.+)",
"value": "yes"
"value": "yes",
"description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Payment_methods",
"icon_url": "./assets/layers/questions/payment_card.svg"
},
{
"key": "payment:qr_code",
"description": "Layer 'Observation towers' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if fee=yes | charge~.+)",
"value": "yes"
"value": "yes",
"description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Payment_methods",
"icon_url": "./assets/layers/questions/qrcode.svg"
},
{
"key": "website",
"description": "Layer 'Observation towers' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Observation towers')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Observation towers' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Observation towers')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "step_count",
"description": "Layer 'Observation towers' shows and asks freeform values for key 'step_count' (in the mapcomplete.org theme 'Observation towers') (This is only shown if access=yes | access=guided)"
"description": "Values of `step_count` are shown with \"This tower has {step_count} steps to reach the top\" and can be updated. The question is \"How much individual steps does one have to climb to reach the top of this tower?\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#step_count",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "elevator",
"description": "Layer 'Observation towers' shows elevator=yes with a fixed text, namely 'This tower has an elevator which takes visitors to the top' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if access=yes | access=guided)",
"value": "yes"
"value": "yes",
"description": "elevator=yes is displayed as \"This tower has an elevator which takes visitors to the top\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#elevator",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "elevator",
"description": "Layer 'Observation towers' shows elevator=no with a fixed text, namely 'This tower does not have an elevator' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if access=yes | access=guided)",
"value": "no"
"value": "no",
"description": "elevator=no is displayed as \"This tower does not have an elevator\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#elevator",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "operator",
"description": "Layer 'Observation towers' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Observation towers')"
"description": "Values of `operator` are shown with \"Maintained by <b>{operator}</b>\" and can be updated. The question is \"Who maintains this tower?\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#Operator",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Observation towers' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if elevator=yes & (access=yes | access=guided))",
"value": "designated"
"value": "designated",
"description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wheelchair_access",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Observation towers' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if elevator=yes & (access=yes | access=guided))",
"value": "yes"
"value": "yes",
"description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wheelchair_access",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Observation towers' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if elevator=yes & (access=yes | access=guided))",
"value": "limited"
"value": "limited",
"description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wheelchair_access",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Observation towers' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Observation towers') (This is only shown if elevator=yes & (access=yes | access=guided))",
"value": "no"
"value": "no",
"description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wheelchair_access",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "wikidata",
"description": "Layer 'Observation towers' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Observation towers')"
"description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wikipedia",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "wikipedia",
"description": "Layer 'Observation towers' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Observation towers')"
"description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wikipedia",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
},
{
"key": "wikidata",
"description": "Layer 'Observation towers' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Observation towers') Picking this answer will delete the key wikidata.",
"value": ""
"description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer Observation towers",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/observation_tower.md#wikipedia",
"icon_url": "./assets/layers/observation_tower/Tower_observation.svg"
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -7,61 +7,87 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/openwindpowermap/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "generator:source",
"description": "The MapComplete theme Wind power generators has a layer wind turbine showing features with this tag",
"value": "wind"
"value": "wind",
"description": "Features with this tag are displayed by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "id",
"description": "Layer 'wind turbine' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Wind power generators') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "generator:output:electricity",
"description": "Layer 'wind turbine' shows and asks freeform values for key 'generator:output:electricity' (in the mapcomplete.org theme 'Wind power generators')"
"description": "Values of `generator:output:electricity` are shown with \"The power output of this wind turbine is {generator:output:electricity}.\" and can be updated. The question is \"What is the power output of this wind turbine? (e.g. 2.3 MW)\" by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#turbine_output",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "operator",
"description": "Layer 'wind turbine' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Wind power generators')"
"description": "Values of `operator` are shown with \"This wind turbine is operated by {operator}.\" and can be updated. The question is \"Who operates this wind turbine?\" by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#turbine_operator",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "height",
"description": "Layer 'wind turbine' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Wind power generators')"
"description": "Values of `height` are shown with \"The total height (including rotor radius) of this wind turbine is {height} metres.\" and can be updated. The question is \"What is the total height of this wind turbine (including rotor radius), in metres?\" by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#turbine_height",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "rotor:diameter",
"description": "Layer 'wind turbine' shows and asks freeform values for key 'rotor:diameter' (in the mapcomplete.org theme 'Wind power generators')"
"description": "Values of `rotor:diameter` are shown with \"The rotor diameter of this wind turbine is {rotor:diameter} metres.\" and can be updated. The question is \"What is the rotor diameter of this wind turbine, in metres?\" by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#turbine_diameter",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "start_date",
"description": "Layer 'wind turbine' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Wind power generators')"
"description": "Values of `start_date` are shown with \"This wind turbine went into operation on/in {start_date}.\" and can be updated. The question is \"When did this wind turbine go into operation?\" by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#turbine_start_date",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "fixme",
"description": "Layer 'wind turbine' shows and asks freeform values for key 'fixme' (in the mapcomplete.org theme 'Wind power generators')"
"description": "Values of `fixme` are shown with \"Extra information for OpenStreetMap experts: {fixme}\" and can be updated. The question is \"Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)\" by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#windturbine_fixme",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "image",
"description": "The layer 'wind turbine allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#images",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "panoramax",
"description": "The layer 'wind turbine allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#images",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "mapillary",
"description": "The layer 'wind turbine allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#images",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "wikidata",
"description": "The layer 'wind turbine allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#images",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
},
{
"key": "wikipedia",
"description": "The layer 'wind turbine allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer wind turbine",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/windturbine.md#images",
"icon_url": "./assets/themes/openwindpowermap/wind_turbine.svg"
}
]
}

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

File diff suppressed because it is too large Load diff

View file

@ -7,62 +7,86 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/rainbow_crossings/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "surface:colour",
"description": "The MapComplete theme Rainbow pedestrian crossings has a layer Crossings with rainbow paintings showing features with this tag",
"value": "rainbow"
"value": "rainbow",
"description": "Features with this tag are displayed by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md",
"icon_url": "./assets/themes/rainbow_crossings/crossing.svg"
},
{
"key": "highway",
"description": "The MapComplete theme Rainbow pedestrian crossings has a layer Crossings with rainbow paintings showing features with this tag",
"value": "crossing"
"value": "crossing",
"description": "Features with this tag are displayed by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md",
"icon_url": "./assets/themes/rainbow_crossings/crossing.svg"
},
{
"key": "highway",
"description": "The MapComplete theme Rainbow pedestrian crossings has a layer Crossings with rainbow paintings showing features with this tag",
"value": "footway"
"value": "footway",
"description": "Features with this tag are displayed by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md",
"icon_url": "./assets/themes/rainbow_crossings/crossing.svg"
},
{
"key": "footway",
"description": "The MapComplete theme Rainbow pedestrian crossings has a layer Crossings with rainbow paintings showing features with this tag",
"value": "crossing"
"value": "crossing",
"description": "Features with this tag are displayed by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md",
"icon_url": "./assets/themes/rainbow_crossings/crossing.svg"
},
{
"key": "id",
"description": "Layer 'Crossings with rainbow paintings' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Rainbow pedestrian crossings') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#images",
"icon_url": "./assets/themes/rainbow_crossings/crossing.svg"
},
{
"key": "panoramax",
"description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#images",
"icon_url": "./assets/themes/rainbow_crossings/crossing.svg"
},
{
"key": "mapillary",
"description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#images",
"icon_url": "./assets/themes/rainbow_crossings/crossing.svg"
},
{
"key": "wikidata",
"description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#images",
"icon_url": "./assets/themes/rainbow_crossings/crossing.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Crossings with rainbow paintings allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#images",
"icon_url": "./assets/themes/rainbow_crossings/crossing.svg"
},
{
"key": "surface:colour",
"description": "Layer 'Crossings with rainbow paintings' shows surface:colour=rainbow with a fixed text, namely 'This crossing has rainbow paintings' and allows to pick this as a default answer (in the mapcomplete.org theme 'Rainbow pedestrian crossings')",
"value": "rainbow"
"value": "rainbow",
"description": "surface:colour=rainbow is displayed as \"This crossing has rainbow paintings\" by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#crossing_with_rainbow",
"icon_url": "./assets/themes/rainbow_crossings/logo.svg"
},
{
"key": "not:surface:colour",
"description": "Layer 'Crossings with rainbow paintings' shows not:surface:colour=rainbow with a fixed text, namely 'No rainbow paintings here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Rainbow pedestrian crossings')",
"value": "rainbow"
"value": "rainbow",
"description": "not:surface:colour=rainbow is displayed as \"No rainbow paintings here\" by layer Crossings with rainbow paintings",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/rainbow_crossings.md#crossing_with_rainbow",
"icon_url": "./assets/themes/rainbow_crossings/crossing.svg"
}
]
}

View file

@ -7,394 +7,425 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/scouting_group/scouting.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "club",
"description": "The MapComplete theme Scouting groups has a layer Scouting groups showing features with this tag",
"value": "scout"
"value": "scout",
"description": "Features with this tag are displayed by layer Scouting groups",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md",
"icon_url": "./assets/layers/scouting_group/scouting.svg"
},
{
"key": "id",
"description": "Layer 'Scouting groups' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Scouting groups') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "name",
"description": "Layer 'Scouting groups' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `name` are shown with \"The name of this group is {name}\" and can be updated. The question is \"What is the name of this group?\" by layer Scouting groups",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#name",
"icon_url": "./assets/layers/scouting_group/scouting.svg"
},
{
"key": "brand",
"description": "Layer 'Scouting groups' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `brand` are shown with \"The scout association of this group is {brand}\" and can be updated. The question is \"To which scout association does {name} belong?\" by layer Scouting groups",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#association",
"icon_url": "./assets/layers/scouting_group/scouting.svg"
},
{
"key": "phone",
"description": "Layer 'Scouting groups' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Scouting groups' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Scouting groups')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "email",
"description": "Layer 'Scouting groups' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Scouting groups' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Scouting groups')"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Scouting groups' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Scouting groups')"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "website",
"description": "Layer 'Scouting groups' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Scouting groups' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Scouting groups')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layers Scouting groups, Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "start_date",
"description": "Values of `start_date` are shown with \"This group was founded at {start_date}\" and can be updated. The question is \"When was this group founded?\" by layer Scouting groups",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#start_date",
"icon_url": "./assets/layers/scouting_group/scouting.svg"
},
{
"key": "contact:mastodon",
"description": "Layer 'Scouting groups' shows and asks freeform values for key 'contact:mastodon' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `contact:mastodon` are shown with \"{fediverse_link(contact:mastodon)}\" and can be updated. The question is \"What is the Mastodon-handle of {title()}?\" by layers Scouting groups, Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/scouting_group.md#mastodon",
"icon_url": "./assets/svg/mastodon.svg"
},
{
"key": "leisure",
"value": "summer_camp",
"description": "Features with this tag are displayed by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "tourism",
"description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag",
"value": "camp_site"
"value": "camp_site",
"description": "Features with this tag are displayed by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "scout",
"description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag",
"value": "yes"
"value": "yes",
"description": "Features with this tag are displayed by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "scout",
"value": "only",
"description": "Features with this tag are displayed by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "group",
"value": "yes",
"description": "Features with this tag are displayed by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "group_only",
"description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag",
"value": "yes"
},
{
"key": "id",
"description": "Layer 'Group Campsites' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Scouting groups') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"value": "yes",
"description": "Features with this tag are displayed by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "image",
"description": "The layer 'Group Campsites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#images",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "panoramax",
"description": "The layer 'Group Campsites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#images",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "mapillary",
"description": "The layer 'Group Campsites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#images",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "wikidata",
"description": "The layer 'Group Campsites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#images",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Group Campsites allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#images",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "group_only",
"description": "Layer 'Group Campsites' shows group_only=yes with a fixed text, namely 'This campsite is exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "yes"
"value": "yes",
"description": "group_only=yes is displayed as \"This campsite is exclusively for groups\" by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#group_only",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "group_only",
"description": "Layer 'Group Campsites' shows group_only=no with a fixed text, namely 'This campsite is not exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "no"
"value": "no",
"description": "group_only=no is displayed as \"This campsite is not exclusively for groups\" by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#group_only",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "name",
"description": "Layer 'Group Campsites' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "phone",
"description": "Layer 'Group Campsites' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "contact:phone",
"description": "Layer 'Group Campsites' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "email",
"description": "Layer 'Group Campsites' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "contact:email",
"description": "Layer 'Group Campsites' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "operator:email",
"description": "Layer 'Group Campsites' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "website",
"description": "Layer 'Group Campsites' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "contact:website",
"description": "Layer 'Group Campsites' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `name` are shown with \"The name of this campsite is {name}\" and can be updated. The question is \"What is the name of this campsite?\" by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#name",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "charge",
"description": "Layer 'Group Campsites' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `charge` are shown with \"A fee of {charge} should be paid for here\" and can be updated. The question is \"Is a fee charged here?\" by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#fee",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "fee",
"description": "Layer 'Group Campsites' shows fee=no with a fixed text, namely 'The campsite is free of charge' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "no"
"value": "no",
"description": "fee=no is displayed as \"The campsite is free of charge\" by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#fee",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "fee",
"description": "Layer 'Group Campsites' shows fee=yes & charge= with a fixed text, namely 'A fee is charged here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "yes"
"value": "yes",
"description": "fee=yes & charge= is displayed as \"A fee is charged here.\" by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#fee",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "charge",
"description": "Layer 'Group Campsites' shows fee=yes & charge= with a fixed text, namely 'A fee is charged here.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') Picking this answer will delete the key charge.",
"value": ""
"description": "fee=yes & charge= is displayed as \"A fee is charged here.\" by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#fee",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "capacity:persons",
"description": "Layer 'Group Campsites' shows and asks freeform values for key 'capacity:persons' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `capacity:persons` are shown with \"{capacity:persons} people can stay here\" and can be updated. The question is \"How many people can stay here?\" by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#capacity_persons",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "toilets",
"description": "Layer 'Group Campsites' shows toilets=yes with a fixed text, namely 'This place has toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "yes"
"value": "yes",
"description": "toilets=yes is displayed as \"This place has toilets\" by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#caravansites_toilets",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "toilets",
"description": "Layer 'Group Campsites' shows toilets=no with a fixed text, namely 'This place does not have toilets' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "no"
"value": "no",
"description": "toilets=no is displayed as \"This place does not have toilets\" by layer Group Campsites",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#caravansites_toilets",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "toilets:wheelchair",
"description": "Layer 'Group Campsites' shows toilets:wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "yes"
"value": "yes",
"description": "toilets:wheelchair=yes is displayed as \"There is a dedicated toilet for wheelchair users\" by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#toilets_wheelchair",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "toilets:wheelchair",
"description": "Layer 'Group Campsites' shows toilets:wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "no"
"value": "no",
"description": "toilets:wheelchair=no is displayed as \"No wheelchair access\" by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#toilets_wheelchair",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "toilets:wheelchair",
"description": "Layer 'Group Campsites' shows toilets:wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "designated"
},
{
"key": "contact:mastodon",
"description": "Layer 'Group Campsites' shows and asks freeform values for key 'contact:mastodon' (in the mapcomplete.org theme 'Scouting groups')"
"value": "designated",
"description": "toilets:wheelchair=designated is displayed as \"There is only a dedicated toilet for wheelchair users\" by layers Group Campsites, Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_campsite.md#toilets_wheelchair",
"icon_url": "./assets/layers/campsite/campsite.svg"
},
{
"key": "tourism",
"description": "The MapComplete theme Scouting groups has a layer Hostels for groups and scouts showing features with this tag",
"value": "hostel"
},
{
"key": "scout",
"description": "The MapComplete theme Scouting groups has a layer Hostels for groups and scouts showing features with this tag",
"value": "yes"
},
{
"key": "group_only",
"description": "The MapComplete theme Scouting groups has a layer Hostels for groups and scouts showing features with this tag",
"value": "yes"
},
{
"key": "id",
"description": "Layer 'Hostels for groups and scouts' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Scouting groups') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Hostels for groups and scouts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Hostels for groups and scouts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Hostels for groups and scouts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Hostels for groups and scouts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Hostels for groups and scouts allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "hostel",
"description": "Features with this tag are displayed by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "name",
"description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `name` are shown with \"{name}\" and can be updated. The question is \"What is the name of this {title()}?\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#name",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "group_only",
"description": "Layer 'Hostels for groups and scouts' shows group_only=yes with a fixed text, namely 'This hostel is exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if tourism=hostel)",
"value": "yes"
"value": "yes",
"description": "group_only=yes is displayed as \"This hostel is exclusively for groups\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#group_only",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "group_only",
"description": "Layer 'Hostels for groups and scouts' shows group_only=no with a fixed text, namely 'This hostel is not exclusively for groups' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if tourism=hostel)",
"value": "no"
"value": "no",
"description": "group_only=no is displayed as \"This hostel is not exclusively for groups\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#group_only",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "brand",
"description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Scouting groups')"
"description": "Values of `brand` are shown with \"Part of {brand}\" and can be updated. The question is \"Is {title()} part of a bigger brand?\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#brand",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "nobrand",
"description": "Layer 'Hostels for groups and scouts' shows nobrand=yes with a fixed text, namely 'Not part of a bigger brand' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "yes"
},
{
"key": "phone",
"description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "contact:phone",
"description": "Layer 'Hostels for groups and scouts' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "email",
"description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "contact:email",
"description": "Layer 'Hostels for groups and scouts' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "operator:email",
"description": "Layer 'Hostels for groups and scouts' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "website",
"description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Scouting groups')"
},
{
"key": "contact:website",
"description": "Layer 'Hostels for groups and scouts' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Scouting groups')"
"value": "yes",
"description": "nobrand=yes is displayed as \"Not part of a bigger brand\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#brand",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Hostels for groups and scouts' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "designated"
"value": "designated",
"description": "wheelchair=designated is displayed as \"This place is specially adapted for wheelchair users\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#wheelchair_access",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Hostels for groups and scouts' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "yes"
"value": "yes",
"description": "wheelchair=yes is displayed as \"This place is easily reachable with a wheelchair\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#wheelchair_access",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Hostels for groups and scouts' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "limited"
"value": "limited",
"description": "wheelchair=limited is displayed as \"It is possible to reach this place in a wheelchair, but it is not easy\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#wheelchair_access",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "wheelchair",
"description": "Layer 'Hostels for groups and scouts' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "no"
},
{
"key": "toilets:wheelchair",
"description": "Layer 'Hostels for groups and scouts' shows toilets:wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "yes"
},
{
"key": "toilets:wheelchair",
"description": "Layer 'Hostels for groups and scouts' shows toilets:wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "no"
},
{
"key": "toilets:wheelchair",
"description": "Layer 'Hostels for groups and scouts' shows toilets:wheelchair=designated with a fixed text, namely 'There is only a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "designated"
"value": "no",
"description": "wheelchair=no is displayed as \"This place is not reachable with a wheelchair\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#wheelchair_access",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access",
"description": "Layer 'Hostels for groups and scouts' shows internet_access=wlan with a fixed text, namely 'This place offers wireless internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "wlan"
"value": "wlan",
"description": "internet_access=wlan is displayed as \"This place offers wireless internet access\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet",
"icon_url": "wifi"
},
{
"key": "internet_access",
"description": "Layer 'Hostels for groups and scouts' shows internet_access=no with a fixed text, namely 'This place <b>does not</b> offer internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "no"
"value": "no",
"description": "internet_access=no is displayed as \"This place <b>does not</b> offer internet access\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet",
"icon_url": "wifi;cross_bottom_right:red"
},
{
"key": "internet_access",
"description": "Layer 'Hostels for groups and scouts' shows internet_access=yes with a fixed text, namely 'This place offers internet access' (in the mapcomplete.org theme 'Scouting groups')",
"value": "yes"
"value": "yes",
"description": "internet_access=yes is displayed as \"This place offers internet access\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access",
"description": "Layer 'Hostels for groups and scouts' shows internet_access=terminal with a fixed text, namely 'This place offers internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "terminal"
"value": "terminal",
"description": "internet_access=terminal is displayed as \"This place offers internet access via a terminal or computer\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet",
"icon_url": "computer"
},
{
"key": "internet_access",
"description": "Layer 'Hostels for groups and scouts' shows internet_access=wired with a fixed text, namely 'This place offers wired internet access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "wired"
"value": "wired",
"description": "internet_access=wired is displayed as \"This place offers wired internet access\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access",
"description": "Layer 'Hostels for groups and scouts' shows internet_access=terminal;wifi with a fixed text, namely 'This place offers both wireless internet and internet access via a terminal or computer' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "terminal;wifi"
"value": "terminal;wifi",
"description": "internet_access=terminal;wifi is displayed as \"This place offers both wireless internet and internet access via a terminal or computer\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Hostels for groups and scouts' shows internet_access:fee=yes with a fixed text, namely 'There is a fee for the internet access at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "yes"
"value": "yes",
"description": "internet_access:fee=yes is displayed as \"There is a fee for the internet access at this place\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet_fee",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Hostels for groups and scouts' shows internet_access:fee=no with a fixed text, namely 'Internet access is free at this place' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "no"
"value": "no",
"description": "internet_access:fee=no is displayed as \"Internet access is free at this place\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet_fee",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access:fee",
"description": "Layer 'Hostels for groups and scouts' shows internet_access:fee=customers with a fixed text, namely 'Internet access is free at this place, for customers only' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if internet_access!=no & internet_access~.+)",
"value": "customers"
"value": "customers",
"description": "internet_access:fee=customers is displayed as \"Internet access is free at this place, for customers only\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet_fee",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access:ssid",
"description": "Layer 'Hostels for groups and scouts' shows and asks freeform values for key 'internet_access:ssid' (in the mapcomplete.org theme 'Scouting groups') (This is only shown if internet_access~^(.*wlan.*)$)"
"description": "Values of `internet_access:ssid` are shown with \"The network name is <b>{internet_access:ssid}</b>\" and can be updated. The question is \"What is the network name for the wireless internet access?\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet_ssid",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "internet_access:ssid",
"description": "Layer 'Hostels for groups and scouts' shows internet_access:ssid=Telekom with a fixed text, namely 'Telekom' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups') (This is only shown if internet_access~^(.*wlan.*)$)",
"value": "Telekom"
"value": "Telekom",
"description": "internet_access:ssid=Telekom is displayed as \"Telekom\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#internet_ssid",
"icon_url": "./assets/layers/tourism_accomodation/hostel.svg"
},
{
"key": "dog",
"description": "Layer 'Hostels for groups and scouts' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "yes"
"value": "yes",
"description": "dog=yes is displayed as \"Dogs are allowed\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_allowed.svg"
},
{
"key": "dog",
"description": "Layer 'Hostels for groups and scouts' shows dog=no with a fixed text, namely 'Dogs are <b>not</b> allowed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "no"
"value": "no",
"description": "dog=no is displayed as \"Dogs are <b>not</b> allowed\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#dog_access",
"icon_url": "./assets/layers/questions/no_dogs.svg"
},
{
"key": "dog",
"description": "Layer 'Hostels for groups and scouts' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "leashed"
"value": "leashed",
"description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_leashed.svg"
},
{
"key": "dog",
"description": "Layer 'Hostels for groups and scouts' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "unleashed"
"value": "unleashed",
"description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_allowed.svg"
},
{
"key": "dog",
"description": "Layer 'Hostels for groups and scouts' shows dog=outside with a fixed text, namely 'Dogs are allowed only outside' and allows to pick this as a default answer (in the mapcomplete.org theme 'Scouting groups')",
"value": "outside"
"value": "outside",
"description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Hostels for groups and scouts",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/group_hostel.md#dog_access",
"icon_url": "./assets/layers/questions/dogs_outside.svg"
}
]
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -7,206 +7,289 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/sport_pitch/table_tennis.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "leisure",
"description": "The MapComplete theme Sport pitches has a layer Sport pitches showing features with this tag",
"value": "pitch"
"value": "pitch",
"description": "Features with this tag are displayed by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "id",
"description": "Layer 'Sport pitches' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Sport pitches') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "panoramax",
"description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "mapillary",
"description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "wikidata",
"description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Sport pitches allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#images",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "sport",
"description": "Layer 'Sport pitches' shows and asks freeform values for key 'sport' (in the mapcomplete.org theme 'Sport pitches')"
"description": "Values of `sport` are shown with \"{sport} is played here\" and can be updated. The question is \"Which sport can be played here?\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "sport",
"description": "Layer 'Sport pitches' shows sport=basketball with a fixed text, namely 'Basketball is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "basketball"
"value": "basketball",
"description": "sport=basketball is displayed as \"Basketball is played here\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "sport",
"description": "Layer 'Sport pitches' shows sport=soccer with a fixed text, namely 'Soccer is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "soccer"
"value": "soccer",
"description": "sport=soccer is displayed as \"Soccer is played here\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "sport",
"description": "Layer 'Sport pitches' shows sport=table_tennis with a fixed text, namely 'This is a pingpong table' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "table_tennis"
"value": "table_tennis",
"description": "sport=table_tennis is displayed as \"This is a pingpong table\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "sport",
"description": "Layer 'Sport pitches' shows sport=tennis with a fixed text, namely 'Tennis is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "tennis"
"value": "tennis",
"description": "sport=tennis is displayed as \"Tennis is played here\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "sport",
"description": "Layer 'Sport pitches' shows sport=korfball with a fixed text, namely 'Korfball is played here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "korfball"
"value": "korfball",
"description": "sport=korfball is displayed as \"Korfball is played here\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "sport",
"description": "Layer 'Sport pitches' shows sport=basket with a fixed text, namely 'Basketball is played here' (in the mapcomplete.org theme 'Sport pitches')",
"value": "basket"
"value": "basket",
"description": "sport=basket is displayed as \"Basketball is played here\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "sport",
"description": "Layer 'Sport pitches' shows sport=skateboard with a fixed text, namely 'This is a skatepark' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "skateboard"
"value": "skateboard",
"description": "sport=skateboard is displayed as \"This is a skatepark\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "sport",
"description": "Layer 'Sport pitches' shows sport=equestrian with a fixed text, namely 'This is a horse riding arena' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "equestrian"
"value": "equestrian",
"description": "sport=equestrian is displayed as \"This is a horse riding arena\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_sport",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "hoops",
"description": "Layer 'Sport pitches' shows hoops=1 with a fixed text, namely 'This basketball pitch has a single hoop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)",
"value": "1"
"value": "1",
"description": "hoops=1 is displayed as \"This basketball pitch has a single hoop\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "hoops",
"description": "Layer 'Sport pitches' shows hoops=2 with a fixed text, namely 'This basketball pitch has two hoops' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)",
"value": "2"
"value": "2",
"description": "hoops=2 is displayed as \"This basketball pitch has two hoops\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "hoops",
"description": "Layer 'Sport pitches' shows hoops=4 with a fixed text, namely 'This basketball pitch has four hoops' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)",
"value": "4"
"value": "4",
"description": "hoops=4 is displayed as \"This basketball pitch has four hoops\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "hoops",
"description": "Layer 'Sport pitches' shows hoops~.+ with a fixed text, namely 'This basketball pitch has {hoops} hoops' (in the mapcomplete.org theme 'Sport pitches') (This is only shown if sport~^((^|.*;)basketball(;.*|$))$)"
"description": "hoops~.+ is displayed as \"This basketball pitch has {hoops} hoops\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#basketball_hoops",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "surface",
"description": "Layer 'Sport pitches' shows and asks freeform values for key 'surface' (in the mapcomplete.org theme 'Sport pitches')"
"description": "Values of `surface` are shown with \"The surface is <b>{surface}</b>\" and can be updated. The question is \"Which is the surface of this sport pitch?\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "surface",
"description": "Layer 'Sport pitches' shows surface=grass with a fixed text, namely 'The surface is <b>grass</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "grass"
"value": "grass",
"description": "surface=grass is displayed as \"The surface is <b>grass</b>\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "surface",
"description": "Layer 'Sport pitches' shows surface=sand with a fixed text, namely 'The surface is <b>sand</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "sand"
"value": "sand",
"description": "surface=sand is displayed as \"The surface is <b>sand</b>\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "surface",
"description": "Layer 'Sport pitches' shows surface=paving_stones with a fixed text, namely 'The surface is <b>paving stones</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "paving_stones"
"value": "paving_stones",
"description": "surface=paving_stones is displayed as \"The surface is <b>paving stones</b>\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "surface",
"description": "Layer 'Sport pitches' shows surface=asphalt with a fixed text, namely 'The surface is <b>asphalt</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "asphalt"
"value": "asphalt",
"description": "surface=asphalt is displayed as \"The surface is <b>asphalt</b>\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "surface",
"description": "Layer 'Sport pitches' shows surface=concrete with a fixed text, namely 'The surface is <b>concrete</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "concrete"
"value": "concrete",
"description": "surface=concrete is displayed as \"The surface is <b>concrete</b>\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "surface",
"description": "Layer 'Sport pitches' shows surface=fine_gravel with a fixed text, namely 'The surface is <b>fine gravel</b>' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "fine_gravel"
"value": "fine_gravel",
"description": "surface=fine_gravel is displayed as \"The surface is <b>fine gravel</b>\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "surface",
"description": "Layer 'Sport pitches' shows surface=tartan with a fixed text, namely 'The surface of this track is Tartan, a synthetic, slightly springy, porous surface' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "tartan"
"value": "tartan",
"description": "surface=tartan is displayed as \"The surface of this track is Tartan, a synthetic, slightly springy, porous surface\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_surface",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "access",
"description": "Layer 'Sport pitches' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"Public access\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "access",
"description": "Layer 'Sport pitches' shows access=limited with a fixed text, namely 'Limited access (e.g. only with an appointment, during certain hours, …)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "limited"
"value": "limited",
"description": "access=limited is displayed as \"Limited access (e.g. only with an appointment, during certain hours, …)\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "access",
"description": "Layer 'Sport pitches' shows access=members with a fixed text, namely 'Only accessible for members of the club' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "members"
"value": "members",
"description": "access=members is displayed as \"Only accessible for members of the club\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "access",
"description": "Layer 'Sport pitches' shows access=private with a fixed text, namely 'Private - not accessible to the public' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches')",
"value": "private"
"value": "private",
"description": "access=private is displayed as \"Private - not accessible to the public\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "access",
"description": "Layer 'Sport pitches' shows access=public with a fixed text, namely 'Public access' (in the mapcomplete.org theme 'Sport pitches')",
"value": "public"
"value": "public",
"description": "access=public is displayed as \"Public access\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_access",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "reservation",
"description": "Layer 'Sport pitches' shows reservation=required with a fixed text, namely 'Making an appointment is obligatory to use this sport pitch' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access!=public & access!=private & access!=members)",
"value": "required"
"value": "required",
"description": "reservation=required is displayed as \"Making an appointment is obligatory to use this sport pitch\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "reservation",
"description": "Layer 'Sport pitches' shows reservation=recommended with a fixed text, namely 'Making an appointment is recommended when using this sport pitch' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access!=public & access!=private & access!=members)",
"value": "recommended"
"value": "recommended",
"description": "reservation=recommended is displayed as \"Making an appointment is recommended when using this sport pitch\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "reservation",
"description": "Layer 'Sport pitches' shows reservation=yes with a fixed text, namely 'Making an appointment is possible, but not necessary to use this sport pitch' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access!=public & access!=private & access!=members)",
"value": "yes"
"value": "yes",
"description": "reservation=yes is displayed as \"Making an appointment is possible, but not necessary to use this sport pitch\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "reservation",
"description": "Layer 'Sport pitches' shows reservation=no with a fixed text, namely 'Making an appointment is not possible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access!=public & access!=private & access!=members)",
"value": "no"
"value": "no",
"description": "reservation=no is displayed as \"Making an appointment is not possible\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_reservation",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "phone",
"description": "Layer 'Sport pitches' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Sport pitches')"
"description": "Values of `phone` are shown with \"<a href='tel:{phone}'>{phone}</a>\" and can be updated. The question is \"What is the phone number of the operator?\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_phone",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "email",
"description": "Layer 'Sport pitches' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Sport pitches')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of the operator?\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_email",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Sport pitches' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access~.+)"
"description": "Values of `opening_hours` are shown with \"Openingsuren: {opening_hours_table()}\" and can be updated. The question is \"When is this pitch accessible?\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_opening_hours",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Sport pitches' shows opening_hours= with a fixed text, namely 'Always accessible' (in the mapcomplete.org theme 'Sport pitches') Picking this answer will delete the key opening_hours. (This is only shown if access~.+)",
"value": ""
"description": "opening_hours= is displayed as \"Always accessible\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_opening_hours",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Sport pitches' shows opening_hours=24/7 with a fixed text, namely 'Always accessible' and allows to pick this as a default answer (in the mapcomplete.org theme 'Sport pitches') (This is only shown if access~.+)",
"value": "24/7"
"value": "24/7",
"description": "opening_hours=24/7 is displayed as \"Always accessible\" by layer Sport pitches",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_pitch.md#sport_pitch_opening_hours",
"icon_url": "./assets/layers/sport_pitch/sport_pitch.svg"
}
]
}

File diff suppressed because it is too large Load diff

View file

@ -7,303 +7,319 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/street_lamps/street_lamp.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "highway",
"description": "The MapComplete theme Street Lighting has a layer Street Lamps showing features with this tag",
"value": "street_lamp"
"value": "street_lamp",
"description": "Features with this tag are displayed by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "id",
"description": "Layer 'Street Lamps' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Street Lighting') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Street Lamps, Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Street Lamps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Street Lamps, Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#images",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "panoramax",
"description": "The layer 'Street Lamps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Street Lamps, Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#images",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "mapillary",
"description": "The layer 'Street Lamps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Street Lamps, Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#images",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "wikidata",
"description": "The layer 'Street Lamps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Street Lamps, Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#images",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Street Lamps allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Street Lamps, Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#images",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "ref",
"description": "Layer 'Street Lamps' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Street Lighting')"
"description": "Values of `ref` are shown with \"This street lamp has the reference number {ref}\" and can be updated. The question is \"What is the reference number of this street lamp?\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#ref",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "support",
"description": "Layer 'Street Lamps' shows support=catenary with a fixed text, namely 'This lamp is suspended using cables' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "catenary"
"value": "catenary",
"description": "support=catenary is displayed as \"This lamp is suspended using cables\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "support",
"description": "Layer 'Street Lamps' shows support=ceiling with a fixed text, namely 'This lamp is mounted on a ceiling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "ceiling"
"value": "ceiling",
"description": "support=ceiling is displayed as \"This lamp is mounted on a ceiling\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "support",
"description": "Layer 'Street Lamps' shows support=ground with a fixed text, namely 'This lamp is mounted in the ground' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "ground"
"value": "ground",
"description": "support=ground is displayed as \"This lamp is mounted in the ground\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "support",
"description": "Layer 'Street Lamps' shows support=pedestal with a fixed text, namely 'This lamp is mounted on a short pole (mostly < 1.5m)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "pedestal"
"value": "pedestal",
"description": "support=pedestal is displayed as \"This lamp is mounted on a short pole (mostly < 1.5m)\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "support",
"description": "Layer 'Street Lamps' shows support=pole with a fixed text, namely 'This lamp is mounted on a pole' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "pole"
"value": "pole",
"description": "support=pole is displayed as \"This lamp is mounted on a pole\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "support",
"description": "Layer 'Street Lamps' shows support=wall with a fixed text, namely 'This lamp is mounted directly to the wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "wall"
"value": "wall",
"description": "support=wall is displayed as \"This lamp is mounted directly to the wall\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "support",
"description": "Layer 'Street Lamps' shows support=wall_mount with a fixed text, namely 'This lamp is mounted to the wall using a metal bar' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "wall_mount"
"value": "wall_mount",
"description": "support=wall_mount is displayed as \"This lamp is mounted to the wall using a metal bar\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#support",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "lamp_mount",
"description": "Layer 'Street Lamps' shows lamp_mount=straight_mast with a fixed text, namely 'This lamp sits atop of a straight mast' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting') (This is only shown if support=pole)",
"value": "straight_mast"
"value": "straight_mast",
"description": "lamp_mount=straight_mast is displayed as \"This lamp sits atop of a straight mast\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lamp_mount",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "lamp_mount",
"description": "Layer 'Street Lamps' shows lamp_mount=bent_mast with a fixed text, namely 'This lamp sits at the end of a bent mast' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting') (This is only shown if support=pole)",
"value": "bent_mast"
"value": "bent_mast",
"description": "lamp_mount=bent_mast is displayed as \"This lamp sits at the end of a bent mast\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lamp_mount",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=electric with a fixed text, namely 'This lamp is lit electrically' (in the mapcomplete.org theme 'Street Lighting')",
"value": "electric"
"value": "electric",
"description": "light:method=electric is displayed as \"This lamp is lit electrically\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=LED with a fixed text, namely 'This lamp uses LEDs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "LED"
"value": "LED",
"description": "light:method=LED is displayed as \"This lamp uses LEDs\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=incandescent with a fixed text, namely 'This lamp uses incandescent lighting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "incandescent"
"value": "incandescent",
"description": "light:method=incandescent is displayed as \"This lamp uses incandescent lighting\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=halogen with a fixed text, namely 'This lamp uses halogen lighting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "halogen"
"value": "halogen",
"description": "light:method=halogen is displayed as \"This lamp uses halogen lighting\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=discharge with a fixed text, namely 'This lamp uses discharge lamps (unknown type)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "discharge"
"value": "discharge",
"description": "light:method=discharge is displayed as \"This lamp uses discharge lamps (unknown type)\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=mercury with a fixed text, namely 'This lamp uses a mercury-vapour lamp (lightly blueish)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "mercury"
"value": "mercury",
"description": "light:method=mercury is displayed as \"This lamp uses a mercury-vapour lamp (lightly blueish)\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=metal-halide with a fixed text, namely 'This lamp uses metal-halide lamps (bright white)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "metal-halide"
"value": "metal-halide",
"description": "light:method=metal-halide is displayed as \"This lamp uses metal-halide lamps (bright white)\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=fluorescent with a fixed text, namely 'This lamp uses fluorescent lighting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "fluorescent"
"value": "fluorescent",
"description": "light:method=fluorescent is displayed as \"This lamp uses fluorescent lighting\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=sodium with a fixed text, namely 'This lamp uses sodium lamps (unknown type)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "sodium"
"value": "sodium",
"description": "light:method=sodium is displayed as \"This lamp uses sodium lamps (unknown type)\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=low_pressure_sodium with a fixed text, namely 'This lamp uses low pressure sodium lamps (monochrome orange)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "low_pressure_sodium"
"value": "low_pressure_sodium",
"description": "light:method=low_pressure_sodium is displayed as \"This lamp uses low pressure sodium lamps (monochrome orange)\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=high_pressure_sodium with a fixed text, namely 'This lamp uses high pressure sodium lamps (orange with white)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "high_pressure_sodium"
"value": "high_pressure_sodium",
"description": "light:method=high_pressure_sodium is displayed as \"This lamp uses high pressure sodium lamps (orange with white)\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:method",
"description": "Layer 'Street Lamps' shows light:method=gas with a fixed text, namely 'This lamp is lit using gas' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "gas"
"value": "gas",
"description": "light:method=gas is displayed as \"This lamp is lit using gas\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#method",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:colour",
"description": "Layer 'Street Lamps' shows and asks freeform values for key 'light:colour' (in the mapcomplete.org theme 'Street Lighting')"
"description": "Values of `light:colour` are shown with \"This lamp emits {light:colour} light\" and can be updated. The question is \"What colour light does this lamp emit?\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#colour",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:colour",
"description": "Layer 'Street Lamps' shows light:colour=white with a fixed text, namely 'This lamp emits white light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "white"
"value": "white",
"description": "light:colour=white is displayed as \"This lamp emits white light\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#colour",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:colour",
"description": "Layer 'Street Lamps' shows light:colour=green with a fixed text, namely 'This lamp emits green light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "green"
"value": "green",
"description": "light:colour=green is displayed as \"This lamp emits green light\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#colour",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:colour",
"description": "Layer 'Street Lamps' shows light:colour=orange with a fixed text, namely 'This lamp emits orange light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "orange"
"value": "orange",
"description": "light:colour=orange is displayed as \"This lamp emits orange light\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#colour",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:count",
"description": "Layer 'Street Lamps' shows and asks freeform values for key 'light:count' (in the mapcomplete.org theme 'Street Lighting') (This is only shown if support=pole)"
"description": "Values of `light:count` are shown with \"This lamp has {light:count} fixtures\" and can be updated. The question is \"How many fixtures does this light have?\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#count",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:count",
"description": "Layer 'Street Lamps' shows light:count=1 with a fixed text, namely 'This lamp has 1 fixture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting') (This is only shown if support=pole)",
"value": "1"
"value": "1",
"description": "light:count=1 is displayed as \"This lamp has 1 fixture\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#count",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:count",
"description": "Layer 'Street Lamps' shows light:count=2 with a fixed text, namely 'This lamp has 2 fixtures' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting') (This is only shown if support=pole)",
"value": "2"
"value": "2",
"description": "light:count=2 is displayed as \"This lamp has 2 fixtures\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#count",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:lit",
"description": "Layer 'Street Lamps' shows light:lit=dusk-dawn with a fixed text, namely 'This lamp is lit at night' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "dusk-dawn"
"value": "dusk-dawn",
"description": "light:lit=dusk-dawn is displayed as \"This lamp is lit at night\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lit",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:lit",
"description": "Layer 'Street Lamps' shows light:lit=24/7 with a fixed text, namely 'This lamp is lit 24/7' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "24/7"
"value": "24/7",
"description": "light:lit=24/7 is displayed as \"This lamp is lit 24/7\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lit",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:lit",
"description": "Layer 'Street Lamps' shows light:lit=motion with a fixed text, namely 'This lamp is lit based on motion' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "motion"
"value": "motion",
"description": "light:lit=motion is displayed as \"This lamp is lit based on motion\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lit",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:lit",
"description": "Layer 'Street Lamps' shows light:lit=demand with a fixed text, namely 'This lamp is lit based on demand (e.g. with a pushbutton)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "demand"
"value": "demand",
"description": "light:lit=demand is displayed as \"This lamp is lit based on demand (e.g. with a pushbutton)\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#lit",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "light:direction",
"description": "Layer 'Street Lamps' shows and asks freeform values for key 'light:direction' (in the mapcomplete.org theme 'Street Lighting') (This is only shown if light:count=1)"
"description": "Values of `light:direction` are shown with \"This lamp points towards {light:direction}\" and can be updated. The question is \"Where does this lamp point to?\" by layer Street Lamps",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/street_lamps.md#direction",
"icon_url": "./assets/layers/street_lamps/street_lamp.svg"
},
{
"key": "highway",
"description": "The MapComplete theme Street Lighting has a layer Lit streets showing features with this tag"
"description": "Features with this tag are displayed by layers Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md"
},
{
"key": "lit",
"description": "The MapComplete theme Street Lighting has a layer Lit streets showing features with this tag"
},
{
"key": "id",
"description": "Layer 'Lit streets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Street Lighting') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Lit streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Lit streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Lit streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Lit streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Lit streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Features with this tag are displayed by layer Lit streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md"
},
{
"key": "lit",
"description": "Layer 'Lit streets' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "yes"
"value": "yes",
"description": "lit=yes is displayed as \"This street is lit\" by layers Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md#lit"
},
{
"key": "lit",
"description": "Layer 'Lit streets' shows lit=no with a fixed text, namely 'This street is not lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "no"
"value": "no",
"description": "lit=no is displayed as \"This street is not lit\" by layers Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md#lit"
},
{
"key": "lit",
"description": "Layer 'Lit streets' shows lit=sunset-sunrise with a fixed text, namely 'This street is lit at night' (in the mapcomplete.org theme 'Street Lighting')",
"value": "sunset-sunrise"
"value": "sunset-sunrise",
"description": "lit=sunset-sunrise is displayed as \"This street is lit at night\" by layers Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md#lit"
},
{
"key": "lit",
"description": "Layer 'Lit streets' shows lit=24/7 with a fixed text, namely 'This street is lit 24/7' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "24/7"
},
{
"key": "highway",
"description": "The MapComplete theme Street Lighting has a layer All streets showing features with this tag"
},
{
"key": "id",
"description": "Layer 'All streets' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Street Lighting') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'All streets allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "lit",
"description": "Layer 'All streets' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "yes"
},
{
"key": "lit",
"description": "Layer 'All streets' shows lit=no with a fixed text, namely 'This street is not lit' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "no"
},
{
"key": "lit",
"description": "Layer 'All streets' shows lit=sunset-sunrise with a fixed text, namely 'This street is lit at night' (in the mapcomplete.org theme 'Street Lighting')",
"value": "sunset-sunrise"
},
{
"key": "lit",
"description": "Layer 'All streets' shows lit=24/7 with a fixed text, namely 'This street is lit 24/7' and allows to pick this as a default answer (in the mapcomplete.org theme 'Street Lighting')",
"value": "24/7"
"value": "24/7",
"description": "lit=24/7 is displayed as \"This street is lit 24/7\" by layers Lit streets, All streets",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/lit_streets.md#lit"
}
]
}

View file

@ -7,317 +7,381 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/surveillance/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "man_made",
"description": "The MapComplete theme Surveillance under Surveillance has a layer Surveillance camera's showing features with this tag",
"value": "surveillance"
"value": "surveillance",
"description": "Features with this tag are displayed by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:type",
"description": "The MapComplete theme Surveillance under Surveillance has a layer Surveillance camera's showing features with this tag",
"value": "camera"
"value": "camera",
"description": "Features with this tag are displayed by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:type",
"description": "The MapComplete theme Surveillance under Surveillance has a layer Surveillance camera's showing features with this tag",
"value": "ALPR"
"value": "ALPR",
"description": "Features with this tag are displayed by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:type",
"description": "The MapComplete theme Surveillance under Surveillance has a layer Surveillance camera's showing features with this tag",
"value": "ANPR"
"value": "ANPR",
"description": "Features with this tag are displayed by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "id",
"description": "Layer 'Surveillance camera's' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Surveillance camera's, Speed Camera, Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Surveillance camera's, Speed Camera, Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#images",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "panoramax",
"description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Surveillance camera's, Speed Camera, Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#images",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "mapillary",
"description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Surveillance camera's, Speed Camera, Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#images",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "wikidata",
"description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Surveillance camera's, Speed Camera, Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#images",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Surveillance camera's, Speed Camera, Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#images",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:type",
"description": "Layer 'Surveillance camera's' shows surveillance:type=camera with a fixed text, namely 'This is a camera without number plate recognition.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "camera"
"value": "camera",
"description": "surveillance:type=camera is displayed as \"This is a camera without number plate recognition.\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#has_alpr",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:type",
"description": "Layer 'Surveillance camera's' shows surveillance:type=ALPR with a fixed text, namely 'This is an ALPR (Automatic License Plate Reader)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "ALPR"
"value": "ALPR",
"description": "surveillance:type=ALPR is displayed as \"This is an ALPR (Automatic License Plate Reader)\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#has_alpr",
"icon_url": "./assets/layers/surveillance_camera/ALPR.svg"
},
{
"key": "camera:type",
"description": "Layer 'Surveillance camera's' shows camera:type=fixed with a fixed text, namely 'A fixed (non-moving) camera' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "fixed"
"value": "fixed",
"description": "camera:type=fixed is displayed as \"A fixed (non-moving) camera\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Camera_type__fixed__panning__dome",
"icon_url": "./assets/themes/surveillance/cam_right.svg"
},
{
"key": "camera:type",
"description": "Layer 'Surveillance camera's' shows camera:type=dome with a fixed text, namely 'A dome camera (which can turn)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "dome"
"value": "dome",
"description": "camera:type=dome is displayed as \"A dome camera (which can turn)\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Camera_type__fixed__panning__dome",
"icon_url": "./assets/themes/surveillance/dome.svg"
},
{
"key": "camera:type",
"description": "Layer 'Surveillance camera's' shows camera:type=panning with a fixed text, namely 'A panning camera' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "panning"
"value": "panning",
"description": "camera:type=panning is displayed as \"A panning camera\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Camera_type__fixed__panning__dome",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "camera:type",
"description": "Layer 'Surveillance camera's' shows camera:type=doorbell with a fixed text, namely 'A doorbell which might be turned on remotely at any time or by motion detection. These are typically <i>Smart</i>, internet-connected doorbells. Typical brands are Ring, Google Nest, Eufy, ...' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "doorbell"
"value": "doorbell",
"description": "camera:type=doorbell is displayed as \"A doorbell which might be turned on remotely at any time or by motion detection. These are typically <i>Smart</i>, internet-connected doorbells. Typical brands are Ring, Google Nest, Eufy, ...\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Camera_type__fixed__panning__dome",
"icon_url": "./assets/layers/surveillance_camera/doorbell.svg"
},
{
"key": "camera:direction",
"description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'camera:direction' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if camera:direction~.+ | direction~.+ | camera:type!=dome | (camera:type=dome & camera:mount=wall))"
"description": "Values of `camera:direction` are shown with \"Films to a compass heading of {camera:direction}\" and can be updated. The question is \"In which geographical direction does this camera film?\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_direction",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "camera:direction",
"description": "Layer 'Surveillance camera's' shows camera:direction= & direction~.+ with a fixed text, namely 'Films to a compass heading of {direction}' (in the mapcomplete.org theme 'Surveillance under Surveillance') Picking this answer will delete the key camera:direction. (This is only shown if camera:direction~.+ | direction~.+ | camera:type!=dome | (camera:type=dome & camera:mount=wall))",
"value": ""
"description": "camera:direction= & direction~.+ is displayed as \"Films to a compass heading of {direction}\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_direction",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "direction",
"description": "Layer 'Surveillance camera's' shows camera:direction= & direction~.+ with a fixed text, namely 'Films to a compass heading of {direction}' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if camera:direction~.+ | direction~.+ | camera:type!=dome | (camera:type=dome & camera:mount=wall))"
"description": "camera:direction= & direction~.+ is displayed as \"Films to a compass heading of {direction}\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_direction",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "operator",
"description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "Values of `operator` are shown with \"Operated by {operator}\" and can be updated. The question is \"Who operates this CCTV?\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Operator",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance",
"description": "Layer 'Surveillance camera's' shows surveillance=public with a fixed text, namely 'A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "public"
"value": "public",
"description": "surveillance=public is displayed as \"A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel, …\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_type__public__outdoor__indoor",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance",
"description": "Layer 'Surveillance camera's' shows surveillance=outdoor with a fixed text, namely 'An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, …)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "outdoor"
"value": "outdoor",
"description": "surveillance=outdoor is displayed as \"An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, …)\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_type__public__outdoor__indoor",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance",
"description": "Layer 'Surveillance camera's' shows surveillance=indoor with a fixed text, namely 'A private indoor area is surveilled, e.g. a shop, a private underground parking, …' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "indoor"
"value": "indoor",
"description": "surveillance=indoor is displayed as \"A private indoor area is surveilled, e.g. a shop, a private underground parking, …\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_type__public__outdoor__indoor",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "indoor",
"description": "Layer 'Surveillance camera's' shows indoor=yes with a fixed text, namely 'This camera is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if surveillance!=outdoor & surveillance!=indoor)",
"value": "yes"
"value": "yes",
"description": "indoor=yes is displayed as \"This camera is located indoors\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_is_indoor",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "indoor",
"description": "Layer 'Surveillance camera's' shows indoor=no with a fixed text, namely 'This camera is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if surveillance!=outdoor & surveillance!=indoor)",
"value": "no"
"value": "no",
"description": "indoor=no is displayed as \"This camera is located outdoors\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_is_indoor",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "indoor",
"description": "Layer 'Surveillance camera's' shows indoor= with a fixed text, namely 'This camera is probably located outdoors' (in the mapcomplete.org theme 'Surveillance under Surveillance') Picking this answer will delete the key indoor. (This is only shown if surveillance!=outdoor & surveillance!=indoor)",
"value": ""
"description": "indoor= is displayed as \"This camera is probably located outdoors\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_is_indoor",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "level",
"description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if camera:type!=doorbell & (indoor=yes | surveillance=indoor) & (surveillance:type=alpr | surveillance:type=camera))"
"description": "Values of `level` are shown with \"Located on level {level}\" and can be updated. The question is \"On which level is this camera located?\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Level",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:zone",
"description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'surveillance:zone' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "Values of `surveillance:zone` are shown with \"Surveills a {surveillance:zone}\" and can be updated. The question is \"What exactly is surveilled here?\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:zone",
"description": "Layer 'Surveillance camera's' shows surveillance:zone=parking with a fixed text, namely 'Surveills a parking' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "parking"
"value": "parking",
"description": "surveillance:zone=parking is displayed as \"Surveills a parking\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:zone",
"description": "Layer 'Surveillance camera's' shows surveillance:zone=traffic with a fixed text, namely 'Surveills the traffic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "traffic"
"value": "traffic",
"description": "surveillance:zone=traffic is displayed as \"Surveills the traffic\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:zone",
"description": "Layer 'Surveillance camera's' shows surveillance:zone=entrance with a fixed text, namely 'Surveills an entrance' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "entrance"
"value": "entrance",
"description": "surveillance:zone=entrance is displayed as \"Surveills an entrance\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:zone",
"description": "Layer 'Surveillance camera's' shows surveillance:zone=corridor with a fixed text, namely 'Surveills a corridor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "corridor"
"value": "corridor",
"description": "surveillance:zone=corridor is displayed as \"Surveills a corridor\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:zone",
"description": "Layer 'Surveillance camera's' shows surveillance:zone=public_transport_platform with a fixed text, namely 'Surveills a public tranport platform' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "public_transport_platform"
"value": "public_transport_platform",
"description": "surveillance:zone=public_transport_platform is displayed as \"Surveills a public tranport platform\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "surveillance:zone",
"description": "Layer 'Surveillance camera's' shows surveillance:zone=shop with a fixed text, namely 'Surveills a shop' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "shop"
"value": "shop",
"description": "surveillance:zone=shop is displayed as \"Surveills a shop\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#Surveillance_zone",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "camera:mount",
"description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'camera:mount' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "Values of `camera:mount` are shown with \"Mounting method: {camera:mount}\" and can be updated. The question is \"How is this camera placed?\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "camera:mount",
"description": "Layer 'Surveillance camera's' shows camera:mount=wall with a fixed text, namely 'This camera is placed against a wall' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "wall"
"value": "wall",
"description": "camera:mount=wall is displayed as \"This camera is placed against a wall\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "camera:mount",
"description": "Layer 'Surveillance camera's' shows camera:mount=pole with a fixed text, namely 'This camera is placed on a pole' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "pole"
"value": "pole",
"description": "camera:mount=pole is displayed as \"This camera is placed on a pole\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "camera:mount",
"description": "Layer 'Surveillance camera's' shows camera:mount=ceiling with a fixed text, namely 'This camera is placed on the ceiling' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "ceiling"
"value": "ceiling",
"description": "camera:mount=ceiling is displayed as \"This camera is placed on the ceiling\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "camera:mount",
"description": "Layer 'Surveillance camera's' shows camera:mount=street_lamp with a fixed text, namely 'This camera is placed on a street light' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "street_lamp"
"value": "street_lamp",
"description": "camera:mount=street_lamp is displayed as \"This camera is placed on a street light\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "camera:mount",
"description": "Layer 'Surveillance camera's' shows camera:mount=tree with a fixed text, namely 'This camera is placed on a tree' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "tree"
"value": "tree",
"description": "camera:mount=tree is displayed as \"This camera is placed on a tree\" by layer Surveillance camera's",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/surveillance_camera.md#camera_mount",
"icon_url": "./assets/themes/surveillance/logo.svg"
},
{
"key": "highway",
"description": "The MapComplete theme Surveillance under Surveillance has a layer Speed Camera showing features with this tag",
"value": "speed_camera"
},
{
"key": "id",
"description": "Layer 'Speed Camera' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Speed Camera allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "speed_camera",
"description": "Features with this tag are displayed by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "maxspeed",
"description": "Layer 'Speed Camera' shows and asks freeform values for key 'maxspeed' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "Values of `maxspeed` are shown with \"The maximum speed allowed is {canonical(maxspeed)}\" and can be updated. The question is \"What is the maximum speed allowed at this speed camera?\" by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#maxspeed",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "direction",
"description": "Layer 'Speed Camera' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "Values of `direction` are shown with \"Films to a compass heading of {direction}\" and can be updated. The question is \"In which geographical direction does this camera film?\" by layer Speed Camera",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/speed_camera.md#camera_direction",
"icon_url": "./assets/layers/speed_camera/speed_camera.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Surveillance under Surveillance has a layer Police stations showing features with this tag",
"value": "police"
"value": "police",
"description": "Features with this tag are displayed by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md",
"icon_url": "./assets/layers/police/police.svg"
},
{
"key": "police",
"description": "The MapComplete theme Surveillance under Surveillance has a layer Police stations showing features with this tag"
},
{
"key": "id",
"description": "Layer 'Police stations' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Police stations allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Features with this tag are displayed by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md",
"icon_url": "./assets/layers/police/police.svg"
},
{
"key": "name",
"description": "Layer 'Police stations' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "Values of `name` are shown with \"<b>{name}</b>\" and can be updated. The question is \"What is the name of this police facility?\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#police_name",
"icon_url": "./assets/layers/police/police.svg"
},
{
"key": "phone",
"description": "Layer 'Police stations' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Police stations' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "email",
"description": "Layer 'Police stations' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Police stations' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Police stations' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "website",
"description": "Layer 'Police stations' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Police stations' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Police stations' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Surveillance under Surveillance')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#opening_hours",
"icon_url": "./assets/layers/police/police.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Police stations' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Surveillance under Surveillance')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#opening_hours",
"icon_url": "./assets/layers/police/police.svg"
},
{
"key": "detention",
"description": "Layer 'Police stations' shows detention=yes with a fixed text, namely 'This police office has some cells to detain people' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if amenity=police)",
"value": "yes"
"value": "yes",
"description": "detention=yes is displayed as \"This police office has some cells to detain people\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#4_z2nrdhy6tyyh4fd",
"icon_url": "./assets/layers/police/jail.svg"
},
{
"key": "detention",
"description": "Layer 'Police stations' shows detention=no with a fixed text, namely 'This police office does not have cells to detain people' and allows to pick this as a default answer (in the mapcomplete.org theme 'Surveillance under Surveillance') (This is only shown if amenity=police)",
"value": "no"
"value": "no",
"description": "detention=no is displayed as \"This police office does not have cells to detain people\" by layer Police stations",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/police.md#4_z2nrdhy6tyyh4fd",
"icon_url": "./assets/layers/police/police.svg"
}
]
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -7,180 +7,251 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/trees/logo.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "natural",
"description": "The MapComplete theme Trees has a layer Tree showing features with this tag",
"value": "tree"
"value": "tree",
"description": "Features with this tag are displayed by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "id",
"description": "Layer 'Tree' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Trees') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#images",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "panoramax",
"description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#images",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "mapillary",
"description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#images",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "wikidata",
"description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#images",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Tree allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#images",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "species:wikidata",
"description": "Layer 'Tree' shows and asks freeform values for key 'species:wikidata' (in the mapcomplete.org theme 'Trees')"
"description": "Values of `species:wikidata` are shown with \"{wikipedia(species:wikidata):max-height: 25rem}\" and can be updated. The question is \"What species is this tree?\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_species_wikidata",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "circumference",
"description": "Layer 'Tree' shows and asks freeform values for key 'circumference' (in the mapcomplete.org theme 'Trees')"
"description": "Values of `circumference` are shown with \"The tree trunk has a circumference of {circumference} meter\" and can be updated. The question is \"What is the circumference of the tree trunk?\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#circumference",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "height",
"description": "Layer 'Tree' shows and asks freeform values for key 'height' (in the mapcomplete.org theme 'Trees')"
"description": "Values of `height` are shown with \"This tree is {height} meter high\" and can be updated. The question is \"What is the height of this tree?\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#height",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "denotation",
"description": "Layer 'Tree' shows denotation=landmark with a fixed text, namely 'The tree is remarkable due to its size or prominent location. It is useful for navigation.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')",
"value": "landmark"
"value": "landmark",
"description": "denotation=landmark is displayed as \"The tree is remarkable due to its size or prominent location. It is useful for navigation.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "denotation",
"description": "Layer 'Tree' shows denotation=natural_monument with a fixed text, namely 'The tree is a natural monument, e.g. because it is especially old, or of a valuable species.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')",
"value": "natural_monument"
"value": "natural_monument",
"description": "denotation=natural_monument is displayed as \"The tree is a natural monument, e.g. because it is especially old, or of a valuable species.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "denotation",
"description": "Layer 'Tree' shows denotation=agricultural with a fixed text, namely 'The tree is used for agricultural purposes, e.g. in an orchard.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')",
"value": "agricultural"
"value": "agricultural",
"description": "denotation=agricultural is displayed as \"The tree is used for agricultural purposes, e.g. in an orchard.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "denotation",
"description": "Layer 'Tree' shows denotation=park with a fixed text, namely 'The tree is in a park or similar (cemetery, school grounds, …).' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')",
"value": "park"
"value": "park",
"description": "denotation=park is displayed as \"The tree is in a park or similar (cemetery, school grounds, …).\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "denotation",
"description": "Layer 'Tree' shows denotation=garden with a fixed text, namely 'The tree is in a residential garden.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')",
"value": "garden"
"value": "garden",
"description": "denotation=garden is displayed as \"The tree is in a residential garden.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "denotation",
"description": "Layer 'Tree' shows denotation=avenue with a fixed text, namely 'This is a tree along an avenue.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')",
"value": "avenue"
"value": "avenue",
"description": "denotation=avenue is displayed as \"This is a tree along an avenue.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "denotation",
"description": "Layer 'Tree' shows denotation=urban with a fixed text, namely 'The tree is in an urban area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')",
"value": "urban"
"value": "urban",
"description": "denotation=urban is displayed as \"The tree is in an urban area.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "denotation",
"description": "Layer 'Tree' shows denotation=none with a fixed text, namely 'The tree is outside of an urban area.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees')",
"value": "none"
"value": "none",
"description": "denotation=none is displayed as \"The tree is outside of an urban area.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_denotation",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "leaf_type",
"description": "Layer 'Tree' shows leaf_type=broadleaved with a fixed text, namely 'Broadleaved' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if species:wikidata=)",
"value": "broadleaved"
"value": "broadleaved",
"description": "leaf_type=broadleaved is displayed as \"Broadleaved\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_leaf_type",
"icon_url": "./assets/layers/tree_node/broadleaved.svg"
},
{
"key": "leaf_type",
"description": "Layer 'Tree' shows leaf_type=needleleaved with a fixed text, namely 'Needleleaved' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if species:wikidata=)",
"value": "needleleaved"
"value": "needleleaved",
"description": "leaf_type=needleleaved is displayed as \"Needleleaved\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_leaf_type",
"icon_url": "./assets/layers/tree_node/needleleaved.svg"
},
{
"key": "leaf_type",
"description": "Layer 'Tree' shows leaf_type=leafless with a fixed text, namely 'Permanently leafless' (in the mapcomplete.org theme 'Trees') (This is only shown if species:wikidata=)",
"value": "leafless"
"value": "leafless",
"description": "leaf_type=leafless is displayed as \"Permanently leafless\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_leaf_type",
"icon_url": "./assets/layers/tree_node/leafless.svg"
},
{
"key": "leaf_cycle",
"description": "Layer 'Tree' shows leaf_cycle=deciduous with a fixed text, namely 'Deciduous: the tree loses its leaves for some time of the year.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if leaf_type!~^(^leafless$)$ & species:wikidata=)",
"value": "deciduous"
"value": "deciduous",
"description": "leaf_cycle=deciduous is displayed as \"Deciduous: the tree loses its leaves for some time of the year.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_decidouous",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "leaf_cycle",
"description": "Layer 'Tree' shows leaf_cycle=evergreen with a fixed text, namely 'Evergreen.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if leaf_type!~^(^leafless$)$ & species:wikidata=)",
"value": "evergreen"
"value": "evergreen",
"description": "leaf_cycle=evergreen is displayed as \"Evergreen.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_decidouous",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "name",
"description": "Layer 'Tree' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument | name~.+)"
"description": "Values of `name` are shown with \"Name: {name}\" and can be updated. The question is \"Does the tree have a name?\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_name",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "name",
"description": "Layer 'Tree' shows name= & noname=yes with a fixed text, namely 'The tree does not have a name.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') Picking this answer will delete the key name. (This is only shown if denotation=landmark | denotation=natural_monument | name~.+)",
"value": ""
"description": "name= & noname=yes is displayed as \"The tree does not have a name.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_name",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "noname",
"description": "Layer 'Tree' shows name= & noname=yes with a fixed text, namely 'The tree does not have a name.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument | name~.+)",
"value": "yes"
"value": "yes",
"description": "name= & noname=yes is displayed as \"The tree does not have a name.\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_name",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "heritage",
"description": "Layer 'Tree' shows heritage=4 & heritage:operator=OnroerendErfgoed with a fixed text, namely 'Registered as heritage by <i>Onroerend Erfgoed</i> Flanders' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)",
"value": "4"
"value": "4",
"description": "heritage=4 & heritage:operator=OnroerendErfgoed is displayed as \"Registered as heritage by <i>Onroerend Erfgoed</i> Flanders\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage",
"icon_url": "./assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg"
},
{
"key": "heritage:operator",
"description": "Layer 'Tree' shows heritage=4 & heritage:operator=OnroerendErfgoed with a fixed text, namely 'Registered as heritage by <i>Onroerend Erfgoed</i> Flanders' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)",
"value": "OnroerendErfgoed"
"value": "OnroerendErfgoed",
"description": "heritage=4 & heritage:operator=OnroerendErfgoed is displayed as \"Registered as heritage by <i>Onroerend Erfgoed</i> Flanders\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage",
"icon_url": "./assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg"
},
{
"key": "heritage",
"description": "Layer 'Tree' shows heritage=4 & heritage:operator=aatl with a fixed text, namely 'Registered as heritage by <i>Direction du Patrimoine culturel</i> Brussels' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)",
"value": "4"
"value": "4",
"description": "heritage=4 & heritage:operator=aatl is displayed as \"Registered as heritage by <i>Direction du Patrimoine culturel</i> Brussels\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "heritage:operator",
"description": "Layer 'Tree' shows heritage=4 & heritage:operator=aatl with a fixed text, namely 'Registered as heritage by <i>Direction du Patrimoine culturel</i> Brussels' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)",
"value": "aatl"
"value": "aatl",
"description": "heritage=4 & heritage:operator=aatl is displayed as \"Registered as heritage by <i>Direction du Patrimoine culturel</i> Brussels\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "heritage",
"description": "Layer 'Tree' shows heritage=yes & heritage:operator= with a fixed text, namely 'Registered as heritage by a different organisation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)",
"value": "yes"
"value": "yes",
"description": "heritage=yes & heritage:operator= is displayed as \"Registered as heritage by a different organisation\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "heritage:operator",
"description": "Layer 'Tree' shows heritage=yes & heritage:operator= with a fixed text, namely 'Registered as heritage by a different organisation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') Picking this answer will delete the key heritage:operator. (This is only shown if denotation=landmark | denotation=natural_monument)",
"value": ""
"description": "heritage=yes & heritage:operator= is displayed as \"Registered as heritage by a different organisation\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "heritage",
"description": "Layer 'Tree' shows heritage=no & heritage:operator= with a fixed text, namely 'Not registered as heritage' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)",
"value": "no"
"value": "no",
"description": "heritage=no & heritage:operator= is displayed as \"Not registered as heritage\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "heritage:operator",
"description": "Layer 'Tree' shows heritage=no & heritage:operator= with a fixed text, namely 'Not registered as heritage' and allows to pick this as a default answer (in the mapcomplete.org theme 'Trees') Picking this answer will delete the key heritage:operator. (This is only shown if denotation=landmark | denotation=natural_monument)",
"value": ""
"description": "heritage=no & heritage:operator= is displayed as \"Not registered as heritage\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "heritage",
"description": "Layer 'Tree' shows heritage~.+ with a fixed text, namely 'Registered as heritage by a different organisation' (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument)"
"description": "heritage~.+ is displayed as \"Registered as heritage by a different organisation\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_heritage",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "ref:OnroerendErfgoed",
"description": "Layer 'Tree' shows and asks freeform values for key 'ref:OnroerendErfgoed' (in the mapcomplete.org theme 'Trees') (This is only shown if heritage=4 & heritage:operator=OnroerendErfgoed)"
"description": "Values of `ref:OnroerendErfgoed` are shown with \"<img src=\"./assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg\" style=\"width:0.85em;height:1em;vertical-align:middle\" alt=\"\"/> Onroerend Erfgoed ID: <a href=\"https://id.erfgoed.net/erfgoedobjecten/{ref:OnroerendErfgoed}\">{ref:OnroerendErfgoed}</a>\" and can be updated. The question is \"What is the ID issued by Onroerend Erfgoed Flanders?\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_ref_OnroerendErfgoed",
"icon_url": "./assets/layers/tree_node/unknown.svg"
},
{
"key": "wikidata",
"description": "Layer 'Tree' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Trees') (This is only shown if denotation=landmark | denotation=natural_monument | wikidata~.+)"
"description": "Values of `wikidata` are shown with \"<img src=\"./assets/svg/wikidata.svg\" style=\"width:1em;height:0.56em;vertical-align:middle\" alt=\"\"/> Wikidata: <a href=\"http://www.wikidata.org/entity/{wikidata}\">{wikidata}</a>\" and can be updated. The question is \"What is the Wikidata ID for this tree?\" by layer Tree",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/tree_node.md#tree_node_wikidata",
"icon_url": "./assets/layers/tree_node/unknown.svg"
}
]
}

View file

@ -7,479 +7,672 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/vending_machine/vending_machine.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Vending Machines has a layer Vending Machines showing features with this tag",
"value": "vending_machine"
"value": "vending_machine",
"description": "Features with this tag are displayed by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "id",
"description": "Layer 'Vending Machines' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#images",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "panoramax",
"description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#images",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "mapillary",
"description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#images",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "wikidata",
"description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#images",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Vending Machines allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#images",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "level",
"description": "Layer 'Vending Machines' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if repeat_on=)"
"description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "location",
"description": "Layer 'Vending Machines' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if repeat_on=)",
"value": "underground"
"value": "underground",
"description": "location=underground is displayed as \"Located underground\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "level",
"description": "Layer 'Vending Machines' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if repeat_on=)",
"value": "0"
"value": "0",
"description": "level=0 is displayed as \"Located on the ground floor\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "level",
"description": "Layer 'Vending Machines' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Vending Machines') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
"value": ""
"description": "level= is displayed as \"Located on the ground floor\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "level",
"description": "Layer 'Vending Machines' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if repeat_on=)",
"value": "1"
"value": "1",
"description": "level=1 is displayed as \"Located on the first floor\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "level",
"description": "Layer 'Vending Machines' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if repeat_on=)",
"value": "-1"
"value": "-1",
"description": "level=-1 is displayed as \"Located on the first basement level\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#single_level",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows and asks freeform values for key 'vending' (in the mapcomplete.org theme 'Vending Machines')"
"description": "Values of `vending` are shown with \"This vending machine sells {vending}\" and can be updated. The question is \"What does this vending machine sell?\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=drinks with a fixed text, namely 'Drinks are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "drinks"
"value": "drinks",
"description": "vending=drinks is displayed as \"Drinks are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/id_presets/temaki-bottles.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=sweets with a fixed text, namely 'Sweets are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "sweets"
"value": "sweets",
"description": "vending=sweets is displayed as \"Sweets are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/id_presets/maki-confectionery.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=food with a fixed text, namely 'Food is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "food"
"value": "food",
"description": "vending=food is displayed as \"Food is sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/utensils.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=cigarettes with a fixed text, namely 'Cigarettes are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "cigarettes"
"value": "cigarettes",
"description": "vending=cigarettes is displayed as \"Cigarettes are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/smoking.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=condoms with a fixed text, namely 'Condoms are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "condoms"
"value": "condoms",
"description": "vending=condoms is displayed as \"Condoms are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/condom.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=coffee with a fixed text, namely 'Coffee is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "coffee"
"value": "coffee",
"description": "vending=coffee is displayed as \"Coffee is sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/mug-saucer.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=water with a fixed text, namely 'Drinking water is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "water"
"value": "water",
"description": "vending=water is displayed as \"Drinking water is sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/id_presets/temaki-water_bottle.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=newspapers with a fixed text, namely 'Newspapers are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "newspapers"
"value": "newspapers",
"description": "vending=newspapers is displayed as \"Newspapers are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/id_presets/fas-newspaper.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=bicycle_tube with a fixed text, namely 'Bicycle inner tubes are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "bicycle_tube"
"value": "bicycle_tube",
"description": "vending=bicycle_tube is displayed as \"Bicycle inner tubes are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=milk with a fixed text, namely 'Milk is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "milk"
"value": "milk",
"description": "vending=milk is displayed as \"Milk is sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/cow.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=bread with a fixed text, namely 'Bread is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "bread"
"value": "bread",
"description": "vending=bread is displayed as \"Bread is sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/id_presets/maki-bakery.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=eggs with a fixed text, namely 'Eggs are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "eggs"
"value": "eggs",
"description": "vending=eggs is displayed as \"Eggs are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/egg.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=ice_cream with a fixed text, namely 'Ice cream is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "ice_cream"
"value": "ice_cream",
"description": "vending=ice_cream is displayed as \"Ice cream is sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/ice_cream/ice_cream.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=cheese with a fixed text, namely 'Cheese is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "cheese"
"value": "cheese",
"description": "vending=cheese is displayed as \"Cheese is sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/id_presets/fas-cheese.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=honey with a fixed text, namely 'Honey is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "honey"
"value": "honey",
"description": "vending=honey is displayed as \"Honey is sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/honey.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=potatoes with a fixed text, namely 'Potatoes are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "potatoes"
"value": "potatoes",
"description": "vending=potatoes is displayed as \"Potatoes are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/potato.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=meat with a fixed text, namely 'Meat is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "meat"
"value": "meat",
"description": "vending=meat is displayed as \"Meat is sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/id_presets/temaki-meat.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=fruit with a fixed text, namely 'Fruit is sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "fruit"
"value": "fruit",
"description": "vending=fruit is displayed as \"Fruit is sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/fruits.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=strawberries with a fixed text, namely 'Strawberries are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "strawberries"
"value": "strawberries",
"description": "vending=strawberries is displayed as \"Strawberries are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/strawberry.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=flowers with a fixed text, namely 'Flowers are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "flowers"
"value": "flowers",
"description": "vending=flowers is displayed as \"Flowers are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/id_presets/maki-florist.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=parking_tickets with a fixed text, namely 'Parking tickets are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "parking_tickets"
"value": "parking_tickets",
"description": "vending=parking_tickets is displayed as \"Parking tickets are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/parking_ticket_machine/parking_tickets.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=elongated_coin with a fixed text, namely 'Pressed pennies are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "elongated_coin"
"value": "elongated_coin",
"description": "vending=elongated_coin is displayed as \"Pressed pennies are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/themes/elongated_coin/penny.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=public_transport_tickets with a fixed text, namely 'Public transport tickets are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "public_transport_tickets"
"value": "public_transport_tickets",
"description": "vending=public_transport_tickets is displayed as \"Public transport tickets are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/themes/stations/public_transport_tickets.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=bicycle_light with a fixed text, namely 'Bicycle lights are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "bicycle_light"
"value": "bicycle_light",
"description": "vending=bicycle_light is displayed as \"Bicycle lights are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=gloves with a fixed text, namely 'Gloves are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "gloves"
"value": "gloves",
"description": "vending=gloves is displayed as \"Gloves are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=bicycle_repair_kit with a fixed text, namely 'Bicycle repair kits are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "bicycle_repair_kit"
"value": "bicycle_repair_kit",
"description": "vending=bicycle_repair_kit is displayed as \"Bicycle repair kits are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=bicycle_pump with a fixed text, namely 'Bicycle pumps are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "bicycle_pump"
"value": "bicycle_pump",
"description": "vending=bicycle_pump is displayed as \"Bicycle pumps are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "vending",
"description": "Layer 'Vending Machines' shows vending=bicycle_lock with a fixed text, namely 'Bicycle locks are sold' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "bicycle_lock"
"value": "bicycle_lock",
"description": "vending=bicycle_lock is displayed as \"Bicycle locks are sold\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#vending",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "brand",
"description": "Layer 'Vending Machines' shows and asks freeform values for key 'brand' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*bicycle_tube.*)$)"
"description": "Values of `brand` are shown with \"{brand} tubes are sold here\" and can be updated. The question is \"Which brand of tubes are sold here?\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#bicycle_tube_vending_machine_brand",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "brand",
"description": "Layer 'Vending Machines' shows brand=Continental with a fixed text, namely 'Continental tubes are sold here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*bicycle_tube.*)$)",
"value": "Continental"
"value": "Continental",
"description": "brand=Continental is displayed as \"Continental tubes are sold here\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#bicycle_tube_vending_machine_brand",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "brand",
"description": "Layer 'Vending Machines' shows brand=Schwalbe with a fixed text, namely 'Schwalbe tubes are sold here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*bicycle_tube.*)$)",
"value": "Schwalbe"
"value": "Schwalbe",
"description": "brand=Schwalbe is displayed as \"Schwalbe tubes are sold here\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#bicycle_tube_vending_machine_brand",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Vending Machines' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Vending Machines')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of {title()}?\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#opening_hours_24_7",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Vending Machines' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "24/7"
"value": "24/7",
"description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#opening_hours_24_7",
"icon_url": "./assets/layers/questions/open24_7.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Vending Machines' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Vending Machines')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#opening_hours_24_7",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "payment:cash",
"description": "Layer 'Vending Machines' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' (in the mapcomplete.org theme 'Vending Machines')",
"value": "yes"
"value": "yes",
"description": "payment:cash=yes is displayed as \"Cash is accepted here\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split",
"icon_url": "./assets/layers/questions/cash.svg"
},
{
"key": "payment:cards",
"description": "Layer 'Vending Machines' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' (in the mapcomplete.org theme 'Vending Machines')",
"value": "yes"
"value": "yes",
"description": "payment:cards=yes is displayed as \"Payment cards are accepted here\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split",
"icon_url": "./assets/layers/questions/payment_card.svg"
},
{
"key": "payment:qr_code",
"description": "Layer 'Vending Machines' shows payment:qr_code=yes with a fixed text, namely 'Payment by QR-code is possible here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "yes"
"value": "yes",
"description": "payment:qr_code=yes is displayed as \"Payment by QR-code is possible here\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split",
"icon_url": "./assets/layers/questions/qrcode.svg"
},
{
"key": "payment:coins",
"description": "Layer 'Vending Machines' shows payment:coins=yes with a fixed text, namely 'Coins are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "yes"
"value": "yes",
"description": "payment:coins=yes is displayed as \"Coins are accepted here\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split",
"icon_url": "./assets/layers/questions/coins.svg"
},
{
"key": "payment:notes",
"description": "Layer 'Vending Machines' shows payment:notes=yes with a fixed text, namely 'Bank notes are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "yes"
"value": "yes",
"description": "payment:notes=yes is displayed as \"Bank notes are accepted here\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split",
"icon_url": "./assets/layers/questions/notes.svg"
},
{
"key": "payment:debit_cards",
"description": "Layer 'Vending Machines' shows payment:debit_cards=yes with a fixed text, namely 'Debit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "yes"
"value": "yes",
"description": "payment:debit_cards=yes is displayed as \"Debit cards are accepted here\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split",
"icon_url": "./assets/layers/questions/payment_card.svg"
},
{
"key": "payment:credit_cards",
"description": "Layer 'Vending Machines' shows payment:credit_cards=yes with a fixed text, namely 'Credit cards are accepted here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "yes"
"value": "yes",
"description": "payment:credit_cards=yes is displayed as \"Credit cards are accepted here\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#payment_options_split",
"icon_url": "./assets/layers/questions/payment_card.svg"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=0.01 EUR with a fixed text, namely '1 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "0.01 EUR"
"value": "0.01 EUR",
"description": "payment:coins:denominations=0.01 EUR is displayed as \"1 cent coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/eur/1cent.svg"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=0.02 EUR with a fixed text, namely '2 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "0.02 EUR"
"value": "0.02 EUR",
"description": "payment:coins:denominations=0.02 EUR is displayed as \"2 cent coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/eur/2cent.svg"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=0.05 EUR with a fixed text, namely '5 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "0.05 EUR"
"value": "0.05 EUR",
"description": "payment:coins:denominations=0.05 EUR is displayed as \"5 cent coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/eur/5cent.svg"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=0.10 EUR with a fixed text, namely '10 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "0.10 EUR"
"value": "0.10 EUR",
"description": "payment:coins:denominations=0.10 EUR is displayed as \"10 cent coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/eur/10cent.svg"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=0.20 EUR with a fixed text, namely '20 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "0.20 EUR"
"value": "0.20 EUR",
"description": "payment:coins:denominations=0.20 EUR is displayed as \"20 cent coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/eur/20cent.svg"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=0.50 EUR with a fixed text, namely '50 cent coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "0.50 EUR"
"value": "0.50 EUR",
"description": "payment:coins:denominations=0.50 EUR is displayed as \"50 cent coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/eur/50cent.svg"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=1 EUR with a fixed text, namely '1 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "1 EUR"
"value": "1 EUR",
"description": "payment:coins:denominations=1 EUR is displayed as \"1 euro coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/eur/1euro.svg"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=2 EUR with a fixed text, namely '2 euro coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "2 EUR"
"value": "2 EUR",
"description": "payment:coins:denominations=2 EUR is displayed as \"2 euro coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/eur/2euro.svg"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=0.05 CHF with a fixed text, namely '5 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "0.05 CHF"
"value": "0.05 CHF",
"description": "payment:coins:denominations=0.05 CHF is displayed as \"5 centimes coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/chf/5rp-2019-800px.png"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=0.10 CHF with a fixed text, namely '10 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "0.10 CHF"
"value": "0.10 CHF",
"description": "payment:coins:denominations=0.10 CHF is displayed as \"10 centimes coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/chf/10rp-2019-800px.png"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=0.20 CHF with a fixed text, namely '20 centimes coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "0.20 CHF"
"value": "0.20 CHF",
"description": "payment:coins:denominations=0.20 CHF is displayed as \"20 centimes coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/chf/20rp-2019-800px.png"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=0.50 CHF with a fixed text, namely '½ franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "0.50 CHF"
"value": "0.50 CHF",
"description": "payment:coins:denominations=0.50 CHF is displayed as \"½ franc coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/chf/50rp-2019-800px.png"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=1 CHF with a fixed text, namely '1 franc coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "1 CHF"
"value": "1 CHF",
"description": "payment:coins:denominations=1 CHF is displayed as \"1 franc coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/chf/1fr-2019-800px.png"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=2 CHF with a fixed text, namely '2 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "2 CHF"
"value": "2 CHF",
"description": "payment:coins:denominations=2 CHF is displayed as \"2 francs coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/chf/2fr-2019-800px.png"
},
{
"key": "payment:coins:denominations",
"description": "Layer 'Vending Machines' shows payment:coins:denominations=5 CHF with a fixed text, namely '5 francs coins are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:coins=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "5 CHF"
"value": "5 CHF",
"description": "payment:coins:denominations=5 CHF is displayed as \"5 francs coins are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_coins",
"icon_url": "./assets/layers/questions/denominations/chf/5fr-2019-800px.png"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=5 EUR with a fixed text, namely '5 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "5 EUR"
"value": "5 EUR",
"description": "payment:notes:denominations=5 EUR is displayed as \"5 euro notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/5euro.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=10 EUR with a fixed text, namely '10 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "10 EUR"
"value": "10 EUR",
"description": "payment:notes:denominations=10 EUR is displayed as \"10 euro notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/10euro.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=20 EUR with a fixed text, namely '20 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "20 EUR"
"value": "20 EUR",
"description": "payment:notes:denominations=20 EUR is displayed as \"20 euro notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/20euro.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=50 EUR with a fixed text, namely '50 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "50 EUR"
"value": "50 EUR",
"description": "payment:notes:denominations=50 EUR is displayed as \"50 euro notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/50euro.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=100 EUR with a fixed text, namely '100 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "100 EUR"
"value": "100 EUR",
"description": "payment:notes:denominations=100 EUR is displayed as \"100 euro notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/100euro.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=200 EUR with a fixed text, namely '200 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "200 EUR"
"value": "200 EUR",
"description": "payment:notes:denominations=200 EUR is displayed as \"200 euro notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/200euro.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=500 EUR with a fixed text, namely '500 euro notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "500 EUR"
"value": "500 EUR",
"description": "payment:notes:denominations=500 EUR is displayed as \"500 euro notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/eur/500euro.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=10 CHF with a fixed text, namely '10 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "10 CHF"
"value": "10 CHF",
"description": "payment:notes:denominations=10 CHF is displayed as \"10 francs notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/chf/10chf.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=20 CHF with a fixed text, namely '20 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "20 CHF"
"value": "20 CHF",
"description": "payment:notes:denominations=20 CHF is displayed as \"20 francs notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/chf/20chf.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=50 CHF with a fixed text, namely '50 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "50 CHF"
"value": "50 CHF",
"description": "payment:notes:denominations=50 CHF is displayed as \"50 francs notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/chf/50chf.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=100 CHF with a fixed text, namely '100 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "100 CHF"
"value": "100 CHF",
"description": "payment:notes:denominations=100 CHF is displayed as \"100 francs notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/chf/100chf.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=200 CHF with a fixed text, namely '200 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "200 CHF"
"value": "200 CHF",
"description": "payment:notes:denominations=200 CHF is displayed as \"200 francs notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/chf/200chf.svg"
},
{
"key": "payment:notes:denominations",
"description": "Layer 'Vending Machines' shows payment:notes:denominations=1000 CHF with a fixed text, namely '1000 francs notes are accepted' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') (This is only shown if (payment:notes=yes | payment:cash=yes) & (_currency~^(.*EUR.*)$ | _currency~^(.*CHF.*)$))",
"value": "1000 CHF"
"value": "1000 CHF",
"description": "payment:notes:denominations=1000 CHF is displayed as \"1000 francs notes are accepted\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#denominations_notes",
"icon_url": "./assets/layers/questions/denominations/chf/1000chf.svg"
},
{
"key": "operator",
"description": "Layer 'Vending Machines' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Vending Machines')"
"description": "Values of `operator` are shown with \"This vending machine is operated by {operator}\" and can be updated. The question is \"Who operates this vending machine?\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#operator",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "indoor",
"description": "Layer 'Vending Machines' shows indoor= with a fixed text, namely 'This vending machine is outdoors' (in the mapcomplete.org theme 'Vending Machines') Picking this answer will delete the key indoor.",
"value": ""
"description": "indoor= is displayed as \"This vending machine is outdoors\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#indoor",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "indoor",
"description": "Layer 'Vending Machines' shows indoor=yes with a fixed text, namely 'This vending machine is indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "yes"
"value": "yes",
"description": "indoor=yes is displayed as \"This vending machine is indoors\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#indoor",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "indoor",
"description": "Layer 'Vending Machines' shows indoor=no with a fixed text, namely 'This vending machine is outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "no"
"value": "no",
"description": "indoor=no is displayed as \"This vending machine is outdoors\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#indoor",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "phone",
"description": "Layer 'Vending Machines' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Vending Machines')"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of the operator of this vending machine?\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Vending Machines' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Vending Machines')"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "website",
"description": "Layer 'Vending Machines' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Vending Machines')"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Vending Machines' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Vending Machines')"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "charge",
"description": "Layer 'Vending Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*bicycle_tube.*)$)"
"description": "Values of `charge` are shown with \"a bicycle tube costs {charge}\" and can be updated. The question is \"How much does a a bicycle tube cost?\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#charge_bicycle_tube",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "charge",
"description": "Layer 'Vending Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*bicycle_light.*)$)"
"description": "Values of `charge` are shown with \"bicycle light costs {charge}\" and can be updated. The question is \"How much does a bicycle light cost?\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#charge_bicycle_light",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "charge",
"description": "Layer 'Vending Machines' shows and asks freeform values for key 'charge' (in the mapcomplete.org theme 'Vending Machines') (This is only shown if vending~^(.*condom.*)$)"
"description": "Values of `charge` are shown with \"a condom costs {charge}\" and can be updated. The question is \"How much does a a condom cost?\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#charge_condom",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "operational_status",
"description": "Layer 'Vending Machines' shows operational_status= with a fixed text, namely 'This vending machine works' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines') Picking this answer will delete the key operational_status.",
"value": ""
"description": "operational_status= is displayed as \"This vending machine works\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#operational_status",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "operational_status",
"description": "Layer 'Vending Machines' shows operational_status=broken with a fixed text, namely 'This vending machine is broken' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "broken"
"value": "broken",
"description": "operational_status=broken is displayed as \"This vending machine is broken\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#operational_status",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "operational_status",
"description": "Layer 'Vending Machines' shows operational_status=closed with a fixed text, namely 'This vending machine is closed' and allows to pick this as a default answer (in the mapcomplete.org theme 'Vending Machines')",
"value": "closed"
"value": "closed",
"description": "operational_status=closed is displayed as \"This vending machine is closed\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#operational_status",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
},
{
"key": "operational_status",
"description": "Layer 'Vending Machines' shows operational_status~.+ with a fixed text, namely 'The operational status is <i>{operational_status}</i>' (in the mapcomplete.org theme 'Vending Machines')"
"description": "operational_status~.+ is displayed as \"The operational status is <i>{operational_status}</i>\" by layer Vending Machines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/vending_machine.md#operational_status",
"icon_url": "./assets/layers/vending_machine/vending_machine.svg"
}
]
}

View file

@ -7,462 +7,557 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/recycling/recycling-14.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Waste has a layer Waste Basket showing features with this tag",
"value": "waste_basket"
"value": "waste_basket",
"description": "Features with this tag are displayed by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "id",
"description": "Layer 'Waste Basket' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Waste') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Waste Basket, Recycling, Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Waste Basket, Recycling, Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "panoramax",
"description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Waste Basket, Recycling, Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "mapillary",
"description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Waste Basket, Recycling, Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "wikidata",
"description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Waste Basket, Recycling, Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Waste Basket, Recycling, Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste= with a fixed text, namely 'A waste basket for general waste' (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key waste.",
"value": ""
"description": "waste= is displayed as \"A waste basket for general waste\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=trash with a fixed text, namely 'A waste basket for general waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "trash"
"value": "trash",
"description": "waste=trash is displayed as \"A waste basket for general waste\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=dog_excrement with a fixed text, namely 'A waste basket for dog excrements' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "dog_excrement"
"value": "dog_excrement",
"description": "waste=dog_excrement is displayed as \"A waste basket for dog excrements\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=cigarettes with a fixed text, namely 'A waste basket for cigarettes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "cigarettes"
"value": "cigarettes",
"description": "waste=cigarettes is displayed as \"A waste basket for cigarettes\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=drugs with a fixed text, namely 'A waste basket for drugs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "drugs"
"value": "drugs",
"description": "waste=drugs is displayed as \"A waste basket for drugs\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=sharps with a fixed text, namely 'A waste basket for needles and other sharp objects' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "sharps"
"value": "sharps",
"description": "waste=sharps is displayed as \"A waste basket for needles and other sharp objects\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=plastic with a fixed text, namely 'A waste basket for plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "plastic"
"value": "plastic",
"description": "waste=plastic is displayed as \"A waste basket for plastic\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=pmd with a fixed text, namely 'A waste basket for plastic packaging, metal packaging and drink cartons (PMD)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "pmd"
"value": "pmd",
"description": "waste=pmd is displayed as \"A waste basket for plastic packaging, metal packaging and drink cartons (PMD)\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=paper with a fixed text, namely 'A waste basket for paper' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "paper"
"value": "paper",
"description": "waste=paper is displayed as \"A waste basket for paper\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "vending",
"description": "Layer 'Waste Basket' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)",
"value": "excrement_bags"
"value": "excrement_bags",
"description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "not:vending",
"description": "Layer 'Waste Basket' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key not:vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)",
"value": ""
"description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "not:vending",
"description": "Layer 'Waste Basket' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket <b>does not</b> have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)",
"value": "excrement_bags"
"value": "excrement_bags",
"description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket <b>does not</b> have a dispenser for (dog) excrement bags\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "vending",
"description": "Layer 'Waste Basket' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket <b>does not</b> have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)",
"value": ""
"description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket <b>does not</b> have a dispenser for (dog) excrement bags\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "vending",
"description": "Layer 'Waste Basket' shows vending= with a fixed text, namely 'This waste basket <b>does not</b> have a dispenser for (dog) excrement bags' (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)",
"value": ""
"description": "vending= is displayed as \"This waste basket <b>does not</b> have a dispenser for (dog) excrement bags\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Waste has a layer Recycling showing features with this tag",
"value": "recycling"
},
{
"key": "id",
"description": "Layer 'Recycling' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Waste') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Recycling allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Recycling allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Recycling allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Recycling allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Recycling allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "recycling",
"description": "Features with this tag are displayed by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "recycling_type",
"description": "Layer 'Recycling' shows recycling_type=container with a fixed text, namely 'This is a recycling container' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "container"
"value": "container",
"description": "recycling_type=container is displayed as \"This is a recycling container\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_type",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "recycling_type",
"description": "Layer 'Recycling' shows recycling_type=centre with a fixed text, namely 'This is a recycling centre' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "centre"
"value": "centre",
"description": "recycling_type=centre is displayed as \"This is a recycling centre\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_type",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "amenity",
"description": "Layer 'Recycling' shows amenity=waste_disposal with a fixed text, namely 'Waste disposal container for residual waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "waste_disposal"
"value": "waste_disposal",
"description": "amenity=waste_disposal is displayed as \"Waste disposal container for residual waste\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_type",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "recycling_type",
"description": "Layer 'Recycling' shows recycling_type=pickup_point with a fixed text, namely 'This is a pickup point. The waste material is placed here without placing it in a dedicated container.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "pickup_point"
"value": "pickup_point",
"description": "recycling_type=pickup_point is displayed as \"This is a pickup point. The waste material is placed here without placing it in a dedicated container.\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_type",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "recycling_type",
"description": "Layer 'Recycling' shows recycling_type=dump with a fixed text, namely 'This is a dump where the waste material is stacked.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "dump"
"value": "dump",
"description": "recycling_type=dump is displayed as \"This is a dump where the waste material is stacked.\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_type",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "name",
"description": "Layer 'Recycling' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)"
"description": "Values of `name` are shown with \"This recycling centre is named <b>{name}</b>\" and can be updated. The question is \"What is the name of this recycling centre?\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_centre_name",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "noname",
"description": "Layer 'Recycling' shows noname=yes with a fixed text, namely 'This recycling centre doesn't have a specific name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)",
"value": "yes"
"value": "yes",
"description": "noname=yes is displayed as \"This recycling centre doesn't have a specific name\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_centre_name",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "location",
"description": "Layer 'Recycling' shows location=underground with a fixed text, namely 'This is an underground container' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=container)",
"value": "underground"
"value": "underground",
"description": "location=underground is displayed as \"This is an underground container\" by layers Recycling, Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#container_location",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "location",
"description": "Layer 'Recycling' shows location=indoor with a fixed text, namely 'This container is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=container)",
"value": "indoor"
"value": "indoor",
"description": "location=indoor is displayed as \"This container is located indoors\" by layers Recycling, Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#container_location",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "location",
"description": "Layer 'Recycling' shows location= with a fixed text, namely 'This container is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key location. (This is only shown if recycling_type=container)",
"value": ""
"description": "location= is displayed as \"This container is located outdoors\" by layers Recycling, Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#container_location",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "recycling:batteries",
"description": "Layer 'Recycling' shows recycling:batteries=yes with a fixed text, namely 'Batteries can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:batteries=yes is displayed as \"Batteries can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/batteries.svg"
},
{
"key": "recycling:beverage_cartons",
"description": "Layer 'Recycling' shows recycling:beverage_cartons=yes with a fixed text, namely 'Beverage cartons can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:beverage_cartons=yes is displayed as \"Beverage cartons can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/beverage_cartons.svg"
},
{
"key": "recycling:cans",
"description": "Layer 'Recycling' shows recycling:cans=yes with a fixed text, namely 'Cans can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:cans=yes is displayed as \"Cans can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/cans.svg"
},
{
"key": "recycling:clothes",
"description": "Layer 'Recycling' shows recycling:clothes=yes with a fixed text, namely 'Clothes can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:clothes=yes is displayed as \"Clothes can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/clothes.svg"
},
{
"key": "recycling:cooking_oil",
"description": "Layer 'Recycling' shows recycling:cooking_oil=yes with a fixed text, namely 'Cooking oil can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:cooking_oil=yes is displayed as \"Cooking oil can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/cooking_oil.svg"
},
{
"key": "recycling:engine_oil",
"description": "Layer 'Recycling' shows recycling:engine_oil=yes with a fixed text, namely 'Engine oil can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:engine_oil=yes is displayed as \"Engine oil can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/engine_oil.svg"
},
{
"key": "recycling:fluorescent_tubes",
"description": "Layer 'Recycling' shows recycling:fluorescent_tubes=yes with a fixed text, namely 'Fluorescent tubes can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:fluorescent_tubes=yes is displayed as \"Fluorescent tubes can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/fluorescent_tubes.svg"
},
{
"key": "recycling:green_waste",
"description": "Layer 'Recycling' shows recycling:green_waste=yes with a fixed text, namely 'Green waste can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:green_waste=yes is displayed as \"Green waste can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/garden_waste.svg"
},
{
"key": "recycling:organic",
"description": "Layer 'Recycling' shows recycling:organic=yes with a fixed text, namely 'Organic waste can be recycled here' (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:organic=yes is displayed as \"Organic waste can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/garden_waste.svg"
},
{
"key": "recycling:glass_bottles",
"description": "Layer 'Recycling' shows recycling:glass_bottles=yes with a fixed text, namely 'Glass bottles can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:glass_bottles=yes is displayed as \"Glass bottles can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/glass_bottles.svg"
},
{
"key": "recycling:glass",
"description": "Layer 'Recycling' shows recycling:glass=yes with a fixed text, namely 'Glass can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:glass=yes is displayed as \"Glass can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/glass.svg"
},
{
"key": "recycling:light_bulbs",
"description": "Layer 'Recycling' shows recycling:light_bulbs=yes with a fixed text, namely 'Light bulbs can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:light_bulbs=yes is displayed as \"Light bulbs can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/light_bulbs.svg"
},
{
"key": "recycling:newspaper",
"description": "Layer 'Recycling' shows recycling:newspaper=yes with a fixed text, namely 'Newspapers can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:newspaper=yes is displayed as \"Newspapers can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/newspaper.svg"
},
{
"key": "recycling:paper",
"description": "Layer 'Recycling' shows recycling:paper=yes with a fixed text, namely 'Paper can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:paper=yes is displayed as \"Paper can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/paper.svg"
},
{
"key": "recycling:plastic_bottles",
"description": "Layer 'Recycling' shows recycling:plastic_bottles=yes with a fixed text, namely 'Plastic bottles can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:plastic_bottles=yes is displayed as \"Plastic bottles can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/plastic_bottles.svg"
},
{
"key": "recycling:plastic_packaging",
"description": "Layer 'Recycling' shows recycling:plastic_packaging=yes with a fixed text, namely 'Plastic packaging can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:plastic_packaging=yes is displayed as \"Plastic packaging can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/plastic_packaging.svg"
},
{
"key": "recycling:plastic",
"description": "Layer 'Recycling' shows recycling:plastic=yes with a fixed text, namely 'Plastic can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:plastic=yes is displayed as \"Plastic can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/plastic.svg"
},
{
"key": "recycling:pmd",
"description": "Layer 'Recycling' shows recycling:pmd=yes with a fixed text, namely 'Plastic packaging, metal packaging and drink cartons (PMD) can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:pmd=yes is displayed as \"Plastic packaging, metal packaging and drink cartons (PMD) can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/pmd.svg"
},
{
"key": "recycling:printer_cartridges",
"description": "Layer 'Recycling' shows recycling:printer_cartridges=yes with a fixed text, namely 'Printer cartridges can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:printer_cartridges=yes is displayed as \"Printer cartridges can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/printer_cartridges.svg"
},
{
"key": "recycling:scrap_metal",
"description": "Layer 'Recycling' shows recycling:scrap_metal=yes with a fixed text, namely 'Scrap metal can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:scrap_metal=yes is displayed as \"Scrap metal can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/scrap_metal.svg"
},
{
"key": "recycling:shoes",
"description": "Layer 'Recycling' shows recycling:shoes=yes with a fixed text, namely 'Shoes can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:shoes=yes is displayed as \"Shoes can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/shoes.svg"
},
{
"key": "recycling:small_appliances",
"description": "Layer 'Recycling' shows recycling:small_appliances=yes with a fixed text, namely 'Small electrical appliances can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:small_appliances=yes is displayed as \"Small electrical appliances can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/small_electrical_appliances.svg"
},
{
"key": "recycling:small_electrical_appliances",
"description": "Layer 'Recycling' shows recycling:small_electrical_appliances=yes with a fixed text, namely 'Small electrical appliances can be recycled here' (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:small_electrical_appliances=yes is displayed as \"Small electrical appliances can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/small_electrical_appliances.svg"
},
{
"key": "recycling:needles",
"description": "Layer 'Recycling' shows recycling:needles=yes with a fixed text, namely 'Needles can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:needles=yes is displayed as \"Needles can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/needles.svg"
},
{
"key": "recycling:waste",
"description": "Layer 'Recycling' shows recycling:waste=yes with a fixed text, namely 'Residual waste can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:waste=yes is displayed as \"Residual waste can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/waste_disposal/waste_disposal.svg"
},
{
"key": "recycling:bicycles",
"description": "Layer 'Recycling' shows recycling:bicycles=yes with a fixed text, namely 'Bicycles can be recycled here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "recycling:bicycles=yes is displayed as \"Bicycles can be recycled here\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#recycling_accepts",
"icon_url": "./assets/layers/recycling/bicycles.svg"
},
{
"key": "operator",
"description": "Layer 'Recycling' shows and asks freeform values for key 'operator' (in the mapcomplete.org theme 'Waste')"
"description": "Values of `operator` are shown with \"This recycling facility is operated by {operator}\" and can be updated. The question is \"What company operates this recycling facility?\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#operator",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "website",
"description": "Layer 'Recycling' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)"
"description": "Values of `website` are shown with \"<a href='{website}' rel='nofollow noopener noreferrer' target='_blank'>{website}</a>\" and can be updated. The question is \"What is the website of {title()}?\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "contact:website",
"description": "Layer 'Recycling' shows contact:website~.+ with a fixed text, namely '<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)"
"description": "contact:website~.+ is displayed as \"<a href='{contact:website}' rel='nofollow noopener noreferrer' target='_blank'>{contact:website}</a>\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#website",
"icon_url": "./assets/layers/icons/website.svg"
},
{
"key": "email",
"description": "Layer 'Recycling' shows and asks freeform values for key 'email' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)"
"description": "Values of `email` are shown with \"<a href='mailto:{email}' target='_blank' rel='noopener'>{email}</a>\" and can be updated. The question is \"What is the email address of {title()}?\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "contact:email",
"description": "Layer 'Recycling' shows contact:email~.+ with a fixed text, namely '<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)"
"description": "contact:email~.+ is displayed as \"<a href='mailto:{contact:email}' target='_blank' rel='noopener'>{contact:email}</a>\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "operator:email",
"description": "Layer 'Recycling' shows operator:email~.+ with a fixed text, namely '<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)"
"description": "operator:email~.+ is displayed as \"<a href='mailto:{operator:email}' target='_blank' rel='noopener'>{operator:email}</a>\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#email",
"icon_url": "./assets/svg/envelope.svg"
},
{
"key": "phone",
"description": "Layer 'Recycling' shows and asks freeform values for key 'phone' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)"
"description": "Values of `phone` are shown with \"{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}\" and can be updated. The question is \"What is the phone number of {title()}?\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "contact:phone",
"description": "Layer 'Recycling' shows contact:phone~.+ with a fixed text, namely '{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}' (in the mapcomplete.org theme 'Waste') (This is only shown if recycling_type=centre)"
"description": "contact:phone~.+ is displayed as \"{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#phone",
"icon_url": "./assets/layers/questions/phone.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Recycling' shows and asks freeform values for key 'opening_hours' (in the mapcomplete.org theme 'Waste')"
"description": "Values of `opening_hours` are shown with \"<h3>Opening hours</h3>{opening_hours_table(opening_hours)}\" and can be updated. The question is \"What are the opening hours of this recycling facility?\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#opening_hours_24_7",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Recycling' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "24/7"
"value": "24/7",
"description": "opening_hours=24/7 is displayed as \"24/7 opened (including holidays)\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#opening_hours_24_7",
"icon_url": "./assets/layers/questions/open24_7.svg"
},
{
"key": "opening_hours",
"description": "Layer 'Recycling' shows opening_hours=closed with a fixed text, namely 'Marked as closed for an unspecified time' (in the mapcomplete.org theme 'Waste')",
"value": "closed"
"value": "closed",
"description": "opening_hours=closed is displayed as \"Marked as closed for an unspecified time\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#opening_hours_24_7",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "access",
"description": "Layer 'Recycling' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Waste')"
"description": "Values of `access` are shown with \"This recycling facility can be used by {access}\" and can be updated. The question is \"Who can use this recycling facility?\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#access",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "access",
"description": "Layer 'Recycling' shows access=yes with a fixed text, namely 'Everyone can use this recycling facility' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"Everyone can use this recycling facility\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#access",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "access",
"description": "Layer 'Recycling' shows access=residents with a fixed text, namely 'Only residents can use this recycling facility' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "residents"
"value": "residents",
"description": "access=residents is displayed as \"Only residents can use this recycling facility\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#access",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "access",
"description": "Layer 'Recycling' shows access=private with a fixed text, namely 'This recycling facility is only for private use' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "private"
"value": "private",
"description": "access=private is displayed as \"This recycling facility is only for private use\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#access",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "survey:date",
"description": "Layer 'Recycling' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Waste')"
"description": "Values of `survey:date` are shown with \"This object was last surveyed on <b>{survey:date}</b>\" and can be updated. The question is \"When was this object last surveyed?\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#survey_date",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "survey:date",
"description": "Layer 'Recycling' shows survey:date= with a fixed text, namely 'This object was last surveyed today' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key survey:date.",
"value": ""
"description": "survey:date= is displayed as \"This object was last surveyed today\" by layer Recycling",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/recycling.md#survey_date",
"icon_url": "./assets/layers/recycling/recycling-14.svg"
},
{
"key": "amenity",
"description": "The MapComplete theme Waste has a layer Waste Disposal Bins showing features with this tag",
"value": "waste_disposal"
},
{
"key": "id",
"description": "Layer 'Waste Disposal Bins' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Waste') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
},
{
"key": "image",
"description": "The layer 'Waste Disposal Bins allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "panoramax",
"description": "The layer 'Waste Disposal Bins allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "mapillary",
"description": "The layer 'Waste Disposal Bins allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikidata",
"description": "The layer 'Waste Disposal Bins allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
},
{
"key": "wikipedia",
"description": "The layer 'Waste Disposal Bins allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"value": "waste_disposal",
"description": "Features with this tag are displayed by layer Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md",
"icon_url": "./assets/layers/waste_disposal/waste_disposal.svg"
},
{
"key": "amenity",
"description": "Layer 'Waste Disposal Bins' shows amenity=waste_disposal with a fixed text, namely 'This is a medium to large bin for disposal of (household) waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "waste_disposal"
"value": "waste_disposal",
"description": "amenity=waste_disposal is displayed as \"This is a medium to large bin for disposal of (household) waste\" by layer Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#type",
"icon_url": "./assets/layers/waste_disposal/waste_disposal.svg"
},
{
"key": "amenity",
"description": "Layer 'Waste Disposal Bins' shows amenity=recycling with a fixed text, namely 'This is actually a recycling container' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "recycling"
"value": "recycling",
"description": "amenity=recycling is displayed as \"This is actually a recycling container\" by layer Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#type",
"icon_url": "./assets/layers/waste_disposal/waste_disposal.svg"
},
{
"key": "access",
"description": "Layer 'Waste Disposal Bins' shows and asks freeform values for key 'access' (in the mapcomplete.org theme 'Waste')"
"description": "Values of `access` are shown with \"Access: {access}\" and can be updated. The question is \"Who can use this waste disposal bin?\" by layer Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#access",
"icon_url": "./assets/layers/waste_disposal/waste_disposal.svg"
},
{
"key": "access",
"description": "Layer 'Waste Disposal Bins' shows access=yes with a fixed text, namely 'This bin can be used by anyone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "yes"
"value": "yes",
"description": "access=yes is displayed as \"This bin can be used by anyone\" by layer Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#access",
"icon_url": "./assets/layers/waste_disposal/waste_disposal.svg"
},
{
"key": "access",
"description": "Layer 'Waste Disposal Bins' shows access=no with a fixed text, namely 'This bin is private' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "no"
"value": "no",
"description": "access=no is displayed as \"This bin is private\" by layer Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#access",
"icon_url": "./assets/layers/waste_disposal/waste_disposal.svg"
},
{
"key": "access",
"description": "Layer 'Waste Disposal Bins' shows access=residents with a fixed text, namely 'This bin is only for residents' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "residents"
},
{
"key": "location",
"description": "Layer 'Waste Disposal Bins' shows location=underground with a fixed text, namely 'This is an underground container' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "underground"
},
{
"key": "location",
"description": "Layer 'Waste Disposal Bins' shows location=indoor with a fixed text, namely 'This container is located indoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste')",
"value": "indoor"
},
{
"key": "location",
"description": "Layer 'Waste Disposal Bins' shows location= with a fixed text, namely 'This container is located outdoors' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste') Picking this answer will delete the key location.",
"value": ""
"value": "residents",
"description": "access=residents is displayed as \"This bin is only for residents\" by layer Waste Disposal Bins",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_disposal.md#access",
"icon_url": "./assets/layers/waste_disposal/waste_disposal.svg"
}
]
}

View file

@ -7,107 +7,145 @@
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/themes/waste_basket/waste_basket.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "pietervdvn@posteo.net"
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "amenity",
"description": "The MapComplete theme Waste Baskets has a layer Waste Basket showing features with this tag",
"value": "waste_basket"
"value": "waste_basket",
"description": "Features with this tag are displayed by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "id",
"description": "Layer 'Waste Basket' shows id~.+ with a fixed text, namely 'You just created this element! Thanks for sharing this info with the world and helping people worldwide.' (in the mapcomplete.org theme 'Waste Baskets') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "panoramax",
"description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "mapillary",
"description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "wikidata",
"description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "wikipedia",
"description": "The layer 'Waste Basket allows to upload images and adds them under the 'panoramax'-tag (and panoramax:0, panoramax:1, ... for multiple images). Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary"
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#images",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste= with a fixed text, namely 'A waste basket for general waste' (in the mapcomplete.org theme 'Waste Baskets') Picking this answer will delete the key waste.",
"value": ""
"description": "waste= is displayed as \"A waste basket for general waste\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=trash with a fixed text, namely 'A waste basket for general waste' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')",
"value": "trash"
"value": "trash",
"description": "waste=trash is displayed as \"A waste basket for general waste\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=dog_excrement with a fixed text, namely 'A waste basket for dog excrements' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')",
"value": "dog_excrement"
"value": "dog_excrement",
"description": "waste=dog_excrement is displayed as \"A waste basket for dog excrements\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=cigarettes with a fixed text, namely 'A waste basket for cigarettes' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')",
"value": "cigarettes"
"value": "cigarettes",
"description": "waste=cigarettes is displayed as \"A waste basket for cigarettes\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=drugs with a fixed text, namely 'A waste basket for drugs' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')",
"value": "drugs"
"value": "drugs",
"description": "waste=drugs is displayed as \"A waste basket for drugs\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=sharps with a fixed text, namely 'A waste basket for needles and other sharp objects' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')",
"value": "sharps"
"value": "sharps",
"description": "waste=sharps is displayed as \"A waste basket for needles and other sharp objects\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=plastic with a fixed text, namely 'A waste basket for plastic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')",
"value": "plastic"
"value": "plastic",
"description": "waste=plastic is displayed as \"A waste basket for plastic\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=pmd with a fixed text, namely 'A waste basket for plastic packaging, metal packaging and drink cartons (PMD)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')",
"value": "pmd"
"value": "pmd",
"description": "waste=pmd is displayed as \"A waste basket for plastic packaging, metal packaging and drink cartons (PMD)\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "waste",
"description": "Layer 'Waste Basket' shows waste=paper with a fixed text, namely 'A waste basket for paper' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets')",
"value": "paper"
"value": "paper",
"description": "waste=paper is displayed as \"A waste basket for paper\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#waste_basket_waste_types",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "vending",
"description": "Layer 'Waste Basket' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)",
"value": "excrement_bags"
"value": "excrement_bags",
"description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "not:vending",
"description": "Layer 'Waste Basket' shows vending=excrement_bags & not:vending= with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets') Picking this answer will delete the key not:vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)",
"value": ""
"description": "vending=excrement_bags & not:vending= is displayed as \"This waste basket has a dispenser for (dog) excrement bags\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "not:vending",
"description": "Layer 'Waste Basket' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket <b>does not</b> have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets') (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)",
"value": "excrement_bags"
"value": "excrement_bags",
"description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket <b>does not</b> have a dispenser for (dog) excrement bags\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "vending",
"description": "Layer 'Waste Basket' shows not:vending=excrement_bags & vending= with a fixed text, namely 'This waste basket <b>does not</b> have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the mapcomplete.org theme 'Waste Baskets') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)",
"value": ""
"description": "not:vending=excrement_bags & vending= is displayed as \"This waste basket <b>does not</b> have a dispenser for (dog) excrement bags\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
},
{
"key": "vending",
"description": "Layer 'Waste Basket' shows vending= with a fixed text, namely 'This waste basket <b>does not</b> have a dispenser for (dog) excrement bags' (in the mapcomplete.org theme 'Waste Baskets') Picking this answer will delete the key vending. (This is only shown if waste~^(.*dog_excrement.*)$ | waste~^(.*trash.*)$ | waste=)",
"value": ""
"description": "vending= is displayed as \"This waste basket <b>does not</b> have a dispenser for (dog) excrement bags\" by layer Waste Basket",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/waste_basket.md#dispensing_dog_bags",
"icon_url": "./assets/themes/waste_basket/waste_basket.svg"
}
]
}

View file

@ -0,0 +1,906 @@
{
"data_format": 1,
"project": {
"name": "MapComplete Wayside shrines",
"description": "This map shows shrines and crosses found on the side of roads and paths, and allows adding new ones",
"project_url": "https://mapcomplete.org/wayside_shrines",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Themes",
"icon_url": "https://mapcomplete.org/assets/layers/wayside_shrine/shrine.svg",
"contact_name": "Pieter Vander Vennet",
"contact_email": "info@mapcomplete.org"
},
"tags": [
{
"key": "historic",
"value": "wayside_shrine",
"description": "Features with this tag are displayed by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "historic",
"value": "wayside_cross",
"description": "Features with this tag are displayed by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "id",
"description": "id~.+ is displayed as \"You just created this element! Thanks for sharing this info with the world and helping people worldwide.\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#just_created",
"icon_url": "./assets/svg/party.svg"
},
{
"key": "image",
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#images",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "panoramax",
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#images",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "mapillary",
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#images",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "wikidata",
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#images",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "wikipedia",
"description": "Images are displayed based on the keys image, image:0, image:1,..., panoramax, panoramax:0, panoramx:1, ... , wikidata, wikipedia, wikimedia_commons and mapillary Furthermore, this layer shows images based on the keys panoramax, image, wikidata, wikipedia, wikimedia_commons and mapillary by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#images",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "name",
"description": "Values of `name` are shown with \"The name of this {title()} is <b>{name}</b>\" and can be updated. The question is \"What's the name of this {title()}?\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#shrine_name",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "noname",
"value": "yes",
"description": "noname=yes is displayed as \"This shrine does not have a name\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#shrine_name",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "inscription",
"description": "Values of `inscription` are shown with \"The inscription is <b>{inscription}</b>\" and can be updated. The question is \"Is there an inscription?\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#inscription",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "not:inscription",
"value": "yes",
"description": "not:inscription=yes is displayed as \"No inscription\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#inscription",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "inscription",
"value": "Ave Maria",
"description": "inscription=Ave Maria is displayed as \"The inscription is <b>Ave Maria</b>\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#inscription",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "inscription",
"value": "I.N.R.I",
"description": "inscription=I.N.R.I is displayed as \"The inscription is <b>I.N.R.I.</b>\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#inscription",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"description": "Values of `religion` are shown with \"This shrine is {religion}\" and can be updated. The question is \"To which religion is this shrine dedicated?\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "christian",
"description": "religion=christian is displayed as \"This is a Christian shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "buddhist",
"description": "religion=buddhist is displayed as \"This is a Buddhist shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "hindu",
"description": "religion=hindu is displayed as \"This is a Hindu shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "jain",
"description": "religion=jain is displayed as \"This is a Jain shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "jewish",
"description": "religion=jewish is displayed as \"This is a Jewish shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "muslim",
"description": "religion=muslim is displayed as \"This is an Islamic shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "pagan",
"description": "religion=pagan is displayed as \"This is a Pagan shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "shinto",
"description": "religion=shinto is displayed as \"This is a Shinto shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "sikh",
"description": "religion=sikh is displayed as \"This is a Sikh shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "taoist",
"description": "religion=taoist is displayed as \"This is a Taoist shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "religion",
"value": "zoroastrian",
"description": "religion=zoroastrian is displayed as \"This is a Zoroastrian shrine\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#religion",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"description": "Values of `denomination` are shown with \"The religious denomination is <b>{denomination}</b>\" and can be updated. The question is \"What's the Christian denomination of this {title()}?\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "catholic",
"description": "denomination=catholic is displayed as \"The religious subdenomination is Catholic\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "roman_catholic",
"description": "denomination=roman_catholic is displayed as \"The religious subdenomination is Roman Catholic\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "orthodox",
"description": "denomination=orthodox is displayed as \"The religious subdenomination is Orthodox\" by layers Wayside Shrines and Crosses, Wayside Shrines and Crosses, Artworks, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "greek_orthodox",
"description": "denomination=greek_orthodox is displayed as \"The religious subdenomination is Greek-Orthodox\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "russian_orthodox",
"description": "denomination=russian_orthodox is displayed as \"The religious subdenomination is Russian-Orthodox\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "serbian_orthodox",
"description": "denomination=serbian_orthodox is displayed as \"The religious subdenomination is Serbian Orthodox\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "protestant",
"description": "denomination=protestant is displayed as \"The religious subdenomination is Protestant\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "anglican",
"description": "denomination=anglican is displayed as \"The religious subdenomination is Anglican\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "adventist",
"description": "denomination=adventist is displayed as \"The religious subdenomination is Adventist\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "evangelical",
"description": "denomination=evangelical is displayed as \"The religious subdenomination is evangelical\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_christian",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"description": "Values of `denomination` are shown with \"The religious subdenomination is {denomination}\" and can be updated. The question is \"What's the Muslim denomination of this shrine?\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_muslim",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "shia",
"description": "denomination=shia is displayed as \"The religious subdenomination is Shia\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_muslim",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "sunni",
"description": "denomination=sunni is displayed as \"The religious subdenomination is Sunni\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_muslim",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "sufi",
"description": "denomination=sufi is displayed as \"The religious subdenomination is Sufi\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_muslim",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"description": "Values of `denomination` are shown with \"The religious subdenomination is {denomination}\" and can be updated. The question is \"What's the Jewish denomination of this shrine?\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_jewish",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "conservative",
"description": "denomination=conservative is displayed as \"The religious subdenomination is Conservative\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_jewish",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "hasidic",
"description": "denomination=hasidic is displayed as \"The religious subdenomination is Hasidic\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_jewish",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"value": "reform",
"description": "denomination=reform is displayed as \"The religious subdenomination is Reform\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_jewish",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "denomination",
"description": "Values of `denomination` are shown with \"The denomination of this shrine is {denomination}\" and can be updated. The question is \"What's the denomination of this shrine?\" by layers Wayside Shrines and Crosses, Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#denomination_other",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "level",
"description": "Values of `level` are shown with \"Located on the {level}th floor\" and can be updated. The question is \"On what level is this feature located?\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "location",
"value": "underground",
"description": "location=underground is displayed as \"Located underground\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "level",
"value": "0",
"description": "level=0 is displayed as \"Located on the ground floor\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "level",
"description": "level= is displayed as \"Located on the ground floor\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "level",
"value": "1",
"description": "level=1 is displayed as \"Located on the first floor\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "level",
"value": "-1",
"description": "level=-1 is displayed as \"Located on the first basement level\" by layer Wayside Shrines and Crosses",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/wayside_shrine.md#single_level",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "tourism",
"value": "artwork",
"description": "Features with this tag are displayed by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"description": "Values of `artwork_type` are shown with \"This is a {artwork_type}\" and can be updated. The question is \"What is the type of this artwork?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "architecture",
"description": "artwork_type=architecture is displayed as \"Architecture\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "mural",
"description": "artwork_type=mural is displayed as \"Mural\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "painting",
"description": "artwork_type=painting is displayed as \"Painting\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "sculpture",
"description": "artwork_type=sculpture is displayed as \"Sculpture\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "statue",
"description": "artwork_type=statue is displayed as \"Statue\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "bust",
"description": "artwork_type=bust is displayed as \"Bust\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "stone",
"description": "artwork_type=stone is displayed as \"Stone\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "installation",
"description": "artwork_type=installation is displayed as \"Installation\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "graffiti",
"description": "artwork_type=graffiti is displayed as \"Graffiti\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "relief",
"description": "artwork_type=relief is displayed as \"Relief\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "azulejo",
"description": "artwork_type=azulejo is displayed as \"Azulejo (Spanish decorative tilework)\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "tilework",
"description": "artwork_type=tilework is displayed as \"Tilework\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artwork_type",
"value": "woodcarving",
"description": "artwork_type=woodcarving is displayed as \"Woodcarving\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artwork_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artist:wikidata",
"description": "Values of `artist:wikidata` are shown with \"This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}<br/>{wikipedia(artist:wikidata)}\" and can be updated. The question is \"Who made this artwork?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artist_wikidata",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "artist_name",
"description": "Values of `artist_name` are shown with \"Created by {artist_name}\" and can be updated. The question is \"Which artist created this?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_artist_name",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "website",
"description": "Values of `website` are shown with \"{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}\" and can be updated. The question is \"Is there a website with more information about this artwork?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_website",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "wikidata",
"description": "Values of `wikidata` are shown with \"{wikipedia():max-height:25rem}\" and can be updated. The question is \"What is the corresponding Wikidata entity?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "wikipedia",
"description": "wikipedia~.+ is displayed as \"{wikipedia():max-height:25rem}\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "wikidata",
"description": "wikidata= is displayed as \"No Wikipedia page has been linked yet\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#wikipedia",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "subject:wikidata",
"description": "Values of `subject:wikidata` are shown with \"This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}\" and can be updated. The question is \"What does this artwork depict?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#artwork_subject",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "historic",
"value": "memorial",
"description": "historic=memorial is displayed as \"This artwork also serves as a memorial\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_memorial",
"icon_url": "./assets/layers/memorial/memorial.svg"
},
{
"key": "historic",
"description": "historic= is displayed as \"This artwork does not serve as a memorial\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_memorial",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"description": "Values of `memorial` are shown with \"This is a {memorial}\" and can be updated. The question is \"What type of memorial is this?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "statue",
"description": "memorial=statue is displayed as \"This is a statue\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "plaque",
"description": "memorial=plaque is displayed as \"This is a plaque\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "bench",
"description": "memorial=bench is displayed as \"This is a commemorative bench\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "ghost_bike",
"description": "memorial=ghost_bike is displayed as \"This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "stolperstein",
"description": "memorial=stolperstein is displayed as \"This is a stolperstein (stumbing stone)\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "stele",
"description": "memorial=stele is displayed as \"This is a stele\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "stone",
"description": "memorial=stone is displayed as \"This is a memorial stone\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "bust",
"description": "memorial=bust is displayed as \"This is a bust\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "sculpture",
"description": "memorial=sculpture is displayed as \"This is a sculpture\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "obelisk",
"description": "memorial=obelisk is displayed as \"This is an obelisk\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "cross",
"description": "memorial=cross is displayed as \"This is a cross\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "blue_plaque",
"description": "memorial=blue_plaque is displayed as \"This is a blue plaque\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "tank",
"description": "memorial=tank is displayed as \"This is a historic tank, permanently placed in public space as memorial\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "memorial",
"value": "tree",
"description": "memorial=tree is displayed as \"This is a memorial tree\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "historic",
"value": "tomb",
"description": "historic=tomb is displayed as \"This is a gravestone; the person is buried here\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#memorial_type",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "inscription",
"description": "Values of `inscription` are shown with \"The inscription on this memorial reads: <p><i>{inscription}<i></p>\" and can be updated. The question is \"What is the inscription on this memorial?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#inscription",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "not:inscription",
"value": "yes",
"description": "not:inscription=yes is displayed as \"This memorial does not have an inscription\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#inscription",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "amenity",
"value": "bench",
"description": "amenity=bench is displayed as \"This artwork also serves as a bench\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_bench",
"icon_url": "./assets/layers/bench/bench.svg"
},
{
"key": "amenity",
"description": "amenity= is displayed as \"This artwork does not serve as a bench\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_bench",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "backrest",
"value": "yes",
"description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest",
"icon_url": "./assets/layers/bench/two_sided.svg"
},
{
"key": "two_sided",
"value": "yes",
"description": "backrest=yes & two_sided=yes is displayed as \"This bench is two-sided and shares the backrest\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest",
"icon_url": "./assets/layers/bench/two_sided.svg"
},
{
"key": "backrest",
"value": "yes",
"description": "backrest=yes is displayed as \"This bench does have a backrest\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest",
"icon_url": "./assets/layers/bench/one_sided.svg"
},
{
"key": "backrest",
"value": "no",
"description": "backrest=no is displayed as \"This bench does <b>not</b> have a backrest\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_backrest",
"icon_url": "./assets/layers/bench/no_backrest.svg"
},
{
"key": "armrest",
"value": "yes",
"description": "armrest=yes is displayed as \"This bench does have one or more armrests\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_armrest",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "armrest",
"value": "no",
"description": "armrest=no is displayed as \"This bench does <b>not</b> have any armrests\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_armrest",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "seats",
"description": "Values of `seats` are shown with \"This bench has {seats} seats\" and can be updated. The question is \"How many seats does this bench have?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_seats",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "seats:separated",
"value": "no",
"description": "seats:separated=no is displayed as \"This bench does not have separated seats\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_seats",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "material",
"description": "Values of `material` are shown with \"Material: {material}\" and can be updated. The question is \"What is the bench (seating) made from?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "material",
"value": "wood",
"description": "material=wood is displayed as \"The seating is made from wood\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "material",
"value": "metal",
"description": "material=metal is displayed as \"The seating is made from metal\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "material",
"value": "stone",
"description": "material=stone is displayed as \"The seating is made from stone\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "material",
"value": "concrete",
"description": "material=concrete is displayed as \"The seating is made from concrete\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "material",
"value": "plastic",
"description": "material=plastic is displayed as \"The seating is made from plastic\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "material",
"value": "steel",
"description": "material=steel is displayed as \"The seating is made from steel\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_material",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "direction",
"description": "Values of `direction` are shown with \"When sitting on the bench, one looks towards {direction}°.\" and can be updated. The question is \"In which direction are you looking when sitting on the bench?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_direction",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "colour",
"description": "Values of `colour` are shown with \"Colour: {colour}\" and can be updated. The question is \"Which colour does this bench have?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "colour",
"value": "brown",
"description": "colour=brown is displayed as \"Colour: brown\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "colour",
"value": "green",
"description": "colour=green is displayed as \"Colour: green\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "colour",
"value": "gray",
"description": "colour=gray is displayed as \"Colour: gray\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "colour",
"value": "white",
"description": "colour=white is displayed as \"Colour: white\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "colour",
"value": "red",
"description": "colour=red is displayed as \"Colour: red\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "colour",
"value": "black",
"description": "colour=black is displayed as \"Colour: black\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "colour",
"value": "blue",
"description": "colour=blue is displayed as \"Colour: blue\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "colour",
"value": "yellow",
"description": "colour=yellow is displayed as \"Colour: yellow\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_colour",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "survey:date",
"description": "Values of `survey:date` are shown with \"This bench was last surveyed on {survey:date}\" and can be updated. The question is \"When was this bench last surveyed?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_survey_date",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "survey:date",
"description": "survey:date= is displayed as \"Surveyed today!\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_survey_date",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "inscription",
"description": "Values of `inscription` are shown with \"This bench has the following inscription:<br/><p><i>{inscription}</i></p>\" and can be updated. The question is \"Does this bench have an inscription?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_inscription",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "not:inscription",
"value": "yes",
"description": "not:inscription=yes is displayed as \"This bench does not have an inscription\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_inscription",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "inscription",
"description": "inscription= is displayed as \"This bench <span class='subtle'>probably</span> does not not have an inscription\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_inscription",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "historic",
"value": "memorial",
"description": "historic=memorial is displayed as \"This bench is a memorial for someone or something\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_memorial",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "historic",
"description": "historic= & not:historic=memorial is displayed as \"This bench is a <b>not</b> a memorial for someone or something\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_memorial",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "not:historic",
"value": "memorial",
"description": "historic= & not:historic=memorial is displayed as \"This bench is a <b>not</b> a memorial for someone or something\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#bench_memorial",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "historic",
"value": "wayside_shrine",
"description": "historic=wayside_shrine is displayed as \"This artwork acts as a wayside shrine\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_wayside_shrine",
"icon_url": "./assets/layers/wayside_shrine/shrine.svg"
},
{
"key": "historic",
"description": "historic= is displayed as \"This artwork does not act as a wayside shrine\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#doubles_as_wayside_shrine",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "name",
"description": "Values of `name` are shown with \"The name of this shrine is <b>{name}</b>\" and can be updated. The question is \"What's the name of this shrine?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#shrine_name",
"icon_url": "./assets/themes/artwork/artwork.svg"
},
{
"key": "denomination",
"description": "Values of `denomination` are shown with \"The religious denomination is <b>{denomination}</b>\" and can be updated. The question is \"What's the Christian denomination of the shrine?\" by layer Artworks",
"doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/artwork.md#denomination_christian",
"icon_url": "./assets/themes/artwork/artwork.svg"
}
]
}

View file

@ -16,6 +16,8 @@ Available languages:
- en
- de
- zh_Hant
- cs
- uk
# Table of contents

View file

@ -2133,21 +2133,21 @@ This tagrendering has labels
### charge_bicycle_tube
The question is `How much does a a bicycle tube cost?`
*a bicycle tube costs {charge:bicycle_tube}* is shown if `charge` is set
*a bicycle tube costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$
### charge_bicycle_light
The question is `How much does a bicycle light cost?`
*bicycle light costs {charge:bicycle_light}* is shown if `charge` is set
*bicycle light costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$
### charge_condom
The question is `How much does a a condom cost?`
*a condom costs {charge:condom}* is shown if `charge` is set
*a condom costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$

View file

@ -67,6 +67,13 @@ Available languages:
+ [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)
@ -259,6 +266,13 @@ Elements must match **all** of the following expressions:
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/survey:date#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/survey%3Adate/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/inscription#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/inscription/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [text](../SpecialInputElements.md#text) | |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [memorial](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dmemorial) [](https://wiki.openstreetmap.org/wiki/Tag:historic%3D) |
| <a target="_blank" href='https://taginfo.openstreetmap.org/keys/historic#values'><img src='https://mapcomplete.org/assets/svg/search.svg' height='18px'></a> <a target="_blank" href='https://taghistory.raifer.tech/?#***/historic/'><img src='https://mapcomplete.org/assets/svg/statistics.svg' height='18px'></a> [historic](https://wiki.openstreetmap.org/wiki/Key:historic) | Multiple choice | [wayside_shrine](https://wiki.openstreetmap.org/wiki/Tag:historic%3Dwayside_shrine) [](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) | [christian](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dchristian) [buddhist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dbuddhist) [hindu](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dhindu) [jain](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djain) [jewish](https://wiki.openstreetmap.org/wiki/Tag:religion%3Djewish) [muslim](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dmuslim) [pagan](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dpagan) [shinto](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dshinto) [sikh](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dsikh) [taoist](https://wiki.openstreetmap.org/wiki/Tag:religion%3Dtaoist) [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) | [catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dcatholic) [roman_catholic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Droman_catholic) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [greek_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dgreek_orthodox) [russian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Drussian_orthodox) [serbian_orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dserbian_orthodox) [protestant](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dprotestant) [anglican](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Danglican) [adventist](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dadventist) [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) | [shia](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dshia) [sunni](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dsunni) [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) | [conservative](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dconservative) [orthodox](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dorthodox) [hasidic](https://wiki.openstreetmap.org/wiki/Tag:denomination%3Dhasidic) [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) | |
### historic_or_not
@ -339,7 +353,7 @@ This tagrendering has labels
The question is `Does this artwork serve as a memorial?`
- *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>
- <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
@ -382,7 +396,7 @@ This tagrendering has labels
The question is `Does this artwork serve as a bench?`
- *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>
- <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_
@ -497,6 +511,101 @@ This tagrendering is only visible in the popup if the following condition is met
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 shrine?`
*The name of this shrine 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 the shrine?`
*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_

View file

@ -1250,21 +1250,21 @@ This tagrendering has labels
### charge_bicycle_tube
The question is `How much does a a bicycle tube cost?`
*a bicycle tube costs {charge:bicycle_tube}* is shown if `charge` is set
*a bicycle tube costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$
### charge_bicycle_light
The question is `How much does a bicycle light cost?`
*bicycle light costs {charge:bicycle_light}* is shown if `charge` is set
*bicycle light costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$
### charge_condom
The question is `How much does a a condom cost?`
*a condom costs {charge:condom}* is shown if `charge` is set
*a condom costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$

View file

@ -146,6 +146,7 @@ This theme contains the following layers:
- [walls_and_buildings](../Layers/walls_and_buildings.md)
- [waste_basket](../Layers/waste_basket.md)
- [waste_disposal](../Layers/waste_disposal.md)
- [wayside_shrine](../Layers/wayside_shrine.md)
- [windturbine](../Layers/windturbine.md)
Available languages:

View file

@ -19,6 +19,7 @@ Available languages:
- en
- de
- uk
- cs
# Table of contents
@ -104,12 +105,12 @@ No themes use this layer
## Basic tags for this layer
Elements must match **all** of the following expressions:
Elements must match **any** 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%3Dcamp_site' target='_blank'>camp_site</a>
1. <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> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Dyes' target='_blank'>yes</a>
- <a href='https://wiki.openstreetmap.org/wiki/Key:leisure' target='_blank'>leisure</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:leisure%3Dsummer_camp' target='_blank'>summer_camp</a>
- <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' target='_blank'>group</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:group%3Dyes' target='_blank'>yes</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> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Donly' target='_blank'>only</a>) & group!=no & scout!=no
[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%5B%22group_only%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%22%5D%5B%22scout%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22leisure%22%3D%22summer_camp%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%22%5D%5B%22group%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%22%5D%5B%22group_only%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%22%5D%5B%22scout%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22camp_site%22%5D%5B%22scout%22%3D%22only%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
## Supported attributes
@ -267,9 +268,11 @@ The following options to create new points are included:
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%3Dhostel' target='_blank'>hostel</a>
1. <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> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Dyes' target='_blank'>yes</a>
1. <a href='https://wiki.openstreetmap.org/wiki/Key:group' target='_blank'>group</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:group%3Dyes' target='_blank'>yes</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> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Dyes' target='_blank'>yes</a> | <a href='https://wiki.openstreetmap.org/wiki/Key:scout' target='_blank'>scout</a>=<a href='https://wiki.openstreetmap.org/wiki/Tag:scout%3Donly' target='_blank'>only</a>
2. group!=no
3. scout!=no
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22group_only%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22scout%22%3D%22yes%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
[Execute on overpass](http://overpass-turbo.eu/?Q=%5Bout%3Ajson%5D%5Btimeout%3A90%5D%3B%28%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22group%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22group_only%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22scout%22%3D%22yes%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%20%20%20%20nwr%5B%22tourism%22%3D%22hostel%22%5D%5B%22scout%22%3D%22only%22%5D%5B%22group%22!%3D%22no%22%5D%5B%22scout%22!%3D%22no%22%5D%28%7B%7Bbbox%7D%7D%29%3B%0A%29%3Bout%20body%3B%3E%3Bout%20skel%20qt%3B)
## Supported attributes

View file

@ -135,7 +135,7 @@ This tagrendering is only visible in the popup if the following condition is met
### login
_This tagrendering has no question and is thus read-only_
*{login_button()}*
*{login_button(,)}*
### is_linked

View file

@ -276,21 +276,21 @@ This tagrendering has labels
### charge_bicycle_tube
The question is `How much does a a bicycle tube cost?`
*a bicycle tube costs {charge:bicycle_tube}* is shown if `charge` is set
*a bicycle tube costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$
### charge_bicycle_light
The question is `How much does a bicycle light cost?`
*bicycle light costs {charge:bicycle_light}* is shown if `charge` is set
*bicycle light costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$
### charge_condom
The question is `How much does a a condom cost?`
*a condom costs {charge:condom}* is shown if `charge` is set
*a condom costs {charge}* is shown if `charge` is set
This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$

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