Compare commits
44 commits
214e419e50
...
31480ceda7
Author | SHA1 | Date | |
---|---|---|---|
31480ceda7 | |||
d6d6c8cc11 | |||
fe9a93646a | |||
b3649e0f65 | |||
c1f78449f7 | |||
830cbc69e7 | |||
c5d91d7a40 | |||
d831dbc5b4 | |||
58cdaedc6a | |||
42374f6a9e | |||
fd1de1303a | |||
b2a937f4d8 | |||
9ee4d6c824 | |||
588e10cb27 | |||
290e737e0b | |||
4bd4d90867 | |||
ad1470ecbc | |||
701716572e | |||
1aec487147 | |||
4914d07f90 | |||
452cfeef13 | |||
257099b045 | |||
8b3a2ac89d | |||
f75d03cccf | |||
86da003e03 | |||
d71bdecc0c | |||
fb2fb64bdf | |||
f40ed2dd71 | |||
|
54bac19add | ||
|
2ea9821463 | ||
0ad68a8596 | |||
fc4ef65934 | |||
535e36a006 | |||
92352ed274 | |||
36f9825c73 | |||
e34ecd2f62 | |||
c559b4ae1e | |||
bdd416dbe6 | |||
093667ccea | |||
|
7c29a04f6b | ||
e24b465783 | |||
|
584dc6b5e6 | ||
|
ecd2099faf | ||
|
c00e947446 |
126 changed files with 4504 additions and 753 deletions
.forgejo/workflows
CHANGELOG.mdDocs
BuiltinIndex.md
Layers
all_vending_machine.mdartwork.mdartwork_on_wall.mdentrance.mdgroup_campsite.mdgroup_hostel.mdindoors.mdscouting_group.mdtoilet.mdvending_machine.mdvending_machine_bicycle.mdwalls_and_buildings.mdwayside_shrine.md
SpecialRenderings.mdTagInfo
mapcomplete_artwork.jsonmapcomplete_climbing.jsonmapcomplete_ghostsigns.jsonmapcomplete_indoors.jsonmapcomplete_memorials.jsonmapcomplete_nature.jsonmapcomplete_onwheels.jsonmapcomplete_playgrounds.jsonmapcomplete_scouting.jsonmapcomplete_ski.jsonmapcomplete_toilets.jsonmapcomplete_wayside_shrines.json
Themes
architecture.mdcyclofix.mdghostsigns.mdopenlovemap.mdpersonal.mdscouting.mdvelopark.mdvending_machine.mdwayside_shrines.md
wikiIndex.txtassets
layers
address
advertising
building
elevator
firepit
food
guidepost
ice_cream
item_with_image
picnic_table
playground
playground_equipment
police
postboxes
postoffices
questions
school
souvenir_coin
sports_centre
stairs
tool_library
tourism_accomodation
usersettings
vending_machine
waste_basket
wayside_shrine
themes
langs
package-lock.jsonpackage.jsonscripts
src/Logic
|
@ -8,7 +8,7 @@ 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
|
||||
|
@ -52,7 +52,7 @@ jobs:
|
|||
|
||||
- name: Zipping dist file
|
||||
run: |
|
||||
mv -f dist /tmp/${{ github.ref_name }}
|
||||
mv dist /tmp/${{ github.ref_name }}
|
||||
cd /tmp
|
||||
zip ${{ github.ref_name }}.zip -r ${{ github.ref_name }}/*
|
||||
cd -
|
||||
|
@ -60,19 +60,26 @@ jobs:
|
|||
- name: uploading file
|
||||
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 }}
|
||||
|
||||
|
|
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
@ -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.*
|
||||
|
||||
|
|
|
@ -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.*)$
|
||||
|
||||
|
|
|
@ -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_
|
||||
|
|
|
@ -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_
|
||||
|
|
|
@ -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_
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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_
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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.`
|
||||
|
|
|
@ -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.*)$
|
||||
|
||||
|
|
|
@ -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.*)$
|
||||
|
||||
|
|
|
@ -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_
|
||||
|
|
200
Docs/Layers/wayside_shrine.md
Normal file
200
Docs/Layers/wayside_shrine.md
Normal 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)
|
|
@ -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
|
||||
|
||||
|
|
|
@ -404,6 +404,185 @@
|
|||
"description": "Layer 'Artworks' 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 'Artwork') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)",
|
||||
"value": "memorial"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic=wayside_shrine with a fixed text, namely 'This artwork acts as a wayside shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork')",
|
||||
"value": "wayside_shrine"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic= with a fixed text, namely 'This artwork does not act as a wayside shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') Picking this answer will delete the key historic.",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "name",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "noname",
|
||||
"description": "Layer 'Artworks' shows noname=yes with a fixed text, namely 'This shrine does not have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'religion' (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=christian with a fixed text, namely 'This is a Christian shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "christian"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=buddhist with a fixed text, namely 'This is a Buddhist shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "buddhist"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=hindu with a fixed text, namely 'This is a Hindu shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "hindu"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=jain with a fixed text, namely 'This is a Jain shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "jain"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=jewish with a fixed text, namely 'This is a Jewish shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "jewish"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=muslim with a fixed text, namely 'This is an Islamic shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "muslim"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=pagan with a fixed text, namely 'This is a Pagan shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "pagan"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=shinto with a fixed text, namely 'This is a Shinto shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "shinto"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=sikh with a fixed text, namely 'This is a Sikh shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "sikh"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=taoist with a fixed text, namely 'This is a Taoist shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "taoist"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=zoroastrian with a fixed text, namely 'This is a Zoroastrian shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "zoroastrian"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=catholic with a fixed text, namely 'The religious subdenomination is Catholic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "catholic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=roman_catholic with a fixed text, namely 'The religious subdenomination is Roman Catholic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "roman_catholic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=orthodox with a fixed text, namely 'The religious subdenomination is Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=greek_orthodox with a fixed text, namely 'The religious subdenomination is Greek-Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "greek_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=russian_orthodox with a fixed text, namely 'The religious subdenomination is Russian-Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "russian_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=serbian_orthodox with a fixed text, namely 'The religious subdenomination is Serbian Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "serbian_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=protestant with a fixed text, namely 'The religious subdenomination is Protestant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "protestant"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=anglican with a fixed text, namely 'The religious subdenomination is Anglican' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "anglican"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=adventist with a fixed text, namely 'The religious subdenomination is Adventist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "adventist"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=evangelical with a fixed text, namely 'The religious subdenomination is evangelical' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "evangelical"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=muslim & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=shia with a fixed text, namely 'The religious subdenomination is Shia' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "shia"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=sunni with a fixed text, namely 'The religious subdenomination is Sunni' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "sunni"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=sufi with a fixed text, namely 'The religious subdenomination is Sufi' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "sufi"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=jewish & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=conservative with a fixed text, namely 'The religious subdenomination is Conservative' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "conservative"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=orthodox with a fixed text, namely 'The religious subdenomination is Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=hasidic with a fixed text, namely 'The religious subdenomination is Hasidic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "hasidic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=reform with a fixed text, namely 'The religious subdenomination is Reform' and allows to pick this as a default answer (in the mapcomplete.org theme 'Artwork') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "reform"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Artwork') (This is only shown if religion!=christian & religion!=muslim & religion!=jewish & religion~.+ & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "The MapComplete theme Artwork has a layer Memorials showing features with this tag"
|
||||
|
|
|
@ -2432,13 +2432,18 @@
|
|||
"value": "dedicated_room"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=yes with a fixed text, namely 'There is a person supervising these toilets during (most of) the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (access=yes | access=))",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=interval with a fixed text, namely 'There is a person supervising these toilets, but they are present only during certain times of the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (access=yes | access=))",
|
||||
"value": "interval"
|
||||
},
|
||||
{
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=no with a fixed text, namely 'These toilets are not supervised' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if (access=yes | access=))",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
|
@ -2451,6 +2456,41 @@
|
|||
"description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if toilets:position!=urinal)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=electric_hand_dryer with a fixed text, namely 'Electric hand dryers are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "electric_hand_dryer"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=paper_towel with a fixed text, namely 'Paper towels are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "paper_towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel_cabinet with a fixed text, namely 'A towel roll cabinet is available for drying hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel_cabinet"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel with a fixed text, namely 'A fabric towel available to dry your hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=no with a fixed text, namely 'There are no hand drying facilities available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Climbing gyms, clubs and spots') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "description",
|
||||
"description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Climbing gyms, clubs and spots')"
|
||||
|
|
|
@ -797,6 +797,185 @@
|
|||
"key": "not:historic",
|
||||
"description": "Layer 'Artworks' 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 'Ghost Signs') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)",
|
||||
"value": "memorial"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic=wayside_shrine with a fixed text, namely 'This artwork acts as a wayside shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs')",
|
||||
"value": "wayside_shrine"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic= with a fixed text, namely 'This artwork does not act as a wayside shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') Picking this answer will delete the key historic.",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "name",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "noname",
|
||||
"description": "Layer 'Artworks' shows noname=yes with a fixed text, namely 'This shrine does not have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'religion' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=christian with a fixed text, namely 'This is a Christian shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "christian"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=buddhist with a fixed text, namely 'This is a Buddhist shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "buddhist"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=hindu with a fixed text, namely 'This is a Hindu shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "hindu"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=jain with a fixed text, namely 'This is a Jain shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "jain"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=jewish with a fixed text, namely 'This is a Jewish shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "jewish"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=muslim with a fixed text, namely 'This is an Islamic shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "muslim"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=pagan with a fixed text, namely 'This is a Pagan shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "pagan"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=shinto with a fixed text, namely 'This is a Shinto shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "shinto"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=sikh with a fixed text, namely 'This is a Sikh shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "sikh"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=taoist with a fixed text, namely 'This is a Taoist shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "taoist"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=zoroastrian with a fixed text, namely 'This is a Zoroastrian shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "zoroastrian"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=catholic with a fixed text, namely 'The religious subdenomination is Catholic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "catholic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=roman_catholic with a fixed text, namely 'The religious subdenomination is Roman Catholic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "roman_catholic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=orthodox with a fixed text, namely 'The religious subdenomination is Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=greek_orthodox with a fixed text, namely 'The religious subdenomination is Greek-Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "greek_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=russian_orthodox with a fixed text, namely 'The religious subdenomination is Russian-Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "russian_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=serbian_orthodox with a fixed text, namely 'The religious subdenomination is Serbian Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "serbian_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=protestant with a fixed text, namely 'The religious subdenomination is Protestant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "protestant"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=anglican with a fixed text, namely 'The religious subdenomination is Anglican' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "anglican"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=adventist with a fixed text, namely 'The religious subdenomination is Adventist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "adventist"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=evangelical with a fixed text, namely 'The religious subdenomination is evangelical' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "evangelical"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=muslim & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=shia with a fixed text, namely 'The religious subdenomination is Shia' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "shia"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=sunni with a fixed text, namely 'The religious subdenomination is Sunni' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "sunni"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=sufi with a fixed text, namely 'The religious subdenomination is Sufi' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "sufi"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=jewish & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=conservative with a fixed text, namely 'The religious subdenomination is Conservative' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "conservative"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=orthodox with a fixed text, namely 'The religious subdenomination is Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=hasidic with a fixed text, namely 'The religious subdenomination is Hasidic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "hasidic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=reform with a fixed text, namely 'The religious subdenomination is Reform' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "reform"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Ghost Signs') (This is only shown if religion!=christian & religion!=muslim & religion!=jewish & religion~.+ & historic=wayside_shrine)"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -389,16 +389,6 @@
|
|||
"description": "Layer 'Indoors' shows changing_table:location=dedicated_room with a fixed text, namely 'A changing table is in a dedicated room' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & changing_table=yes)",
|
||||
"value": "dedicated_room"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Indoors' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Indoors' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:paper_supplied",
|
||||
"description": "Layer 'Indoors' shows toilets:paper_supplied=yes with a fixed text, namely 'This toilet is equipped with toilet paper' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & toilets:position!=urinal)",
|
||||
|
@ -409,6 +399,16 @@
|
|||
"description": "Layer 'Indoors' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets & toilets:position!=urinal)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Indoors' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Indoors' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') (This is only shown if amenity=toilets)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "highway",
|
||||
"description": "The MapComplete theme Indoors has a layer Pedestrian paths showing features with this tag",
|
||||
|
@ -801,6 +801,15 @@
|
|||
"key": "kerb:height",
|
||||
"description": "Layer 'Entrance' shows kerb:height=0 with a fixed text, namely 'This door does not have a kerb' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors')",
|
||||
"value": "0"
|
||||
},
|
||||
{
|
||||
"key": "ref",
|
||||
"description": "Layer 'Entrance' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'Indoors')"
|
||||
},
|
||||
{
|
||||
"key": "ref",
|
||||
"description": "Layer 'Entrance' shows ref= with a fixed text, namely 'No reference number' and allows to pick this as a default answer (in the mapcomplete.org theme 'Indoors') Picking this answer will delete the key ref.",
|
||||
"value": ""
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1074,6 +1074,185 @@
|
|||
"key": "not:historic",
|
||||
"description": "Layer 'Artworks' 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 'Memorials') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)",
|
||||
"value": "memorial"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic=wayside_shrine with a fixed text, namely 'This artwork acts as a wayside shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials')",
|
||||
"value": "wayside_shrine"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic= with a fixed text, namely 'This artwork does not act as a wayside shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') Picking this answer will delete the key historic.",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "name",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "noname",
|
||||
"description": "Layer 'Artworks' shows noname=yes with a fixed text, namely 'This shrine does not have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'religion' (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=christian with a fixed text, namely 'This is a Christian shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "christian"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=buddhist with a fixed text, namely 'This is a Buddhist shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "buddhist"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=hindu with a fixed text, namely 'This is a Hindu shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "hindu"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=jain with a fixed text, namely 'This is a Jain shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "jain"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=jewish with a fixed text, namely 'This is a Jewish shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "jewish"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=muslim with a fixed text, namely 'This is an Islamic shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "muslim"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=pagan with a fixed text, namely 'This is a Pagan shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "pagan"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=shinto with a fixed text, namely 'This is a Shinto shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "shinto"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=sikh with a fixed text, namely 'This is a Sikh shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "sikh"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=taoist with a fixed text, namely 'This is a Taoist shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "taoist"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=zoroastrian with a fixed text, namely 'This is a Zoroastrian shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "zoroastrian"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=catholic with a fixed text, namely 'The religious subdenomination is Catholic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "catholic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=roman_catholic with a fixed text, namely 'The religious subdenomination is Roman Catholic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "roman_catholic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=orthodox with a fixed text, namely 'The religious subdenomination is Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=greek_orthodox with a fixed text, namely 'The religious subdenomination is Greek-Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "greek_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=russian_orthodox with a fixed text, namely 'The religious subdenomination is Russian-Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "russian_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=serbian_orthodox with a fixed text, namely 'The religious subdenomination is Serbian Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "serbian_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=protestant with a fixed text, namely 'The religious subdenomination is Protestant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "protestant"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=anglican with a fixed text, namely 'The religious subdenomination is Anglican' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "anglican"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=adventist with a fixed text, namely 'The religious subdenomination is Adventist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "adventist"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=evangelical with a fixed text, namely 'The religious subdenomination is evangelical' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "evangelical"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=muslim & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=shia with a fixed text, namely 'The religious subdenomination is Shia' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "shia"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=sunni with a fixed text, namely 'The religious subdenomination is Sunni' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "sunni"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=sufi with a fixed text, namely 'The religious subdenomination is Sufi' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "sufi"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=jewish & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=conservative with a fixed text, namely 'The religious subdenomination is Conservative' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "conservative"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=orthodox with a fixed text, namely 'The religious subdenomination is Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=hasidic with a fixed text, namely 'The religious subdenomination is Hasidic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "hasidic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=reform with a fixed text, namely 'The religious subdenomination is Reform' and allows to pick this as a default answer (in the mapcomplete.org theme 'Memorials') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "reform"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Memorials') (This is only shown if religion!=christian & religion!=muslim & religion!=jewish & religion~.+ & historic=wayside_shrine)"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1360,13 +1360,18 @@
|
|||
"value": "dedicated_room"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=yes with a fixed text, namely 'There is a person supervising these toilets during (most of) the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if (access=yes | access=))",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=interval with a fixed text, namely 'There is a person supervising these toilets, but they are present only during certain times of the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if (access=yes | access=))",
|
||||
"value": "interval"
|
||||
},
|
||||
{
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=no with a fixed text, namely 'These toilets are not supervised' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if (access=yes | access=))",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
|
@ -1379,6 +1384,41 @@
|
|||
"description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if toilets:position!=urinal)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature')",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=electric_hand_dryer with a fixed text, namely 'Electric hand dryers are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "electric_hand_dryer"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=paper_towel with a fixed text, namely 'Paper towels are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "paper_towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel_cabinet with a fixed text, namely 'A towel roll cabinet is available for drying hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel_cabinet"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel with a fixed text, namely 'A fabric towel available to dry your hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=no with a fixed text, namely 'There are no hand drying facilities available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Into nature') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "description",
|
||||
"description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Into nature')"
|
||||
|
|
|
@ -557,6 +557,15 @@
|
|||
"description": "Layer 'Entrance' shows kerb:height=0 with a fixed text, namely 'This door does not have a kerb' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')",
|
||||
"value": "0"
|
||||
},
|
||||
{
|
||||
"key": "ref",
|
||||
"description": "Layer 'Entrance' shows and asks freeform values for key 'ref' (in the mapcomplete.org theme 'OnWheels')"
|
||||
},
|
||||
{
|
||||
"key": "ref",
|
||||
"description": "Layer 'Entrance' shows ref= with a fixed text, namely 'No reference number' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') Picking this answer will delete the key ref.",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"description": "The MapComplete theme OnWheels has a layer Restaurants and fast food showing features with this tag",
|
||||
|
@ -3201,13 +3210,18 @@
|
|||
"value": "dedicated_room"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=yes with a fixed text, namely 'There is a person supervising these toilets during (most of) the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (access=yes | access=))",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=interval with a fixed text, namely 'There is a person supervising these toilets, but they are present only during certain times of the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (access=yes | access=))",
|
||||
"value": "interval"
|
||||
},
|
||||
{
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=no with a fixed text, namely 'These toilets are not supervised' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if (access=yes | access=))",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
|
@ -3220,6 +3234,41 @@
|
|||
"description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:position!=urinal)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels')",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=electric_hand_dryer with a fixed text, namely 'Electric hand dryers are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "electric_hand_dryer"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=paper_towel with a fixed text, namely 'Paper towels are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "paper_towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel_cabinet with a fixed text, namely 'A towel roll cabinet is available for drying hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel_cabinet"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel with a fixed text, namely 'A fabric towel available to dry your hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=no with a fixed text, namely 'There are no hand drying facilities available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'OnWheels') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "description",
|
||||
"description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'OnWheels')"
|
||||
|
|
|
@ -1113,13 +1113,18 @@
|
|||
"value": "dedicated_room"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=yes with a fixed text, namely 'There is a person supervising these toilets during (most of) the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if (access=yes | access=))",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=interval with a fixed text, namely 'There is a person supervising these toilets, but they are present only during certain times of the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if (access=yes | access=))",
|
||||
"value": "interval"
|
||||
},
|
||||
{
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=no with a fixed text, namely 'These toilets are not supervised' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if (access=yes | access=))",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
|
@ -1132,6 +1137,41 @@
|
|||
"description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:position!=urinal)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds')",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=electric_hand_dryer with a fixed text, namely 'Electric hand dryers are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "electric_hand_dryer"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=paper_towel with a fixed text, namely 'Paper towels are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "paper_towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel_cabinet with a fixed text, namely 'A towel roll cabinet is available for drying hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel_cabinet"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel with a fixed text, namely 'A fabric towel available to dry your hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=no with a fixed text, namely 'There are no hand drying facilities available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Playgrounds') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "description",
|
||||
"description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Playgrounds')"
|
||||
|
|
|
@ -55,10 +55,19 @@
|
|||
"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')"
|
||||
},
|
||||
{
|
||||
"key": "start_date",
|
||||
"description": "Layer 'Scouting groups' shows and asks freeform values for key 'start_date' (in the mapcomplete.org theme 'Scouting groups')"
|
||||
},
|
||||
{
|
||||
"key": "contact:mastodon",
|
||||
"description": "Layer 'Scouting groups' shows and asks freeform values for key 'contact:mastodon' (in the mapcomplete.org theme 'Scouting groups')"
|
||||
},
|
||||
{
|
||||
"key": "leisure",
|
||||
"description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag",
|
||||
"value": "summer_camp"
|
||||
},
|
||||
{
|
||||
"key": "tourism",
|
||||
"description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag",
|
||||
|
@ -69,6 +78,16 @@
|
|||
"description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "scout",
|
||||
"description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag",
|
||||
"value": "only"
|
||||
},
|
||||
{
|
||||
"key": "group",
|
||||
"description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "group_only",
|
||||
"description": "The MapComplete theme Scouting groups has a layer Group Campsites showing features with this tag",
|
||||
|
@ -202,6 +221,16 @@
|
|||
"description": "The MapComplete theme Scouting groups has a layer Hostels for groups and scouts showing features with this tag",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "scout",
|
||||
"description": "The MapComplete theme Scouting groups has a layer Hostels for groups and scouts showing features with this tag",
|
||||
"value": "only"
|
||||
},
|
||||
{
|
||||
"key": "group",
|
||||
"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",
|
||||
|
|
|
@ -682,13 +682,18 @@
|
|||
"value": "dedicated_room"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=yes with a fixed text, namely 'There is a person supervising these toilets during (most of) the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if (access=yes | access=))",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=interval with a fixed text, namely 'There is a person supervising these toilets, but they are present only during certain times of the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if (access=yes | access=))",
|
||||
"value": "interval"
|
||||
},
|
||||
{
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=no with a fixed text, namely 'These toilets are not supervised' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if (access=yes | access=))",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
|
@ -701,6 +706,41 @@
|
|||
"description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if toilets:position!=urinal)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways')",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=electric_hand_dryer with a fixed text, namely 'Electric hand dryers are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "electric_hand_dryer"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=paper_towel with a fixed text, namely 'Paper towels are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "paper_towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel_cabinet with a fixed text, namely 'A towel roll cabinet is available for drying hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel_cabinet"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel with a fixed text, namely 'A fabric towel available to dry your hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=no with a fixed text, namely 'There are no hand drying facilities available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Ski pistes and aerialways') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "description",
|
||||
"description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Ski pistes and aerialways')"
|
||||
|
|
|
@ -278,13 +278,18 @@
|
|||
"value": "dedicated_room"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=yes with a fixed text, namely 'There is a person supervising these toilets during (most of) the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if (access=yes | access=))",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')",
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=interval with a fixed text, namely 'There is a person supervising these toilets, but they are present only during certain times of the opening hours' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if (access=yes | access=))",
|
||||
"value": "interval"
|
||||
},
|
||||
{
|
||||
"key": "supervised",
|
||||
"description": "Layer 'Toilets' shows supervised=no with a fixed text, namely 'These toilets are not supervised' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if (access=yes | access=))",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
|
@ -297,6 +302,41 @@
|
|||
"description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:position!=urinal)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'These toilets have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "toilets:handwashing",
|
||||
"description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'These toilets <b>don't</b> have a sink to wash your hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets')",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=electric_hand_dryer with a fixed text, namely 'Electric hand dryers are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "electric_hand_dryer"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=paper_towel with a fixed text, namely 'Paper towels are available for drying hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "paper_towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel_cabinet with a fixed text, namely 'A towel roll cabinet is available for drying hands' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel_cabinet"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=towel with a fixed text, namely 'A fabric towel available to dry your hands.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "towel"
|
||||
},
|
||||
{
|
||||
"key": "toilets:hands_drying",
|
||||
"description": "Layer 'Toilets' shows toilets:hands_drying=no with a fixed text, namely 'There are no hand drying facilities available.' and allows to pick this as a default answer (in the mapcomplete.org theme 'Public toilets') (This is only shown if toilets:handwashing=yes)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "description",
|
||||
"description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the mapcomplete.org theme 'Public toilets')"
|
||||
|
|
814
Docs/TagInfo/mapcomplete_wayside_shrines.json
Normal file
814
Docs/TagInfo/mapcomplete_wayside_shrines.json
Normal file
|
@ -0,0 +1,814 @@
|
|||
{
|
||||
"data_format": 1,
|
||||
"project": {
|
||||
"name": "MapComplete Wayside shrines",
|
||||
"description": "This map shows shrines 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": "pietervdvn@posteo.net"
|
||||
},
|
||||
"tags": [
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "The MapComplete theme Wayside shrines has a layer Wayside Shrines showing features with this tag",
|
||||
"value": "wayside_shrine"
|
||||
},
|
||||
{
|
||||
"key": "id",
|
||||
"description": "Layer 'Wayside Shrines' 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 'Wayside shrines') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
|
||||
},
|
||||
{
|
||||
"key": "image",
|
||||
"description": "The layer 'Wayside Shrines allows to upload images and adds them under the 'panoramax'-tag (and 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 'Wayside Shrines allows to upload images and adds them under the 'panoramax'-tag (and 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 'Wayside Shrines allows to upload images and adds them under the 'panoramax'-tag (and 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 'Wayside Shrines allows to upload images and adds them under the 'panoramax'-tag (and 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 'Wayside Shrines allows to upload images and adds them under the 'panoramax'-tag (and 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": "Layer 'Wayside Shrines' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Wayside shrines')"
|
||||
},
|
||||
{
|
||||
"key": "noname",
|
||||
"description": "Layer 'Wayside Shrines' shows noname=yes with a fixed text, namely 'This shrine does not have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows and asks freeform values for key 'religion' (in the mapcomplete.org theme 'Wayside shrines')"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=christian with a fixed text, namely 'This is a Christian shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "christian"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=buddhist with a fixed text, namely 'This is a Buddhist shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "buddhist"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=hindu with a fixed text, namely 'This is a Hindu shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "hindu"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=jain with a fixed text, namely 'This is a Jain shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "jain"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=jewish with a fixed text, namely 'This is a Jewish shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "jewish"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=muslim with a fixed text, namely 'This is an Islamic shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "muslim"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=pagan with a fixed text, namely 'This is a Pagan shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "pagan"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=shinto with a fixed text, namely 'This is a Shinto shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "shinto"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=sikh with a fixed text, namely 'This is a Sikh shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "sikh"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=taoist with a fixed text, namely 'This is a Taoist shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "taoist"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Wayside Shrines' shows religion=zoroastrian with a fixed text, namely 'This is a Zoroastrian shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "zoroastrian"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=catholic with a fixed text, namely 'The religious subdenomination is Catholic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)",
|
||||
"value": "catholic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=roman_catholic with a fixed text, namely 'The religious subdenomination is Roman Catholic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)",
|
||||
"value": "roman_catholic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=orthodox with a fixed text, namely 'The religious subdenomination is Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)",
|
||||
"value": "orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=greek_orthodox with a fixed text, namely 'The religious subdenomination is Greek-Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)",
|
||||
"value": "greek_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=russian_orthodox with a fixed text, namely 'The religious subdenomination is Russian-Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)",
|
||||
"value": "russian_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=serbian_orthodox with a fixed text, namely 'The religious subdenomination is Serbian Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)",
|
||||
"value": "serbian_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=protestant with a fixed text, namely 'The religious subdenomination is Protestant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)",
|
||||
"value": "protestant"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=anglican with a fixed text, namely 'The religious subdenomination is Anglican' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)",
|
||||
"value": "anglican"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=adventist with a fixed text, namely 'The religious subdenomination is Adventist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)",
|
||||
"value": "adventist"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=evangelical with a fixed text, namely 'The religious subdenomination is evangelical' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian)",
|
||||
"value": "evangelical"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=muslim)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=shia with a fixed text, namely 'The religious subdenomination is Shia' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=muslim)",
|
||||
"value": "shia"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=sunni with a fixed text, namely 'The religious subdenomination is Sunni' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=muslim)",
|
||||
"value": "sunni"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=sufi with a fixed text, namely 'The religious subdenomination is Sufi' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=muslim)",
|
||||
"value": "sufi"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=jewish)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=conservative with a fixed text, namely 'The religious subdenomination is Conservative' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=jewish)",
|
||||
"value": "conservative"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=orthodox with a fixed text, namely 'The religious subdenomination is Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=jewish)",
|
||||
"value": "orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=hasidic with a fixed text, namely 'The religious subdenomination is Hasidic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=jewish)",
|
||||
"value": "hasidic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows denomination=reform with a fixed text, namely 'The religious subdenomination is Reform' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=jewish)",
|
||||
"value": "reform"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Wayside Shrines' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion!=christian & religion!=muslim & religion!=jewish & religion~.+)"
|
||||
},
|
||||
{
|
||||
"key": "level",
|
||||
"description": "Layer 'Wayside Shrines' shows and asks freeform values for key 'level' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if repeat_on=)"
|
||||
},
|
||||
{
|
||||
"key": "location",
|
||||
"description": "Layer 'Wayside Shrines' shows location=underground with a fixed text, namely 'Located underground' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if repeat_on=)",
|
||||
"value": "underground"
|
||||
},
|
||||
{
|
||||
"key": "level",
|
||||
"description": "Layer 'Wayside Shrines' 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 'Wayside shrines') (This is only shown if repeat_on=)",
|
||||
"value": "0"
|
||||
},
|
||||
{
|
||||
"key": "level",
|
||||
"description": "Layer 'Wayside Shrines' shows level= with a fixed text, namely 'Located on the ground floor' (in the mapcomplete.org theme 'Wayside shrines') Picking this answer will delete the key level. (This is only shown if repeat_on=)",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "level",
|
||||
"description": "Layer 'Wayside Shrines' 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 'Wayside shrines') (This is only shown if repeat_on=)",
|
||||
"value": "1"
|
||||
},
|
||||
{
|
||||
"key": "level",
|
||||
"description": "Layer 'Wayside Shrines' 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 'Wayside shrines') (This is only shown if repeat_on=)",
|
||||
"value": "-1"
|
||||
},
|
||||
{
|
||||
"key": "tourism",
|
||||
"description": "The MapComplete theme Wayside shrines has a layer Artworks showing features with this tag",
|
||||
"value": "artwork"
|
||||
},
|
||||
{
|
||||
"key": "id",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if _backend~.+ & _last_edit:passed_time<300 & (_version_number= | _version_number=1))"
|
||||
},
|
||||
{
|
||||
"key": "image",
|
||||
"description": "The layer 'Artworks allows to upload images and adds them under the 'panoramax'-tag (and 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 'Artworks allows to upload images and adds them under the 'panoramax'-tag (and 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 'Artworks allows to upload images and adds them under the 'panoramax'-tag (and 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 'Artworks allows to upload images and adds them under the 'panoramax'-tag (and 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 'Artworks allows to upload images and adds them under the 'panoramax'-tag (and 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": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'artwork_type' (in the mapcomplete.org theme 'Wayside shrines')"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "architecture"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "mural"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "painting"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "sculpture"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "statue"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "bust"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "stone"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "installation"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "graffiti"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "relief"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines')",
|
||||
"value": "azulejo"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "tilework"
|
||||
},
|
||||
{
|
||||
"key": "artwork_type",
|
||||
"description": "Layer 'Artworks' shows artwork_type=woodcarving with a fixed text, namely 'Woodcarving' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "woodcarving"
|
||||
},
|
||||
{
|
||||
"key": "artist:wikidata",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'artist:wikidata' (in the mapcomplete.org theme 'Wayside shrines')"
|
||||
},
|
||||
{
|
||||
"key": "artist_name",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'artist_name' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if artist:wikidata=)"
|
||||
},
|
||||
{
|
||||
"key": "website",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'website' (in the mapcomplete.org theme 'Wayside shrines')"
|
||||
},
|
||||
{
|
||||
"key": "wikidata",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'wikidata' (in the mapcomplete.org theme 'Wayside shrines')"
|
||||
},
|
||||
{
|
||||
"key": "wikipedia",
|
||||
"description": "Layer 'Artworks' shows wikipedia~.+ with a fixed text, namely '{wikipedia():max-height:25rem}' (in the mapcomplete.org theme 'Wayside shrines')"
|
||||
},
|
||||
{
|
||||
"key": "wikidata",
|
||||
"description": "Layer 'Artworks' shows wikidata= with a fixed text, namely 'No Wikipedia page has been linked yet' (in the mapcomplete.org theme 'Wayside shrines') Picking this answer will delete the key wikidata.",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "subject:wikidata",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'subject:wikidata' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if subject:wikidata~.+)"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic=memorial with a fixed text, namely 'This artwork also serves as a memorial' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "memorial"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic= with a fixed text, namely 'This artwork does not serve as a memorial' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') Picking this answer will delete the key historic.",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'memorial' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=statue with a fixed text, namely 'This is a statue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "statue"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=plaque with a fixed text, namely 'This is a plaque' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "plaque"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=bench with a fixed text, namely 'This is a commemorative bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "bench"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=ghost_bike with a fixed text, namely 'This is a ghost bike - a bicycle painted white to remember a cyclist whom deceased because of a car crash' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "ghost_bike"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=stolperstein with a fixed text, namely 'This is a stolperstein (stumbing stone)' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "stolperstein"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=stele with a fixed text, namely 'This is a stele' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "stele"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=stone with a fixed text, namely 'This is a memorial stone' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "stone"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=bust with a fixed text, namely 'This is a bust' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "bust"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=sculpture with a fixed text, namely 'This is a sculpture' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "sculpture"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=obelisk with a fixed text, namely 'This is an obelisk' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "obelisk"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=cross with a fixed text, namely 'This is a cross' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "cross"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=blue_plaque with a fixed text, namely 'This is a blue plaque' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "blue_plaque"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=tank with a fixed text, namely 'This is a historic tank, permanently placed in public space as memorial' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "tank"
|
||||
},
|
||||
{
|
||||
"key": "memorial",
|
||||
"description": "Layer 'Artworks' shows memorial=tree with a fixed text, namely 'This is a memorial tree' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "tree"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic=tomb with a fixed text, namely 'This is a gravestone; the person is buried here' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=memorial)",
|
||||
"value": "tomb"
|
||||
},
|
||||
{
|
||||
"key": "inscription",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if memorial!=bench & historic=memorial)"
|
||||
},
|
||||
{
|
||||
"key": "not:inscription",
|
||||
"description": "Layer 'Artworks' shows not:inscription=yes with a fixed text, namely 'This memorial does not have an inscription' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if memorial!=bench & historic=memorial)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"description": "Layer 'Artworks' shows amenity=bench with a fixed text, namely 'This artwork also serves as a bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "bench"
|
||||
},
|
||||
{
|
||||
"key": "amenity",
|
||||
"description": "Layer 'Artworks' shows amenity= with a fixed text, namely 'This artwork does not serve as a bench' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') Picking this answer will delete the key amenity.",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "backrest",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "two_sided",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "backrest",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "backrest",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "armrest",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "armrest",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "seats",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'seats' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)"
|
||||
},
|
||||
{
|
||||
"key": "seats:separated",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "no"
|
||||
},
|
||||
{
|
||||
"key": "material",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'material' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)"
|
||||
},
|
||||
{
|
||||
"key": "material",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "wood"
|
||||
},
|
||||
{
|
||||
"key": "material",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "metal"
|
||||
},
|
||||
{
|
||||
"key": "material",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "stone"
|
||||
},
|
||||
{
|
||||
"key": "material",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "concrete"
|
||||
},
|
||||
{
|
||||
"key": "material",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "plastic"
|
||||
},
|
||||
{
|
||||
"key": "material",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "steel"
|
||||
},
|
||||
{
|
||||
"key": "direction",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'direction' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if two_sided!=yes & amenity=bench)"
|
||||
},
|
||||
{
|
||||
"key": "colour",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'colour' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)"
|
||||
},
|
||||
{
|
||||
"key": "colour",
|
||||
"description": "Layer 'Artworks' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "brown"
|
||||
},
|
||||
{
|
||||
"key": "colour",
|
||||
"description": "Layer 'Artworks' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "green"
|
||||
},
|
||||
{
|
||||
"key": "colour",
|
||||
"description": "Layer 'Artworks' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "gray"
|
||||
},
|
||||
{
|
||||
"key": "colour",
|
||||
"description": "Layer 'Artworks' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "white"
|
||||
},
|
||||
{
|
||||
"key": "colour",
|
||||
"description": "Layer 'Artworks' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "red"
|
||||
},
|
||||
{
|
||||
"key": "colour",
|
||||
"description": "Layer 'Artworks' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "black"
|
||||
},
|
||||
{
|
||||
"key": "colour",
|
||||
"description": "Layer 'Artworks' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "blue"
|
||||
},
|
||||
{
|
||||
"key": "colour",
|
||||
"description": "Layer 'Artworks' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "yellow"
|
||||
},
|
||||
{
|
||||
"key": "survey:date",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'survey:date' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)"
|
||||
},
|
||||
{
|
||||
"key": "survey:date",
|
||||
"description": "Layer 'Artworks' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') Picking this answer will delete the key survey:date. (This is only shown if amenity=bench)",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "inscription",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'inscription' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if amenity=bench)"
|
||||
},
|
||||
{
|
||||
"key": "not:inscription",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if amenity=bench)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "inscription",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') Picking this answer will delete the key inscription. (This is only shown if amenity=bench)",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)",
|
||||
"value": "memorial"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') Picking this answer will delete the key historic. (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "not:historic",
|
||||
"description": "Layer 'Artworks' 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 'Wayside shrines') (This is only shown if (historic=memorial | inscription~.+ | memorial=bench | tourism=artwork) & amenity=bench)",
|
||||
"value": "memorial"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic=wayside_shrine with a fixed text, namely 'This artwork acts as a wayside shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines')",
|
||||
"value": "wayside_shrine"
|
||||
},
|
||||
{
|
||||
"key": "historic",
|
||||
"description": "Layer 'Artworks' shows historic= with a fixed text, namely 'This artwork does not act as a wayside shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') Picking this answer will delete the key historic.",
|
||||
"value": ""
|
||||
},
|
||||
{
|
||||
"key": "name",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'name' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "noname",
|
||||
"description": "Layer 'Artworks' shows noname=yes with a fixed text, namely 'This shrine does not have a name' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "yes"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'religion' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=christian with a fixed text, namely 'This is a Christian shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "christian"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=buddhist with a fixed text, namely 'This is a Buddhist shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "buddhist"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=hindu with a fixed text, namely 'This is a Hindu shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "hindu"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=jain with a fixed text, namely 'This is a Jain shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "jain"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=jewish with a fixed text, namely 'This is a Jewish shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "jewish"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=muslim with a fixed text, namely 'This is an Islamic shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "muslim"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=pagan with a fixed text, namely 'This is a Pagan shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "pagan"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=shinto with a fixed text, namely 'This is a Shinto shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "shinto"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=sikh with a fixed text, namely 'This is a Sikh shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "sikh"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=taoist with a fixed text, namely 'This is a Taoist shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "taoist"
|
||||
},
|
||||
{
|
||||
"key": "religion",
|
||||
"description": "Layer 'Artworks' shows religion=zoroastrian with a fixed text, namely 'This is a Zoroastrian shrine' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if historic=wayside_shrine)",
|
||||
"value": "zoroastrian"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=catholic with a fixed text, namely 'The religious subdenomination is Catholic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "catholic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=roman_catholic with a fixed text, namely 'The religious subdenomination is Roman Catholic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "roman_catholic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=orthodox with a fixed text, namely 'The religious subdenomination is Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=greek_orthodox with a fixed text, namely 'The religious subdenomination is Greek-Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "greek_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=russian_orthodox with a fixed text, namely 'The religious subdenomination is Russian-Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "russian_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=serbian_orthodox with a fixed text, namely 'The religious subdenomination is Serbian Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "serbian_orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=protestant with a fixed text, namely 'The religious subdenomination is Protestant' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "protestant"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=anglican with a fixed text, namely 'The religious subdenomination is Anglican' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "anglican"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=adventist with a fixed text, namely 'The religious subdenomination is Adventist' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "adventist"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=evangelical with a fixed text, namely 'The religious subdenomination is evangelical' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=christian & historic=wayside_shrine)",
|
||||
"value": "evangelical"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=muslim & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=shia with a fixed text, namely 'The religious subdenomination is Shia' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "shia"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=sunni with a fixed text, namely 'The religious subdenomination is Sunni' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "sunni"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=sufi with a fixed text, namely 'The religious subdenomination is Sufi' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=muslim & historic=wayside_shrine)",
|
||||
"value": "sufi"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=jewish & historic=wayside_shrine)"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=conservative with a fixed text, namely 'The religious subdenomination is Conservative' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "conservative"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=orthodox with a fixed text, namely 'The religious subdenomination is Orthodox' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "orthodox"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=hasidic with a fixed text, namely 'The religious subdenomination is Hasidic' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "hasidic"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows denomination=reform with a fixed text, namely 'The religious subdenomination is Reform' and allows to pick this as a default answer (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion=jewish & historic=wayside_shrine)",
|
||||
"value": "reform"
|
||||
},
|
||||
{
|
||||
"key": "denomination",
|
||||
"description": "Layer 'Artworks' shows and asks freeform values for key 'denomination' (in the mapcomplete.org theme 'Wayside shrines') (This is only shown if religion!=christian & religion!=muslim & religion!=jewish & religion~.+ & historic=wayside_shrine)"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -16,6 +16,8 @@ Available languages:
|
|||
- en
|
||||
- de
|
||||
- zh_Hant
|
||||
- cs
|
||||
- uk
|
||||
|
||||
# Table of contents
|
||||
|
||||
|
|
|
@ -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.*)$
|
||||
|
||||
|
|
|
@ -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_
|
||||
|
|
|
@ -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.*)$
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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.*)$
|
||||
|
||||
|
|
23
Docs/Themes/wayside_shrines.md
Normal file
23
Docs/Themes/wayside_shrines.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
[//]: # (WARNING: this file is automatically generated. Please find the sources at the bottom and edit those sources)
|
||||
|
||||
## Wayside shrines ( [wayside_shrines](https://mapcomplete.org/wayside_shrines) )
|
||||
_This document details some technical information about this MapComplete theme, mostly about the attributes used in the theme. Various links point toward more information about the attributes, e.g. to the OpenStreetMap-wiki, to TagInfo or tools creating statistics_
|
||||
The theme introduction reads:
|
||||
|
||||
> This map shows shrines found on the side of roads and paths, and allows adding new ones
|
||||
|
||||
This theme contains the following layers:
|
||||
|
||||
- [wayside_shrine](../Layers/wayside_shrine.md)
|
||||
- [artwork](../Layers/artwork.md)
|
||||
- [walls_and_buildings](../Layers/walls_and_buildings.md)
|
||||
|
||||
Available languages:
|
||||
|
||||
- en
|
||||
|
||||
# Layers defined in this theme configuration file
|
||||
These layers can not be reused in different themes.
|
||||
|
||||
|
||||
This document is autogenerated from [assets/themes/wayside_shrines/wayside_shrines.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/themes/wayside_shrines/wayside_shrines.json)
|
|
@ -193,7 +193,7 @@
|
|||
{{service_item
|
||||
|name= [https://mapcomplete.org/architecture architecture]
|
||||
|region= Worldwide
|
||||
|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:zh_Hant|en}}
|
||||
|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:zh_Hant|en}}, {{#language:cs|en}}, {{#language:uk|en}}
|
||||
|descr= A MapComplete theme: A map showing the archetectural style of buildings
|
||||
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|
||||
|image= MapComplete_Screenshot.png
|
||||
|
@ -591,7 +591,7 @@ The position of a signpost can be used by a hiker/biker/rider/s…
|
|||
{{service_item
|
||||
|name= [https://mapcomplete.org/scouting scouting]
|
||||
|region= Worldwide
|
||||
|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:uk|en}}
|
||||
|lang= {{#language:en|en}}, {{#language:de|en}}, {{#language:uk|en}}, {{#language:cs|en}}
|
||||
|descr= A MapComplete theme: A scouting group is a social youth movement with a heavy emphasis on the outdoors
|
||||
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|
||||
|image= MapComplete_Screenshot.png
|
||||
|
@ -651,4 +651,13 @@ The position of a signpost can be used by a hiker/biker/rider/s…
|
|||
|image= MapComplete_Screenshot.png
|
||||
|genre= POI, editor, waste_basket
|
||||
}}
|
||||
{{service_item
|
||||
|name= [https://mapcomplete.org/wayside_shrines wayside_shrines]
|
||||
|region= Worldwide
|
||||
|lang= {{#language:en|en}}
|
||||
|descr= A MapComplete theme: This map shows shrines found on the side of roads and paths, and allows adding new ones
|
||||
|material= {{yes|[https://mapcomplete.org/ Yes]}}
|
||||
|image= MapComplete_Screenshot.png
|
||||
|genre= POI, editor, wayside_shrines
|
||||
}}
|
||||
|}
|
|
@ -173,7 +173,9 @@
|
|||
"en": "{addr:street} <b>{addr:housenumber}</b> {addr:unit}",
|
||||
"ca": "{addr:street} <b>{addr:housenumber}</b> {addr:unit}",
|
||||
"de": "{addr:street} <b>{addr:housenumber}</b> {addr:unit}",
|
||||
"cs": "{addr:street} <b>{addr:housenumber}</b> {addr:unit}"
|
||||
"cs": "{addr:street} <b>{addr:housenumber}</b> {addr:unit}",
|
||||
"zh_Hant": "{addr:street} <b>{addr:housenumber}</b> {addr:unit}",
|
||||
"nl": "{addr:street} <b>{addr:housenumber}</b>{addr:unit}"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
|
@ -190,7 +192,8 @@
|
|||
"ca": "No es coneix cap adreça",
|
||||
"de": "Adresse unbekannt",
|
||||
"cs": "Není známa žádná adresa",
|
||||
"uk": "Адреса не відома"
|
||||
"uk": "Адреса не відома",
|
||||
"zh_Hant": "未知的地址"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -345,7 +348,8 @@
|
|||
"en": "Do not include the house number",
|
||||
"ca": "No incloguis el número de casa",
|
||||
"de": "Gib die Hausnummer nicht an",
|
||||
"cs": "Nezahrnovat číslo domu"
|
||||
"cs": "Nezahrnovat číslo domu",
|
||||
"zh_Hant": "不要包含門牌號碼"
|
||||
},
|
||||
"freeform": {
|
||||
"inline": false,
|
||||
|
@ -368,14 +372,16 @@
|
|||
"nl": "Wat is het busnummer?",
|
||||
"ca": "Quin és el número o la lletra de la unitat?",
|
||||
"de": "Wie lautet die Nummer oder der Buchstabe der Einheit?",
|
||||
"cs": "Co je číslo nebo písmeno jednotky?"
|
||||
"cs": "Co je číslo nebo písmeno jednotky?",
|
||||
"zh_Hant": "這邊的單位號碼或是字母是什麼?"
|
||||
},
|
||||
"render": {
|
||||
"en": "The unit number is <b>{addr:unit}</b>",
|
||||
"nl": "De bus is <b>{addr:unit}</b>",
|
||||
"ca": "El número d'unitat és <b>{addr:unit}</b>",
|
||||
"de": "Die Nummer der Einheit lautet <b>{addr:unit}</b>",
|
||||
"cs": "Číslo jednotky je <b>{addr:unit}</b>"
|
||||
"cs": "Číslo jednotky je <b>{addr:unit}</b>",
|
||||
"zh_Hant": "單位號碼是<b>{addr:unit}</b>"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "addr:unit"
|
||||
|
@ -388,7 +394,8 @@
|
|||
"nl": "Geen apart busnummer of letter",
|
||||
"ca": "No hi ha número d'unitat",
|
||||
"de": "Keine Einheitennummer",
|
||||
"cs": "Žádné číslo jednotky"
|
||||
"cs": "Žádné číslo jednotky",
|
||||
"zh_Hant": "沒有單位號碼"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -33,7 +33,8 @@
|
|||
"it": "Completeremo i dati da caratteristiche pubblicitarie, con referenza, operatore e illuminazione",
|
||||
"fr": "Nous allons compléter les information sur la publicité avec la référence, l'opérateur et l'éclairage",
|
||||
"uk": "Ми доповнимо дані з рекламних об'єктів посиланням, оператором та освітленням",
|
||||
"nl": "We vullen de informatie over de advertentie aan met de referentie, de operator en de verlichting"
|
||||
"nl": "We vullen de informatie over de advertentie aan met de referentie, de operator en de verlichting",
|
||||
"zh_Hant": "我們會從廣告功能的參數、營運者以及亮燈來完成資料"
|
||||
},
|
||||
"source": {
|
||||
"osmTags": {
|
||||
|
|
|
@ -5,13 +5,15 @@
|
|||
"ca": "Edificis",
|
||||
"cy": "Adeiladau",
|
||||
"de": "Gebäude",
|
||||
"cs": "Budovy"
|
||||
"cs": "Budovy",
|
||||
"nl": "Gebouwen"
|
||||
},
|
||||
"description": {
|
||||
"en": "All buildings",
|
||||
"ca": "Tots els edificis",
|
||||
"de": "Alle Gebäude",
|
||||
"cs": "Všechny budovy"
|
||||
"cs": "Všechny budovy",
|
||||
"nl": "Alle gebouwen"
|
||||
},
|
||||
"source": {
|
||||
"osmTags": "building~*"
|
||||
|
@ -24,7 +26,8 @@
|
|||
"ca": "Edifici",
|
||||
"cy": "Adeilad",
|
||||
"de": "Gebäude",
|
||||
"cs": "Budova"
|
||||
"cs": "Budova",
|
||||
"nl": "Gebouw"
|
||||
}
|
||||
},
|
||||
"pointRendering": [
|
||||
|
@ -404,7 +407,8 @@
|
|||
"render": {
|
||||
"en": "Built in <b>{construction_date}</b>",
|
||||
"ca": "Construït el <b>{construction_date}</b>",
|
||||
"cs": "Postaveno <b>{construction_date}</b>"
|
||||
"cs": "Postaveno <b>{construction_date}</b>",
|
||||
"nl": "Gebouwd in <b>{construction_date}</b>"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "construction_date",
|
||||
|
|
|
@ -196,7 +196,8 @@
|
|||
"pl": "Jaki kształt ma ta winda?",
|
||||
"ca": "Quina forma té aquest ascensor?",
|
||||
"es": "¿Qué forma tiene este ascensor?",
|
||||
"nl": "Wat voor vorm heeft deze lift?"
|
||||
"nl": "Wat voor vorm heeft deze lift?",
|
||||
"cs": "Jaký tvar má tento výtah?"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
|
@ -209,7 +210,8 @@
|
|||
"pl": "Ta winda ma prostokątny kształt",
|
||||
"ca": "Aquest ascensor té una forma rectangular",
|
||||
"es": "Este ascensor tiene forma rectangular",
|
||||
"nl": "Deze lift is rechthoekig"
|
||||
"nl": "Deze lift is rechthoekig",
|
||||
"cs": "Tento výtah má obdélníkový tvar"
|
||||
},
|
||||
"icon": "./assets/svg/square.svg"
|
||||
},
|
||||
|
@ -221,7 +223,8 @@
|
|||
"pl": "Ta winda ma okrągły kształt",
|
||||
"ca": "Aquest ascensor té una forma circular",
|
||||
"es": "Este ascensor tiene forma circular",
|
||||
"nl": "Deze lift is cirkelvormig"
|
||||
"nl": "Deze lift is cirkelvormig",
|
||||
"cs": "Tento výtah má kruhový tvar"
|
||||
},
|
||||
"icon": "./assets/svg/circle.svg"
|
||||
}
|
||||
|
@ -317,6 +320,29 @@
|
|||
"type": "pfloat"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "handrail",
|
||||
"question": {
|
||||
"en": "Is there a handrail in the cabin?"
|
||||
},
|
||||
"questionHint": {
|
||||
"en": "A handrail can help people with reduced mobility to get in or out of the elevator"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "handrail=yes",
|
||||
"then": {
|
||||
"en": "This elevator has a handrail in the cabin"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "handrail=no",
|
||||
"then": {
|
||||
"en": "This elevator does not have a handrail"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"induction-loop",
|
||||
{
|
||||
"id": "tactile_writing_available",
|
||||
|
|
|
@ -4,13 +4,15 @@
|
|||
"en": "Firepit",
|
||||
"de": "Feuerstelle",
|
||||
"es": "Hoguera",
|
||||
"ca": "Foguera"
|
||||
"ca": "Foguera",
|
||||
"cs": "Ohniště"
|
||||
},
|
||||
"description": {
|
||||
"en": "An outdoor place to make a fire, typically open to the public.",
|
||||
"de": "Eine Stelle im Freien zum Feuermachen, typischerweise öffentlich zugänglich.",
|
||||
"es": "Un lugar al aire libre para hacer fuego, normalmente abierto al público.",
|
||||
"ca": "Un lloc a l'aire lliure per fer un foc, normalment obert al públic."
|
||||
"ca": "Un lloc a l'aire lliure per fer un foc, normalment obert al públic.",
|
||||
"cs": "Venkovní místo k rozdělávání ohně, typicky otevřené veřejnosti."
|
||||
},
|
||||
"source": {
|
||||
"osmTags": "leisure=firepit"
|
||||
|
@ -21,7 +23,8 @@
|
|||
"en": "Firepit",
|
||||
"de": "Feuerstelle",
|
||||
"es": "Hoguera",
|
||||
"ca": "Foguera"
|
||||
"ca": "Foguera",
|
||||
"cs": "Ohniště"
|
||||
}
|
||||
},
|
||||
"titleIcons": [
|
||||
|
@ -52,13 +55,15 @@
|
|||
"en": "Firepit",
|
||||
"de": "Feuerstelle",
|
||||
"es": "Hoguera",
|
||||
"ca": "Foguera"
|
||||
"ca": "Foguera",
|
||||
"cs": "Ohniště"
|
||||
},
|
||||
"description": {
|
||||
"de": "Eine Stelle im Freien zum Feuermachen, typischerweise öffentlich zugänglich.",
|
||||
"en": "An outdoor place to make a fire, typically open to the public.",
|
||||
"es": "Un lugar al aire libre para hacer fuego, normalmente abierto al público.",
|
||||
"ca": "Un lloc a l'aire lliure per fer un foc, normalment obert al públic."
|
||||
"ca": "Un lloc a l'aire lliure per fer un foc, normalment obert al públic.",
|
||||
"cs": "Venkovní místo k rozdělávání ohně, typicky otevřené veřejnosti."
|
||||
},
|
||||
"tags": [
|
||||
"leisure=firepit"
|
||||
|
@ -73,7 +78,8 @@
|
|||
"en": "What is the permitted access?",
|
||||
"de": "Was ist der erlaubte Zugang?",
|
||||
"es": "¿Cuál es el acceso permitido?",
|
||||
"ca": "Quin és l'accés permès?"
|
||||
"ca": "Quin és l'accés permès?",
|
||||
"cs": "Jaký přístup je povolen?"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
|
@ -83,7 +89,8 @@
|
|||
"en": "Public",
|
||||
"es": "Público",
|
||||
"ca": "Públic",
|
||||
"cy": "Cyhoeddus"
|
||||
"cy": "Cyhoeddus",
|
||||
"cs": "Veřejné"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -92,7 +99,8 @@
|
|||
"de": "Kein Zugang",
|
||||
"en": "No access",
|
||||
"es": "Sin acceso",
|
||||
"ca": "Sense accés"
|
||||
"ca": "Sense accés",
|
||||
"cs": "Nepřístupné"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -102,7 +110,8 @@
|
|||
"en": "Private",
|
||||
"es": "Privado",
|
||||
"ca": "Privat",
|
||||
"cy": "Preifat"
|
||||
"cy": "Preifat",
|
||||
"cs": "Soukromé"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -111,7 +120,8 @@
|
|||
"de": "Zugang bis auf Widerruf",
|
||||
"en": "Access until revoked",
|
||||
"es": "Acceso hasta que se revoque",
|
||||
"ca": "Accés fins que es revoqui"
|
||||
"ca": "Accés fins que es revoqui",
|
||||
"cs": "Přístupné, dokud není přístup odvolán"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -120,7 +130,8 @@
|
|||
"de": "Zugang nur für Kunden",
|
||||
"en": "Access only for customers",
|
||||
"es": "Acceso solo para clientes",
|
||||
"ca": "Accés només per a clients"
|
||||
"ca": "Accés només per a clients",
|
||||
"cs": "Přístupné jen pro zákazníky"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -129,7 +140,8 @@
|
|||
"de": "Zugang nur für Berechtigte",
|
||||
"en": "Access only for authorized",
|
||||
"es": "Acceso solo para autorizados",
|
||||
"ca": "Accés només per a autoritzats"
|
||||
"ca": "Accés només per a autoritzats",
|
||||
"cs": "Přístupné jen na povolení"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -142,7 +154,8 @@
|
|||
"nl": "Is deze kampvuurplaats heel het jaar door beschikbaar?",
|
||||
"de": "Ist diese Feuerstelle rund um das Jahr nutzbar?",
|
||||
"es": "¿Está la hoguera disponible todo el año?",
|
||||
"ca": "Està disponible la foguera durant tot l'any?"
|
||||
"ca": "Està disponible la foguera durant tot l'any?",
|
||||
"cs": "Je ohniště k dispozici po celý rok?"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -572,7 +572,8 @@
|
|||
"nl": "Dit is een mexicaans restaurant",
|
||||
"de": "Hier werden mexikanische Gerichte serviert",
|
||||
"es": "Aquí se sirven platillos mexicanos",
|
||||
"ca": "Els plats mexicans se serveixen aquí"
|
||||
"ca": "Els plats mexicans se serveixen aquí",
|
||||
"cs": "Podávají se tu mexická jídla"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -959,7 +960,8 @@
|
|||
"nl": "Sommige gerechten kunnen op vraag vegetarisch gemaakt worden",
|
||||
"de": "Einige Gerichte können auf Nachfrage in eine vegetarische Version umgewandelt werden",
|
||||
"es": "Algunos platillos podrían adaptarse a una versión vegetariana, pero esto debe solicitarse",
|
||||
"ca": "Alguns plats poden adaptar-se a una versió vegetariana, però això s'ha de demanar"
|
||||
"ca": "Alguns plats poden adaptar-se a una versió vegetariana, però això s'ha de demanar",
|
||||
"cs": "Některá jídla lze na vyžádání upravit do vegetariánské verze"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -157,9 +157,7 @@
|
|||
"if": "noname=yes",
|
||||
"then": {
|
||||
"en": "There is no name noted on this guidepost"
|
||||
}
|
||||
},
|
||||
{
|
||||
},
|
||||
"addExtraTags": [
|
||||
"name="
|
||||
]
|
||||
|
@ -232,4 +230,4 @@
|
|||
"enableImproveAccuracy": true,
|
||||
"enableRelocation": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,40 +1,61 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
version="1.1"
|
||||
width="14"
|
||||
height="14"
|
||||
viewBox="0 0 14 14"
|
||||
id="svg2">
|
||||
<metadata
|
||||
id="metadata8">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<rect
|
||||
width="14"
|
||||
height="14"
|
||||
x="0"
|
||||
y="0"
|
||||
id="canvas"
|
||||
style="fill:none;stroke:none;visibility:hidden" />
|
||||
<path
|
||||
d="M 5,0 C 3.3431457,0 2,1.3431457 2,3 2,3.3555333 2.0739786,3.6835283 2.1875,4 l 5.625,0 C 7.9260214,3.6835283 8,3.3555333 8,3 8,1.3431457 6.6568543,0 5,0 z M 9,0 C 8.5961418,0 8.2266723,0.105305 7.875,0.25 8.5629725,0.96841289 9,1.9267594 9,3 9,3.3467764 8.931082,3.6790098 8.84375,4 L 11.8125,4 C 11.926021,3.6835283 12,3.3555333 12,3 12,1.3431457 10.656854,0 9,0 z M 3.25,5 7,14 10.75,5 3.25,5 z"
|
||||
id="ice-cream"
|
||||
style="fill:#C77400;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
width="512"
|
||||
height="512"
|
||||
viewBox="0 0 512 512"
|
||||
id="svg2"
|
||||
sodipodi:docname="ice_cream.svg"
|
||||
inkscape:version="1.3.2 (1:1.3.2+202311252150+091e20ef0f)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#999999"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.5"
|
||||
inkscape:cx="8"
|
||||
inkscape:cy="7"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1005"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<metadata
|
||||
id="metadata8">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<rect
|
||||
width="512"
|
||||
height="512"
|
||||
x="0"
|
||||
y="0"
|
||||
id="canvas"
|
||||
style="visibility:hidden;fill:none;stroke:none;stroke-width:36.5714" />
|
||||
<path
|
||||
d="M 182.85714,0 C 122.26361,0 73.142857,49.120757 73.142857,109.71429 c 0,13.00236 2.705503,24.9976 6.857143,36.57142 h 205.71429 c 4.15164,-11.57382 6.85714,-23.56906 6.85714,-36.57142 C 292.57143,49.120757 243.45067,0 182.85714,0 Z M 329.14286,0 C 314.37319,0 300.86116,3.8511543 288,9.1428571 313.16014,35.416243 329.14286,70.464344 329.14286,109.71429 c 0,12.6821 -2.52043,24.83235 -5.71429,36.57142 H 432 c 4.15163,-11.57382 6.85714,-23.56906 6.85714,-36.57142 C 438.85714,49.120757 389.73637,0 329.14286,0 Z M 118.85714,182.85714 256,512 393.14286,182.85714 Z"
|
||||
id="ice-cream"
|
||||
style="fill:#c77400;fill-opacity:1;stroke:none;stroke-width:36.5714" />
|
||||
</svg>
|
||||
|
|
Before (image error) Size: 1.4 KiB After (image error) Size: 2.3 KiB |
|
@ -1,64 +1,316 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128 128" style="display:inline;enable-background:new" version="1.0" id="svg11300" height="128" width="128">
|
||||
<title id="title4162">Adwaita Icon Template</title>
|
||||
<defs id="defs3">
|
||||
<linearGradient id="linearGradient1200">
|
||||
<stop id="stop1196" offset="0" style="stop-color:#f66151;stop-opacity:1"/>
|
||||
<stop id="stop1198" offset="1" style="stop-color:#c01c28;stop-opacity:1"/>
|
||||
<svg
|
||||
viewBox="0 0 512 512"
|
||||
style="display:inline;enable-background:new"
|
||||
version="1.0"
|
||||
id="svg11300"
|
||||
height="512"
|
||||
width="512"
|
||||
sodipodi:docname="camera.svg"
|
||||
inkscape:version="1.3.2 (1:1.3.2+202311252150+091e20ef0f)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#999999"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="0.29877869"
|
||||
inkscape:cx="662.69788"
|
||||
inkscape:cy="-316.28762"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1005"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg11300" />
|
||||
<title
|
||||
id="title4162">Adwaita Icon Template</title>
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient1200">
|
||||
<stop
|
||||
id="stop1196"
|
||||
offset="0"
|
||||
style="stop-color:#f66151;stop-opacity:1" />
|
||||
<stop
|
||||
id="stop1198"
|
||||
offset="1"
|
||||
style="stop-color:#c01c28;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<linearGradient id="linearGradient1194">
|
||||
<stop style="stop-color:#9a9996;stop-opacity:1" offset="0" id="stop1182"/>
|
||||
<stop id="stop1184" offset="0.03571429" style="stop-color:#deddda;stop-opacity:1"/>
|
||||
<stop style="stop-color:#c0bfbc;stop-opacity:1" offset="0.07142857" id="stop1186"/>
|
||||
<stop id="stop1188" offset="0.9285714" style="stop-color:#c0bfbc;stop-opacity:1"/>
|
||||
<stop style="stop-color:#deddda;stop-opacity:1" offset="0.96428573" id="stop1190"/>
|
||||
<stop style="stop-color:#9a9996;stop-opacity:1" offset="1" id="stop1192"/>
|
||||
<linearGradient
|
||||
id="linearGradient1194">
|
||||
<stop
|
||||
style="stop-color:#9a9996;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1182" />
|
||||
<stop
|
||||
id="stop1184"
|
||||
offset="0.03571429"
|
||||
style="stop-color:#deddda;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#c0bfbc;stop-opacity:1"
|
||||
offset="0.07142857"
|
||||
id="stop1186" />
|
||||
<stop
|
||||
id="stop1188"
|
||||
offset="0.9285714"
|
||||
style="stop-color:#c0bfbc;stop-opacity:1" />
|
||||
<stop
|
||||
style="stop-color:#deddda;stop-opacity:1"
|
||||
offset="0.96428573"
|
||||
id="stop1190" />
|
||||
<stop
|
||||
style="stop-color:#9a9996;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1192" />
|
||||
</linearGradient>
|
||||
<radialGradient gradientTransform="matrix(0.20374131,0.02574915,-0.13347722,1.0561446,5.11727,292.38679)" gradientUnits="userSpaceOnUse" r="111.99999" fy="-70.410965" fx="322.32892" cy="-70.410965" cx="322.32892" id="radialGradient957" xlink:href="#linearGradient1039"/>
|
||||
<linearGradient id="linearGradient1039">
|
||||
<stop style="stop-color:#949390;stop-opacity:1" offset="0" id="stop1035"/>
|
||||
<stop style="stop-color:#191622;stop-opacity:1" offset="1" id="stop1037"/>
|
||||
<radialGradient
|
||||
gradientTransform="matrix(0.20374131,0.02574915,-0.13347722,1.0561446,5.11727,292.38679)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="111.99999"
|
||||
fy="-70.410965"
|
||||
fx="322.32892"
|
||||
cy="-70.410965"
|
||||
cx="322.32892"
|
||||
id="radialGradient957"
|
||||
xlink:href="#linearGradient1039" />
|
||||
<linearGradient
|
||||
id="linearGradient1039">
|
||||
<stop
|
||||
style="stop-color:#949390;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1035" />
|
||||
<stop
|
||||
style="stop-color:#191622;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1037" />
|
||||
</linearGradient>
|
||||
<radialGradient gradientTransform="matrix(0.36230333,0,0,0.36230333,-41.78098,227.028)" gradientUnits="userSpaceOnUse" r="80.368896" fy="82.548996" fx="318.92401" cy="82.548996" cx="318.92401" id="radialGradient1116" xlink:href="#linearGradient1045"/>
|
||||
<linearGradient id="linearGradient1045">
|
||||
<stop style="stop-color:#68676b;stop-opacity:1" offset="0" id="stop1041"/>
|
||||
<stop style="stop-color:#191622;stop-opacity:1" offset="1" id="stop1043"/>
|
||||
<radialGradient
|
||||
gradientTransform="matrix(0.36230333,0,0,0.36230333,-41.78098,227.028)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="80.368896"
|
||||
fy="82.548996"
|
||||
fx="318.92401"
|
||||
cy="82.548996"
|
||||
cx="318.92401"
|
||||
id="radialGradient1116"
|
||||
xlink:href="#linearGradient1045" />
|
||||
<linearGradient
|
||||
id="linearGradient1045">
|
||||
<stop
|
||||
style="stop-color:#68676b;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1041" />
|
||||
<stop
|
||||
style="stop-color:#191622;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1043" />
|
||||
</linearGradient>
|
||||
<radialGradient gradientTransform="matrix(0.7272972,0,0,0.7272972,-159.07258,-233.33112)" gradientUnits="userSpaceOnUse" r="49.999992" fy="-31.994987" fx="320.70712" cy="-31.994987" cx="320.70712" id="radialGradient2192" xlink:href="#linearGradient1087"/>
|
||||
<linearGradient id="linearGradient1087">
|
||||
<stop style="stop-color:#1a4172;stop-opacity:1" offset="0" id="stop1083"/>
|
||||
<stop style="stop-color:#000000;stop-opacity:1" offset="1" id="stop1085"/>
|
||||
<radialGradient
|
||||
gradientTransform="matrix(0.7272972,0,0,0.7272972,-159.07258,-233.33112)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="49.999992"
|
||||
fy="-31.994987"
|
||||
fx="320.70712"
|
||||
cy="-31.994987"
|
||||
cx="320.70712"
|
||||
id="radialGradient2192"
|
||||
xlink:href="#linearGradient1087" />
|
||||
<linearGradient
|
||||
id="linearGradient1087">
|
||||
<stop
|
||||
style="stop-color:#1a4172;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1083" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop1085" />
|
||||
</linearGradient>
|
||||
<linearGradient gradientUnits="userSpaceOnUse" y2="13" x2="319.99997" y1="93.000008" x1="319.99997" id="linearGradient2224" xlink:href="#linearGradient1075" gradientTransform="matrix(0.25,0,0,0.25,-5.99995,-248.60224)"/>
|
||||
<linearGradient id="linearGradient1075">
|
||||
<stop style="stop-color:#ffffff;stop-opacity:1" offset="0" id="stop1071"/>
|
||||
<stop style="stop-color:#4a86cf;stop-opacity:0" offset="1" id="stop1073"/>
|
||||
<linearGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="13"
|
||||
x2="319.99997"
|
||||
y1="93.000008"
|
||||
x1="319.99997"
|
||||
id="linearGradient2224"
|
||||
xlink:href="#linearGradient1075"
|
||||
gradientTransform="matrix(0.25,0,0,0.25,-5.99995,-248.60224)" />
|
||||
<linearGradient
|
||||
id="linearGradient1075">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop1071" />
|
||||
<stop
|
||||
style="stop-color:#4a86cf;stop-opacity:0"
|
||||
offset="1"
|
||||
id="stop1073" />
|
||||
</linearGradient>
|
||||
<linearGradient y2="619.96387" x2="624" y1="619.96387" x1="177" gradientTransform="matrix(0.25,0,0,0.24305558,-35.999947,93.564314)" gradientUnits="userSpaceOnUse" id="linearGradient1444-3-9-0-9" xlink:href="#linearGradient1194"/>
|
||||
<linearGradient gradientTransform="translate(188.00001,-239.99999)" gradientUnits="userSpaceOnUse" y2="212" x2="35.999992" y1="212" x1="19.999992" id="linearGradient1202" xlink:href="#linearGradient1200"/>
|
||||
<linearGradient
|
||||
y2="619.96387"
|
||||
x2="624"
|
||||
y1="619.96387"
|
||||
x1="177"
|
||||
gradientTransform="matrix(0.25,0,0,0.24305558,-35.999947,93.564314)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient1444-3-9-0-9"
|
||||
xlink:href="#linearGradient1194" />
|
||||
<linearGradient
|
||||
gradientTransform="translate(188.00001,-239.99999)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
y2="212"
|
||||
x2="35.999992"
|
||||
y1="212"
|
||||
x1="19.999992"
|
||||
id="linearGradient1202"
|
||||
xlink:href="#linearGradient1200" />
|
||||
</defs>
|
||||
<metadata id="metadata4">
|
||||
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:title>Adwaita Icon Template</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g transform="translate(0,-172)" style="display:inline" id="layer1">
|
||||
<g style="display:inline" id="layer9">
|
||||
<rect style="display:inline;opacity:1;vector-effect:none;fill:url(#linearGradient1444-3-9-0-9);fill-opacity:1;stroke:none;stroke-width:0.01114019px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new" id="rect1480-3-7-1-3-6" width="112" height="70" x="7.9999914" y="218" rx="8" ry="7.7777786"/>
|
||||
<path style="display:inline;opacity:1;vector-effect:none;fill:#424048;fill-opacity:1;stroke:none;stroke-width:0.00279558px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new" d="m 60.89285,196 h 26.2143 c 1.11788,0 1.950682,0.77034 2.01785,1.72191 L 90,210.1181 c 0.07133,1.01051 -0.95572,1.82857 -2.14285,1.82857 h -27.7143 c -1.18712,0 -2.21417,-0.81806 -2.14285,-1.82857 l 0.875,-12.39619 C 58.9422,196.77034 59.77498,196 60.89285,196 Z" id="rect971"/>
|
||||
<rect ry="2" rx="12" y="201.21478" x="17.99999" height="7.0392466" width="24" id="rect1647-3-3-8" style="display:inline;opacity:1;vector-effect:none;fill:#949390;fill-opacity:1;stroke:none;stroke-width:0.01725831px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"/>
|
||||
<rect ry="7.8530612" rx="8" y="206" x="8" height="78" width="111.99999" id="rect1480-6-7" style="display:inline;opacity:1;vector-effect:none;fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.01119398px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"/>
|
||||
<path id="rect1482-1-3" d="m 8,216 v 56 H 120 V 216 H 38 c 0,5.52284 -4.47715,10 -10,10 -5.52285,0 -10,-4.47716 -10,-10 z" style="display:inline;opacity:1;vector-effect:none;fill:#2a2a3b;fill-opacity:1;stroke:none;stroke-width:0.01129822px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"/>
|
||||
<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#68676b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.91564989;marker:none;enable-background:new" id="path15832-3-1-9-8" cx="73.999992" cy="246" r="30"/>
|
||||
<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:new" id="path15832-3-2-9-4-5" cx="73.999992" cy="246" r="26.999998"/>
|
||||
<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3d3846;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient957);stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:new" id="path15832-3-2-9-4" cx="73.999992" cy="244" r="26.999998"/>
|
||||
<circle transform="rotate(90)" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1202);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.8584218;marker:none;enable-background:new" id="path15832-3-2-9-7-4-6" cx="216" cy="-27.999992" r="8"/>
|
||||
<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient1116);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114366;marker:none;enable-background:new" id="path15894-3" cx="73.907768" cy="244.05173" r="16.092224"/>
|
||||
<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114354;marker:none;enable-background:new" id="path15894-6" cx="73.999992" cy="-244.10229" transform="scale(1,-1)" r="13.999999"/>
|
||||
<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient2192);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114342;marker:none;enable-background:new" id="path15894-6-9" cx="73.999992" cy="-244.10229" transform="scale(1,-1)" r="12.499998"/>
|
||||
<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#15365f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114342;marker:none;enable-background:new" id="path15894-6-9-6" cx="73.999992" cy="-244.10229" transform="scale(1,-1)" r="5.5000019"/>
|
||||
<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2864b0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114342;marker:none;enable-background:new" id="path15894-6-9-7" cx="69.999992" cy="-239.60229" transform="scale(1,-1)" r="4"/>
|
||||
<ellipse style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#2864b0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114342;marker:none;enable-background:new" id="path15894-6-9-7-3" cx="79.999992" cy="-249.60229" transform="scale(1,-1)" rx="2.0000017" ry="2"/>
|
||||
<ellipse style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#2864b0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114342;marker:none;enable-background:new" id="path15894-6-9-7-3-2" cx="76.999992" cy="-246.60229" transform="scale(1,-1)" rx="1.0000008" ry="1"/>
|
||||
<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.66399997;fill:url(#linearGradient2224);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114342;marker:none;enable-background:new" id="path15894-6-9-1" cx="73.999992" cy="-244.10229" transform="scale(1,-1)" r="12.499998"/>
|
||||
<g
|
||||
transform="matrix(4.4285712,0,0,4.4285712,-27.428541,-807.99996)"
|
||||
style="display:inline"
|
||||
id="layer1">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="layer9">
|
||||
<rect
|
||||
style="display:inline;opacity:1;vector-effect:none;fill:url(#linearGradient1444-3-9-0-9);fill-opacity:1;stroke:none;stroke-width:0.0111402px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
|
||||
id="rect1480-3-7-1-3-6"
|
||||
width="112"
|
||||
height="70"
|
||||
x="7.9999914"
|
||||
y="218"
|
||||
rx="8"
|
||||
ry="7.7777786" />
|
||||
<path
|
||||
style="display:inline;opacity:1;vector-effect:none;fill:#424048;fill-opacity:1;stroke:none;stroke-width:0.00279558px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new"
|
||||
d="m 60.89285,196 h 26.2143 c 1.11788,0 1.950682,0.77034 2.01785,1.72191 L 90,210.1181 c 0.07133,1.01051 -0.95572,1.82857 -2.14285,1.82857 h -27.7143 c -1.18712,0 -2.21417,-0.81806 -2.14285,-1.82857 l 0.875,-12.39619 C 58.9422,196.77034 59.77498,196 60.89285,196 Z"
|
||||
id="rect971" />
|
||||
<rect
|
||||
ry="2"
|
||||
rx="12"
|
||||
y="201.21478"
|
||||
x="17.99999"
|
||||
height="7.0392466"
|
||||
width="24"
|
||||
id="rect1647-3-3-8"
|
||||
style="display:inline;opacity:1;vector-effect:none;fill:#949390;fill-opacity:1;stroke:none;stroke-width:0.0172583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new" />
|
||||
<rect
|
||||
ry="7.8530612"
|
||||
rx="8"
|
||||
y="206"
|
||||
x="8"
|
||||
height="78"
|
||||
width="111.99999"
|
||||
id="rect1480-6-7"
|
||||
style="display:inline;opacity:1;vector-effect:none;fill:#f6f5f4;fill-opacity:1;stroke:none;stroke-width:0.011194px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new" />
|
||||
<path
|
||||
id="rect1482-1-3"
|
||||
d="m 8,216 v 56 H 120 V 216 H 38 c 0,5.52284 -4.47715,10 -10,10 -5.52285,0 -10,-4.47716 -10,-10 z"
|
||||
style="display:inline;opacity:1;vector-effect:none;fill:#2a2a3b;fill-opacity:1;stroke:none;stroke-width:0.0112982px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;enable-background:new" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#68676b;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.91565;marker:none;enable-background:new"
|
||||
id="path15832-3-1-9-8"
|
||||
cx="73.999992"
|
||||
cy="246"
|
||||
r="30" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:new"
|
||||
id="path15832-3-2-9-4-5"
|
||||
cx="73.999992"
|
||||
cy="246"
|
||||
r="26.999998" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3d3846;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient957);stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:new"
|
||||
id="path15832-3-2-9-4"
|
||||
cx="73.999992"
|
||||
cy="244"
|
||||
r="26.999998" />
|
||||
<circle
|
||||
transform="rotate(90)"
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient1202);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.858422;marker:none;enable-background:new"
|
||||
id="path15832-3-2-9-7-4-6"
|
||||
cx="216"
|
||||
cy="-27.999992"
|
||||
r="8" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient1116);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114;marker:none;enable-background:new"
|
||||
id="path15894-3"
|
||||
cx="73.907768"
|
||||
cy="244.05173"
|
||||
r="16.092224" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114;marker:none;enable-background:new"
|
||||
id="path15894-6"
|
||||
cx="73.999992"
|
||||
cy="-244.10229"
|
||||
transform="scale(1,-1)"
|
||||
r="13.999999" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#radialGradient2192);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114;marker:none;enable-background:new"
|
||||
id="path15894-6-9"
|
||||
cx="73.999992"
|
||||
cy="-244.10229"
|
||||
transform="scale(1,-1)"
|
||||
r="12.499998" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#15365f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114;marker:none;enable-background:new"
|
||||
id="path15894-6-9-6"
|
||||
cx="73.999992"
|
||||
cy="-244.10229"
|
||||
transform="scale(1,-1)"
|
||||
r="5.5000019" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2864b0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114;marker:none;enable-background:new"
|
||||
id="path15894-6-9-7"
|
||||
cx="69.999992"
|
||||
cy="-239.60229"
|
||||
transform="scale(1,-1)"
|
||||
r="4" />
|
||||
<ellipse
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#2864b0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114;marker:none;enable-background:new"
|
||||
id="path15894-6-9-7-3"
|
||||
cx="79.999992"
|
||||
cy="-249.60229"
|
||||
transform="scale(1,-1)"
|
||||
rx="2.0000017"
|
||||
ry="2" />
|
||||
<ellipse
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#2864b0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114;marker:none;enable-background:new"
|
||||
id="path15894-6-9-7-3-2"
|
||||
cx="76.999992"
|
||||
cy="-246.60229"
|
||||
transform="scale(1,-1)"
|
||||
rx="1.0000008"
|
||||
ry="1" />
|
||||
<circle
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.664;fill:url(#linearGradient2224);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.79114;marker:none;enable-background:new"
|
||||
id="path15894-6-9-1"
|
||||
cx="73.999992"
|
||||
cy="-244.10229"
|
||||
transform="scale(1,-1)"
|
||||
r="12.499998" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before (image error) Size: 9.8 KiB After (image error) Size: 12 KiB |
|
@ -158,7 +158,8 @@
|
|||
"nl": "Deze picnictafel is gemaakt uit metaal",
|
||||
"de": "Der Picknicktisch ist aus Metall",
|
||||
"es": "Esta mesa de picnic está hecha de metal",
|
||||
"ca": "Aquesta taula de pícnic està feta de metall"
|
||||
"ca": "Aquesta taula de pícnic està feta de metall",
|
||||
"cs": "Tento piknikový stůl je vyroben z kovu"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -163,7 +163,8 @@
|
|||
"de": "Nutzung kostenlos",
|
||||
"uk": "Вільне використання",
|
||||
"es": "De uso gratuito",
|
||||
"ca": "D'ús lliure"
|
||||
"ca": "D'ús lliure",
|
||||
"cs": "K použití zdarma"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -174,7 +175,8 @@
|
|||
"de": "Gebührenpflichtiger Spielplatz",
|
||||
"uk": "Платний дитячий майданчик",
|
||||
"es": "Parque infantil de pago",
|
||||
"ca": "Parc infantil de pagament"
|
||||
"ca": "Parc infantil de pagament",
|
||||
"cs": "Placené hřiště"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -350,7 +352,8 @@
|
|||
"fr": "La surface est en caoutchouc, comme des dalles de caoutchouc, des copeaux de caoutchouc ou une grande surface en caoutchouc",
|
||||
"uk": "Поверхня зроблена з гуми, наприклад, гумова плитка, гумова мульча або велика гумова площа",
|
||||
"es": "La superficie está hecha de goma, como baldosas de goma, mantillo de goma o una gran área de goma",
|
||||
"ca": "La superfície està feta de goma, com rajoles de goma, jaç protector de goma o una gran àrea de goma"
|
||||
"ca": "La superfície està feta de goma, com rajoles de goma, jaç protector de goma o una gran àrea de goma",
|
||||
"cs": "Tento povrch je vyroben z gumy, například gumové dlaždice, granule nebo velká gumová plocha"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -5,13 +5,15 @@
|
|||
"de": "Spielgeräte",
|
||||
"es": "Equipamiento del Parque Infantil",
|
||||
"uk": "Обладнання для дитячих майданчиків",
|
||||
"ca": "Equipament del Parc Infantil"
|
||||
"ca": "Equipament del Parc Infantil",
|
||||
"cs": "Vybavení hřiště"
|
||||
},
|
||||
"description": {
|
||||
"en": "Layer showing playground equipment",
|
||||
"de": "Ebene mit Spielplatzausrüstung",
|
||||
"es": "Capa que muestra el equipamiento del parque infantil",
|
||||
"ca": "Capa que mostra l'equipament del parc infantil"
|
||||
"ca": "Capa que mostra l'equipament del parc infantil",
|
||||
"cs": "Vrstva ukazující vybavení hřiště"
|
||||
},
|
||||
"source": {
|
||||
"osmTags": "playground~*"
|
||||
|
|
|
@ -4,13 +4,15 @@
|
|||
"en": "Police stations",
|
||||
"de": "Polizeiwachen",
|
||||
"es": "Comisarías de Policía",
|
||||
"ca": "Comissaries"
|
||||
"ca": "Comissaries",
|
||||
"cs": "Policejní stanice"
|
||||
},
|
||||
"description": {
|
||||
"en": "Many types of police facilities ",
|
||||
"de": "Verschiedene Polizeieinrichtungen ",
|
||||
"es": "Muchos tipos de instalaciones policiales ",
|
||||
"ca": "Molts tipus d'instal·lacions policials "
|
||||
"ca": "Molts tipus d'instal·lacions policials ",
|
||||
"cs": "Více typů policejních zařízení "
|
||||
},
|
||||
"source": {
|
||||
"osmTags": {
|
||||
|
@ -27,7 +29,8 @@
|
|||
"de": "{name}",
|
||||
"es": "{name}",
|
||||
"ca": "{name}",
|
||||
"cy": "{name}"
|
||||
"cy": "{name}",
|
||||
"cs": "{name}"
|
||||
}
|
||||
},
|
||||
"pointRendering": [
|
||||
|
@ -76,13 +79,15 @@
|
|||
"en": "a police office",
|
||||
"de": "eine Polizeiwache",
|
||||
"ca": "una comissaria",
|
||||
"es": "una oficina de policía"
|
||||
"es": "una oficina de policía",
|
||||
"cs": "policejní služebna"
|
||||
},
|
||||
"description": {
|
||||
"en": "A police office where the general public can enter for inquiries",
|
||||
"de": "Eine Polizeiwache, die von der Öffentlichkeit für Anfragen genutzt werden kann",
|
||||
"ca": "Una comissaria on pot entrar la ciutadania per a les consultes",
|
||||
"es": "Una oficina de policía donde el público en general puede entrar para realizar consultas"
|
||||
"es": "Una oficina de policía donde el público en general puede entrar para realizar consultas",
|
||||
"cs": "Policejní služebna, kam může obecná veřejnost přijít se svými požadavky"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -93,13 +98,15 @@
|
|||
"en": "a police checkpoint",
|
||||
"de": "eine Polizeikontrolle",
|
||||
"es": "un puesto de control policial",
|
||||
"ca": "un punt de control policial"
|
||||
"ca": "un punt de control policial",
|
||||
"cs": "kontrolní stanoviště policie"
|
||||
},
|
||||
"description": {
|
||||
"en": "A place where police performs checks on travelling people",
|
||||
"de": "Ein Ort, an dem die Polizei Kontrollen von Reisenden durchführt",
|
||||
"es": "Un lugar donde la policía realiza controles a las personas que viajan",
|
||||
"ca": "Un lloc on la policia fa controls a les persones que viatgen"
|
||||
"ca": "Un lloc on la policia fa controls a les persones que viatgen",
|
||||
"cs": "Místo, kde policie provádí kontrolu cestujících"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -110,13 +117,15 @@
|
|||
"en": "an administrative, police backoffice",
|
||||
"de": "ein Verwaltungsbüro der Polizei",
|
||||
"es": "una oficina administrativa policial",
|
||||
"ca": "una oficina administrativa policial"
|
||||
"ca": "una oficina administrativa policial",
|
||||
"cs": "administrativní zázemí policie"
|
||||
},
|
||||
"description": {
|
||||
"en": "An administrative police office without services for the general public.",
|
||||
"de": "Ein Verwaltungsbüro der Polizei ohne Dienstleistungen für die Allgemeinheit.",
|
||||
"es": "Una oficina administrativa de policía sin servicios para el público en general.",
|
||||
"ca": "Una oficina administrativa de la policia sense serveis per al públic en general."
|
||||
"ca": "Una oficina administrativa de la policia sense serveis per al públic en general.",
|
||||
"cs": "Administrativní služebna policie bez služeb pro obecnou veřejnost."
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -128,7 +137,8 @@
|
|||
"en": "A jail run by the police without public services. People are detained here for a short time (at most a few days), e.g. for small misdemeanors, disturbance of the public order or awaiting a trial",
|
||||
"de": "Ein von der Polizei betriebenes Gefängnis ohne öffentliche Dienstleistungen. Hier werden Menschen für kurze Zeit (höchstens ein paar Tage) inhaftiert, z. B. wegen kleinerer Vergehen, Störung der öffentlichen Ordnung oder in Erwartung eines Gerichtsverfahrens",
|
||||
"es": "Una cárcel dirigida por la policía sin servicios públicos. Las personas son detenidas aquí por un corto tiempo (como máximo unos pocos días), por ejemplo, por pequeños delitos menores, alteración del orden público o a la espera de un juicio",
|
||||
"ca": "Una presó dirigida per la policia sense serveis públics. Hi ha persones detingudes aquí durant un temps curt (com a màxim uns dies), per exemple, per petites faltes, pertorbacions de l'ordre públic o esperant un judici"
|
||||
"ca": "Una presó dirigida per la policia sense serveis públics. Hi ha persones detingudes aquí durant un temps curt (com a màxim uns dies), per exemple, per petites faltes, pertorbacions de l'ordre públic o esperant un judici",
|
||||
"cs": "Věznice provozovaná policií bez veřejných služeb. Lidé jsou zde zadržováni po krátký čas (nejvýše několik dní), např. za drobná provinění, rušení veřejného pořádku nebo při čekání na soud"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -140,7 +150,8 @@
|
|||
"en": "A naval or maritime base for the maritime police; often with a pier and police boats nearby",
|
||||
"de": "Ein Stützpunkt für die Schifffahrtspolizei; oft mit einem Anleger und Polizeibooten in der Nähe",
|
||||
"es": "Una base naval o marítima para la policía marítima; a menudo con un muelle y barcos de policía cercanos",
|
||||
"ca": "Una base naval o marítima per a la policia marítima; sovint amb un moll i vaixells de policia a prop"
|
||||
"ca": "Una base naval o marítima per a la policia marítima; sovint amb un moll i vaixells de policia a prop",
|
||||
"cs": "Námořní nebo pobřežní základna námořní policie; často s přístavištěm a policejními loděmi poblíž"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -152,7 +163,8 @@
|
|||
"en": "What is the name of this police facility?",
|
||||
"de": "Wie lautet der Name der Polizeieinrichtung?",
|
||||
"es": "¿Cuál es el nombre de esta instalación policial?",
|
||||
"ca": "Quin és el nom d'aquesta instal·lació policial?"
|
||||
"ca": "Quin és el nom d'aquesta instal·lació policial?",
|
||||
"cs": "Jaký je název tohoto policejního zařízení?"
|
||||
},
|
||||
"id": "police_name",
|
||||
"render": {
|
||||
|
@ -160,7 +172,8 @@
|
|||
"de": "<b>{name}</b>",
|
||||
"es": "<b>{name}</b>",
|
||||
"ca": "<b>{name}</b>",
|
||||
"cy": "<b>{name}</b>"
|
||||
"cy": "<b>{name}</b>",
|
||||
"cs": "<b>{name}</b>"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "name"
|
||||
|
@ -174,7 +187,8 @@
|
|||
"en": "Does this police office have detention facilities?",
|
||||
"de": "Verfügt die Polizeidienststelle über Gewahrsamsräume?",
|
||||
"es": "¿Tiene esta oficina de policía instalaciones de detención?",
|
||||
"ca": "Aquesta comisaria té instal·lacions de detenció?"
|
||||
"ca": "Aquesta comisaria té instal·lacions de detenció?",
|
||||
"cs": "Má tato policejní služebna zařízení pro zadržování lidí?"
|
||||
},
|
||||
"filter": true,
|
||||
"id": "4_z2nrdhy6tyyh4fd",
|
||||
|
@ -187,7 +201,8 @@
|
|||
"en": "This police office has some cells to detain people",
|
||||
"de": "Die Polizeidienststelle hat Zellen für die Inhaftierung von Personen",
|
||||
"es": "Esta oficina de policía tiene algunas celdas para detener personas",
|
||||
"ca": "Aquesta comisaria té algunes cel·les per detenir persones"
|
||||
"ca": "Aquesta comisaria té algunes cel·les per detenir persones",
|
||||
"cs": "Tato policejní služebna má cely pro zadržování lidí"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -196,7 +211,8 @@
|
|||
"en": "This police office does not have cells to detain people",
|
||||
"de": "Die Polizeidienststelle hat keine Zellen für die Inhaftierung von Personen",
|
||||
"es": "Esta oficina de policía no tiene celdas para detener personas",
|
||||
"ca": "Aquesta comisaria no té cel·les per detenir persones"
|
||||
"ca": "Aquesta comisaria no té cel·les per detenir persones",
|
||||
"cs": "Tato policejní služebna nemá cely pro zadržování lidí"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -123,7 +123,8 @@
|
|||
"nl": "een brievenbus tegen een muur",
|
||||
"de": "ein Briefkasten an einer Wand",
|
||||
"es": "un buzón en una pared",
|
||||
"ca": "una bústia en un mur"
|
||||
"ca": "una bústia en un mur",
|
||||
"cs": "poštovní schránka na zdi"
|
||||
},
|
||||
"snapToLayer": [
|
||||
"walls_and_buildings"
|
||||
|
@ -142,13 +143,15 @@
|
|||
"en": "Who operates this postbox?",
|
||||
"de": "Wer betreibt diesen Briefkasten?",
|
||||
"es": "¿Quién gestiona este buzón?",
|
||||
"ca": "Qui opera aquesta bústia?"
|
||||
"ca": "Qui opera aquesta bústia?",
|
||||
"cs": "Kdo provozuje tuto poštovní schránku?"
|
||||
},
|
||||
"render": {
|
||||
"en": "This postbox is operated by <b>{operator}</b>",
|
||||
"de": "Dieser Briefkasten wird von <b>{operator}</b> betrieben",
|
||||
"es": "Este buzón es operado por <b>{operator}</b>.",
|
||||
"ca": "Aquesta bústia està operada per <b>{operator}</b>"
|
||||
"ca": "Aquesta bústia està operada per <b>{operator}</b>",
|
||||
"cs": "Tuto poštovní schránku provozuje <b>{operator}</b>"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "operator"
|
||||
|
|
|
@ -646,7 +646,8 @@
|
|||
"en": "Offers letter posting",
|
||||
"de": "Bietet Briefpost an",
|
||||
"es": "Ofrece envío de cartas",
|
||||
"ca": "Ofereix enviament de cartes"
|
||||
"ca": "Ofereix enviament de cartes",
|
||||
"cs": "Nabízí posílání dopisů"
|
||||
},
|
||||
"osmTags": {
|
||||
"and": [
|
||||
|
@ -665,7 +666,8 @@
|
|||
"en": "Offers parcel posting",
|
||||
"de": "Bietet Paketaufgabe an",
|
||||
"es": "Ofrece envío de paquetes",
|
||||
"ca": "Ofereix enviament de paquets"
|
||||
"ca": "Ofereix enviament de paquets",
|
||||
"cs": "Nabízí posílání balíků"
|
||||
},
|
||||
"osmTags": {
|
||||
"and": [
|
||||
|
@ -684,7 +686,8 @@
|
|||
"en": "Offers pickup of missed parcels",
|
||||
"de": "Bietet die Abholung von verpassten Paketen an",
|
||||
"es": "Ofrece recogida de paquetes perdidos",
|
||||
"ca": "Ofereix la recollida de paquets perduts"
|
||||
"ca": "Ofereix la recollida de paquets perduts",
|
||||
"cs": "Nabízí vyzvedávání nedoručených balíků"
|
||||
},
|
||||
"osmTags": {
|
||||
"and": [
|
||||
|
@ -722,7 +725,8 @@
|
|||
"en": "Sells stamps",
|
||||
"de": "Verkauft Briefmarken",
|
||||
"es": "Vende sellos",
|
||||
"ca": "Ven segells"
|
||||
"ca": "Ven segells",
|
||||
"cs": "Prodává známky"
|
||||
},
|
||||
"osmTags": {
|
||||
"and": [
|
||||
|
|
|
@ -3067,7 +3067,8 @@
|
|||
"nl": "Is {title()} heel het jaar beschikbaar?",
|
||||
"de": "Ist {title()} rund um das Jahr nutzbar?",
|
||||
"es": "¿Está {title()} disponible todo el año?",
|
||||
"ca": "Està disponible {title()} durant tot l'any?"
|
||||
"ca": "Està disponible {title()} durant tot l'any?",
|
||||
"cs": "Je {title()} dostupné po celý rok?"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
|
@ -3087,7 +3088,8 @@
|
|||
"nl": "Enkel in de zomer beschikbaar",
|
||||
"de": "Nur im Sommer in Betrieb",
|
||||
"es": "Solo disponible en verano",
|
||||
"ca": "Només disponible a l'estiu"
|
||||
"ca": "Només disponible a l'estiu",
|
||||
"cs": "Dostupné jen v létě"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -3098,7 +3100,8 @@
|
|||
"nl": "Gesloten in de winter",
|
||||
"de": "Im Winter nicht in Betrieb",
|
||||
"es": "Cerrado durante el invierno",
|
||||
"ca": "Tancat durant l'hivern"
|
||||
"ca": "Tancat durant l'hivern",
|
||||
"cs": "Během zimy zavřeno"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -3256,7 +3259,8 @@
|
|||
"en": "This place has outdoor seating",
|
||||
"nl": "Deze plaats heeft zitplaatsen buiten",
|
||||
"de": "Dieser Ort hat Sitzgelegenheiten im Freien",
|
||||
"ca": "Aquest lloc té seients exteriors"
|
||||
"ca": "Aquest lloc té seients exteriors",
|
||||
"cs": "Toto místo má venkovní posezení"
|
||||
},
|
||||
"icon": "./assets/layers/outdoor_seating/outdoor_seating.svg"
|
||||
},
|
||||
|
@ -3267,7 +3271,8 @@
|
|||
"en": "This place has indoor seating",
|
||||
"nl": "Deze plaats heeft zitplaatsen binnen",
|
||||
"de": "Dieser Ort hat Sitzplätze im Innenbereich",
|
||||
"ca": "Aquest lloc té zona d'estar interior"
|
||||
"ca": "Aquest lloc té zona d'estar interior",
|
||||
"cs": "Toto místo má vnitřní posezení"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -120,7 +120,8 @@
|
|||
"en": "a kindergarten",
|
||||
"nl": "een kleuterschool",
|
||||
"ca": "una llar d'infants",
|
||||
"de": "ein Kindergarten"
|
||||
"de": "ein Kindergarten",
|
||||
"cs": "mateřská škola"
|
||||
},
|
||||
"description": "A kindergarten (also known as <i>preschool</i>) is a school where small kids receive early education.",
|
||||
"tags": [
|
||||
|
@ -323,7 +324,8 @@
|
|||
"en": "A special needs school has expertise and supports students with a (severe) diagnosis. In many countries, a certificate is needed to enroll.",
|
||||
"nl": "Een buitengewone school is een school waar leerlingen met een attest op speciale zorg terecht kunnen.",
|
||||
"ca": "Una escola de necessitats especials té experiència i dona suport als estudiants amb un diagnòstic (greu). En molts països, es necessita un certificat per inscriure's.",
|
||||
"de": "Eine Sonderschule verfügt über Fachwissen und unterstützt Schüler mit einer (schweren) Diagnose. In vielen Ländern ist für die Anmeldung eine Bescheinigung erforderlich."
|
||||
"de": "Eine Sonderschule verfügt über Fachwissen und unterstützt Schüler mit einer (schweren) Diagnose. In vielen Ländern ist für die Anmeldung eine Bescheinigung erforderlich.",
|
||||
"cs": "Škola pro studenty se zvláštními potřebami má odbornost a podporuje studenty se (závažnými) diagnózami. V mnoha zemích je pro zápis potřeba potvrzení."
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
|
@ -332,7 +334,8 @@
|
|||
"en": "This school is only for special need students; a certificate is needed to enroll",
|
||||
"nl": "Deze school is enkel voor buitengewone leerlingen. Je hebt een attest nodig om hier school te mogen lopen.",
|
||||
"ca": "Aquesta escola només és per a estudiants amb necessitats especials; es necessita un certificat per matricular-se",
|
||||
"de": "Diese Schule ist nur für Schüler mit besonderem Förderbedarf; für die Einschreibung ist ein Zertifikat erforderlich."
|
||||
"de": "Diese Schule ist nur für Schüler mit besonderem Förderbedarf; für die Einschreibung ist ein Zertifikat erforderlich.",
|
||||
"cs": "Tato škola je jen pro studenty se zvláštními potřebami; pro zápis je potřeba potvrzení"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -341,7 +344,8 @@
|
|||
"en": "This school has a separate section for special need students.",
|
||||
"nl": "Deze school heeft een apart deel voor buitengewone leerlingen. ",
|
||||
"ca": "Aquesta escola disposa d'una secció separada per a estudiants amb necessitats especials.",
|
||||
"de": "Diese Schule hat einen separaten Bereich für Schüler mit besonderen Bedürfnissen."
|
||||
"de": "Diese Schule hat einen separaten Bereich für Schüler mit besonderen Bedürfnissen.",
|
||||
"cs": "Tato škola má samostatnou sekci pro studenty se zvláštními potřebami."
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -350,7 +354,8 @@
|
|||
"en": "Students with special needs and non-special need students have classes together.",
|
||||
"nl": "Buitengewone (geattesteerde) leerlingen en leerlingen zonder extra zorgnood zitten samen in de klas.",
|
||||
"ca": "Els estudiants amb necessitats especials i sense necessitats especials fan classes junts.",
|
||||
"de": "Schüler mit und ohne besonderen Förderbedarf haben gemeinsamen Unterricht."
|
||||
"de": "Schüler mit und ohne besonderen Förderbedarf haben gemeinsamen Unterricht.",
|
||||
"cs": "Studenti se zvláštními potřebami a ostatní studenti se učí společně."
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -360,7 +365,8 @@
|
|||
"en": "This school offers limited, ad hoc support but has no significant expertise and is not considered a special needs school.",
|
||||
"nl": "Deze school biedt ad hoc, beperkte extra zorg aan maar telt niet als buitengwoon onderwij.s",
|
||||
"ca": "Aquesta escola ofereix un suport limitat i ad hoc, però no té una experiència significativa i no es considera una escola de necessitats especials.",
|
||||
"de": "Diese Schule bietet begrenzte, ad hoc Unterstützung, verfügt jedoch nicht über nennenswertes Fachwissen und gilt nicht als Sonderschule."
|
||||
"de": "Diese Schule bietet begrenzte, ad hoc Unterstützung, verfügt jedoch nicht über nennenswertes Fachwissen und gilt nicht als Sonderschule.",
|
||||
"cs": "Tato škola nabízí omezenou ad hoc podporu, ale nemá významnou odbornost a nelze ji považovat za školu pro studenty se zvláštními potřebami."
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -369,7 +375,8 @@
|
|||
"en": "This school has no support for special need students.",
|
||||
"nl": "Deze school heeft geen ondersteuning voor buitengewone leerlingen.",
|
||||
"ca": "Aquesta escola no té suport per a estudiants amb necessitats especials.",
|
||||
"de": "Diese Schule bietet keine Unterstützung für Schüler mit besonderen Bedürfnissen."
|
||||
"de": "Diese Schule bietet keine Unterstützung für Schüler mit besonderen Bedürfnissen.",
|
||||
"cs": "Tato škola nemá podporu pro studenty se zvláštními potřebami."
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -379,7 +386,8 @@
|
|||
"en": "This school is for special need students.",
|
||||
"nl": "Deze school is voor buitengewone leerlingen.",
|
||||
"ca": "Aquesta escola és per a estudiants amb necessitats especials.",
|
||||
"de": "Diese Schule ist für Schüler mit besonderen Bedürfnissen."
|
||||
"de": "Diese Schule ist für Schüler mit besonderen Bedürfnissen.",
|
||||
"cs": "Tato škola je pro studenty se zvláštními potřebami."
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -390,7 +398,8 @@
|
|||
"en": "What does this school train pupils for?",
|
||||
"nl": "Waarop wordt een leerling voorbereid?",
|
||||
"ca": "Per a què capacita als alumnes?",
|
||||
"de": "Was lernt man an dieser Schule?"
|
||||
"de": "Was lernt man an dieser Schule?",
|
||||
"cs": "Pro co tato škola žáky vyučuje?"
|
||||
},
|
||||
"condition": {
|
||||
"and": [
|
||||
|
@ -418,7 +427,8 @@
|
|||
"en": "Prepares for an academic study at university",
|
||||
"nl": "<b>Doorstroomfinaliteit</b>: een opleiding hier bereidt voor op universitaire studies",
|
||||
"ca": "Preparació per a un estudi acadèmic a la universitat",
|
||||
"de": "Bereitet sich auf ein akademisches Studium an der Universität vor"
|
||||
"de": "Bereitet sich auf ein akademisches Studium an der Universität vor",
|
||||
"cs": "Připravuje pro akademické studium na univerzitě"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -427,7 +437,8 @@
|
|||
"en": "Prepares for a professional study at a college",
|
||||
"nl": "<b>Dubbele finaliteit</b>: een opleiding hier bereidt voor op verdere studie (bv. aan een hogeschool of secundair-na-secundair) of op de arbeidsmarkt",
|
||||
"ca": "Prepara per a estudis professionals en un cicle formatiu de grau superior",
|
||||
"de": "Bereitet sich auf ein Fachstudium an einer Hochschule vor"
|
||||
"de": "Bereitet sich auf ein Fachstudium an einer Hochschule vor",
|
||||
"cs": "Připravuje pro profesní studium na vysoké škole"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -436,7 +447,8 @@
|
|||
"en": "Prepares for a job",
|
||||
"nl": "<b>Arbeidsfinaliteit</b>: een opleiding hier bereidt voor op de arbeidsmarkt",
|
||||
"ca": "Prepara per a una feina",
|
||||
"de": "Bereitet sich auf einen Arbeitsplatz vor"
|
||||
"de": "Bereitet sich auf einen Arbeitsplatz vor",
|
||||
"cs": "Připravuje pro praxi"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -447,7 +459,8 @@
|
|||
"en": "What does this school train pupils for?",
|
||||
"nl": "Waar traint deze school de leerlingen voor?",
|
||||
"ca": "Per a què capacita als alumnes?",
|
||||
"de": "Wozu bildet diese Schule Schüler aus?"
|
||||
"de": "Wozu bildet diese Schule Schüler aus?",
|
||||
"cs": "Pro co tato škola žáky učí?"
|
||||
},
|
||||
"condition": {
|
||||
"and": [
|
||||
|
@ -473,7 +486,8 @@
|
|||
"en": "<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",
|
||||
"nl": "<b>Onderwijsvorm type 1</b>: leert elementaire vaardigheden om te functioneren in een zorginstelling",
|
||||
"ca": "<b>Entrenament tipus 1</b>: entrena habilitats bàsiques per a la vida quotidiana per viure en una societat. No hi ha intenció de fer una feina (retribuïda) després de la formació",
|
||||
"de": "<b>Ausbildungstyp 1</b>: vermittelt elementare Lebenskompetenzen für das Leben in einer Einrichtung. Es besteht nicht die Absicht, nach der Ausbildung eine (bezahlte) Arbeit aufzunehmen."
|
||||
"de": "<b>Ausbildungstyp 1</b>: vermittelt elementare Lebenskompetenzen für das Leben in einer Einrichtung. Es besteht nicht die Absicht, nach der Ausbildung eine (bezahlte) Arbeit aufzunehmen.",
|
||||
"cs": "<b>Výuka typu 1</b>: učí základní životní dovednosti pro život v instituci. Není cílem vykonávat (placenou) práci"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -482,7 +496,8 @@
|
|||
"en": "<b>Training type 2</b>: prepares to work in an environment with extra care and facilities such as a sheltered workshop",
|
||||
"nl": "<b>Onderwijsvorm type 2</b>: leert vaardigheden om te werken in een een beschermde arbeidsomgeving zoals een maatwerkbedrijf",
|
||||
"ca": "<b>Formació tipus 2</b>: prepara per treballar en un entorn amb atenció especial i instal·lacions com un taller tutelat",
|
||||
"de": "<b>Ausbildungstyp 2</b>: bereitet auf die Arbeit in einem Umfeld mit zusätzlicher Betreuung und Einrichtungen wie z.B. einer Behindertenwerkstatt vor"
|
||||
"de": "<b>Ausbildungstyp 2</b>: bereitet auf die Arbeit in einem Umfeld mit zusätzlicher Betreuung und Einrichtungen wie z.B. einer Behindertenwerkstatt vor",
|
||||
"cs": "<b>Výuka typu 2</b>: připravuje pro práci v prostředí se zvláštní péčí a v zařízeních, jako je chráněná dílna"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -491,7 +506,8 @@
|
|||
"en": "<b>Training type 3</b>: prepares for a job and a (more-or-less) independent life in society",
|
||||
"nl": "<b>Onderwijsvorm type 3</b>: leert vaardigheden voor een een job op de reguliere arbeidsmarkt en zelfstandig wonen",
|
||||
"ca": "<b>Formació tipus 3</b>: prepara per a un treball i una vida (més o menys) independent en la societat",
|
||||
"de": "<b>Ausbildungstyp 3</b>: bereitet auf einen Arbeitsplatz und ein (mehr oder weniger) unabhängiges Leben in der Gesellschaft vor"
|
||||
"de": "<b>Ausbildungstyp 3</b>: bereitet auf einen Arbeitsplatz und ein (mehr oder weniger) unabhängiges Leben in der Gesellschaft vor",
|
||||
"cs": "<b>Výuka typu 3</b>: připravuje pro zaměstnání a (víceméně) nezávislý život ve společnosti"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -500,7 +516,8 @@
|
|||
"en": "<b>Training type 4</b>: prepares for a job or continued education",
|
||||
"nl": "<b>Onderwijsvorm type 4</b>: leert vaardigheden voor een een job op de reguliere arbeidsmarkt of voor voortgezette studies",
|
||||
"ca": "<b>Formació tipus 4</b>: prepara per a un treball o educació continuada",
|
||||
"de": "<b>Ausbildungstyp 4</b>: bereitet auf einen Arbeitsplatz oder eine weiterführende Ausbildung vor"
|
||||
"de": "<b>Ausbildungstyp 4</b>: bereitet auf einen Arbeitsplatz oder eine weiterführende Ausbildung vor",
|
||||
"cs": "<b>Výuka typu 4</b>: připravuje pro zaměstnání a pokračující vzdělávání"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -692,7 +709,8 @@
|
|||
"en": "What type of special needs are given here?",
|
||||
"nl": "Welke soorten zorg voor buitengewone leerlingen is hier beschikbaar?",
|
||||
"ca": "Quin tipus de necessitats especials es donen aquí?",
|
||||
"de": "Welche Art von besonderen Bedürfnissen wird hier behandelt?"
|
||||
"de": "Welche Art von besonderen Bedürfnissen wird hier behandelt?",
|
||||
"cs": "Pro jaký druh zvláštních potřeb je to zde připraveno?"
|
||||
},
|
||||
"multiAnswer": true,
|
||||
"mappings": [
|
||||
|
@ -703,7 +721,8 @@
|
|||
"nl": "Voor leerlingen met een verstandelijke beperking (type 2)",
|
||||
"en": "For students with an intellectual disability (type 2)",
|
||||
"ca": "Per a estudiants amb discapacitat intel·lectual (tipus 2)",
|
||||
"de": "Für Schüler mit einer geistigen Behinderung (Typ 2)"
|
||||
"de": "Für Schüler mit einer geistigen Behinderung (Typ 2)",
|
||||
"cs": "Pro studenty s postižením intelektu (typ 2)"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -713,7 +732,8 @@
|
|||
"nl": "Voor leerlingen met een gedragsstoornis (type 3)",
|
||||
"en": "For students with an emotional and behavioural problem (type 3)",
|
||||
"ca": "Per a estudiants amb un problema emocional i conductual (tipus 3)",
|
||||
"de": "Für Schüler mit emotionalen und Verhaltensproblemen (Typ 3)"
|
||||
"de": "Für Schüler mit emotionalen und Verhaltensproblemen (Typ 3)",
|
||||
"cs": "Pro studenty s emocionálními a behaviorálními potížemi (typ 3)"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -723,7 +743,8 @@
|
|||
"nl": "Voor leerlingen met een motorische of lichamelijke beperking (type 4)",
|
||||
"en": "For students with an physical disability (type 4)",
|
||||
"ca": "Per a estudiants amb discapacitat física (tipus 4)",
|
||||
"de": "Für Studierende mit einer körperlichen Behinderung (Typ 4)"
|
||||
"de": "Für Studierende mit einer körperlichen Behinderung (Typ 4)",
|
||||
"cs": "Pro studenty s fyzickým postižením (typ 4)"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -733,7 +754,8 @@
|
|||
"nl": "Voor blinde en slechtziende leerlingen (type 6)",
|
||||
"en": "For blind and visually impaired students (type 6)",
|
||||
"ca": "Per a estudiants cecs i amb discapacitat visual (tipus 6)",
|
||||
"de": "Für blinde und sehbehinderte Schüler (Typ 6)"
|
||||
"de": "Für blinde und sehbehinderte Schüler (Typ 6)",
|
||||
"cs": "Pro nevidomé a zrakově hendikepované studenty (typ 6)"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -743,7 +765,8 @@
|
|||
"nl": "Voor dove leerlingen and leerlingen met een auditieve beperking (type 7)",
|
||||
"en": "For deaf students and students with hearing loss (type 7)",
|
||||
"ca": "Per a estudiants sords i estudiants amb pèrdua auditiva (tipus 7)",
|
||||
"de": "Für gehörlose Schüler und Schüler mit Hörverlust (Typ 7)"
|
||||
"de": "Für gehörlose Schüler und Schüler mit Hörverlust (Typ 7)",
|
||||
"cs": "Pro neslyšící a sluchově hendikepované studenty (typ 7)"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -753,7 +776,8 @@
|
|||
"nl": "Voor leerlingen met een Spraak- of Taalontwikkelingsstoornis (type 7 - STOS/TOS)",
|
||||
"en": "For students with a Developemental Language Disorder (type 7 - DLD)",
|
||||
"ca": "Per a estudiants amb un trastorn del llenguatge de desenvolupament (tipus 7 - TDL)",
|
||||
"de": "Für Schüler mit einer Entwicklungsbedingten Sprachstörung (Typ 7 – DLD)"
|
||||
"de": "Für Schüler mit einer Entwicklungsbedingten Sprachstörung (Typ 7 – DLD)",
|
||||
"cs": "Pro studenty s vývojovou dysfázií (typ 7 -DLD)"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -763,7 +787,8 @@
|
|||
"nl": "Voor leerlingen met een autisme spectrum stoornis (type 9)",
|
||||
"en": "For students with an autism spectrum disorder (type 9)",
|
||||
"ca": "Per a estudiants amb trastorn de l'espectre autista (tipus 9)",
|
||||
"de": "Für Schüler mit einer Autismus-Spektrum-Störung (Typ 9)"
|
||||
"de": "Für Schüler mit einer Autismus-Spektrum-Störung (Typ 9)",
|
||||
"cs": "Pro studenty s poruchami autistického spektra (typ 9)"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -774,7 +799,8 @@
|
|||
"nl": "Voor leerlingen die omwille van een leerprobleem niet in het gewone onderwijs terecht kunnen (basisaanbod)",
|
||||
"en": "For students with a learning disability (basic offering )",
|
||||
"ca": "Per a estudiants amb discapacitat d'aprenentatge (oferta bàsica )",
|
||||
"de": "Für Schüler mit Lernschwierigkeiten (Grundangebot)"
|
||||
"de": "Für Schüler mit Lernschwierigkeiten (Grundangebot)",
|
||||
"cs": "Pro studenty s poruchami učení (základní nabídka)"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -831,12 +857,14 @@
|
|||
"question": {
|
||||
"en": "Do pupils have to wear a uniform or obey a dresscode?",
|
||||
"nl": "Moeten leerlingen een uniform dragen of specifieke kledingsvoorschriften volgen?",
|
||||
"ca": "Els estudiants han de dur uniforme o seguir un codi de vestimenta?"
|
||||
"ca": "Els estudiants han de dur uniforme o seguir un codi de vestimenta?",
|
||||
"cs": "Musejí žáci nosit uniformu nebo dodržovat požadavky na oblečení?"
|
||||
},
|
||||
"multiAnswer": true,
|
||||
"render": {
|
||||
"en": "{dress_code}",
|
||||
"ca": "{dress_code}"
|
||||
"ca": "{dress_code}",
|
||||
"cs": "{dress_code}"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "dress_code"
|
||||
|
@ -857,7 +885,8 @@
|
|||
"then": {
|
||||
"en": "Students must wear a uniform, which is extensively described",
|
||||
"nl": "Studenten moeten een specifiek uniform dragen",
|
||||
"ca": "Els estudiants han de portar un uniforme, que es descriu àmpliament"
|
||||
"ca": "Els estudiants han de portar un uniforme, que es descriu àmpliament",
|
||||
"cs": "Studenti musejí nosit uniformu, která je přesně popsána"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -865,7 +894,8 @@
|
|||
"then": {
|
||||
"en": "Students must wear clothes in a specific colour scheme",
|
||||
"nl": "Leerlingen moeten kleren van een bepaalde kleur dragen",
|
||||
"ca": "Els alumnes han de portar roba d'una combinació de colors específica"
|
||||
"ca": "Els alumnes han de portar roba d'una combinació de colors específica",
|
||||
"cs": "Studenti musejí nosit oblečení specifického barevného schématu"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -873,7 +903,8 @@
|
|||
"then": {
|
||||
"en": "There is no formal dress code, students are allowed to come in casual wear such as t-shirt, jeans, ...",
|
||||
"nl": "Er is geen uniformverplichting, leerlingen mogen kledij zoals t-shirts, jeans, ... dragen",
|
||||
"ca": "No hi ha cap codi de vestimenta formal, els estudiants poden venir amb roba casual com samarreta, texans,..."
|
||||
"ca": "No hi ha cap codi de vestimenta formal, els estudiants poden venir amb roba casual com samarreta, texans,...",
|
||||
"cs": "Nejsou tu žádné formální požadavky na oblečení, studenti mohou nosit běžné oblečení jako trička, džíny..."
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -881,7 +912,8 @@
|
|||
"then": {
|
||||
"en": "Arms must be covered by the clothes",
|
||||
"nl": "De armen moeten volledig bedekt zijn",
|
||||
"ca": "Els braços han d'estar coberts per roba"
|
||||
"ca": "Els braços han d'estar coberts per roba",
|
||||
"cs": "Paže musejí být zakryté oblečením"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -889,7 +921,8 @@
|
|||
"then": {
|
||||
"en": "Knees must be covered by the clothes",
|
||||
"nl": "De knieën moeten volledig bedekt zijn",
|
||||
"ca": "Els genolls han d'estar coberts per roba"
|
||||
"ca": "Els genolls han d'estar coberts per roba",
|
||||
"cs": "Kolena musejí být zakrytá oblečením"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -897,7 +930,8 @@
|
|||
"then": {
|
||||
"en": "Legs must be covered by the clothes",
|
||||
"nl": "De benen moeten volledig bedekt zijn",
|
||||
"ca": "Les cames han d'estar cobertes per roba"
|
||||
"ca": "Les cames han d'estar cobertes per roba",
|
||||
"cs": "Nohy musejí být zakryty oblečením"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -905,7 +939,8 @@
|
|||
"then": {
|
||||
"en": "The belly must be covered by the clothes",
|
||||
"nl": "De buik mag niet zichtbaar zijn",
|
||||
"ca": "El melic ha d'estar cobert per roba"
|
||||
"ca": "El melic ha d'estar cobert per roba",
|
||||
"cs": "Břicho musí být zakryto oblečením"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -5,14 +5,16 @@
|
|||
"de": "Souvenir-Münzautomaten",
|
||||
"es": "Máquinas de Monedas de Recuerdo",
|
||||
"nl": "Souvenirmuntmachines",
|
||||
"ca": "Màquines de monedes de souvenir"
|
||||
"ca": "Màquines de monedes de souvenir",
|
||||
"cs": "Automat na upomínkové mince"
|
||||
},
|
||||
"description": {
|
||||
"en": "Layer showing machines selling souvenir coins",
|
||||
"de": "Ebene mit Automaten, die Souvenir-Münzen verkaufen",
|
||||
"es": "Capa que muestra máquinas expendedoras de monedas de recuerdo",
|
||||
"nl": "Laag die machines toont die souvenirmunten verkopen",
|
||||
"ca": "Capa que mostra les màquines que venen monedes de record"
|
||||
"ca": "Capa que mostra les màquines que venen monedes de record",
|
||||
"cs": "Vrstva ukazuje automaty na prodej upomínkových mincí"
|
||||
},
|
||||
"source": {
|
||||
"osmTags": {
|
||||
|
@ -67,14 +69,16 @@
|
|||
"de": "ein Souvenir-Münzautomaten",
|
||||
"es": "una máquina de monedas de recuerdo",
|
||||
"nl": "een souvenirmuntmachine",
|
||||
"ca": "una màquina de monedes de souvenir"
|
||||
"ca": "una màquina de monedes de souvenir",
|
||||
"cs": "automat na prodej upomínkových mincí"
|
||||
},
|
||||
"description": {
|
||||
"en": "Add a machine selling souvenir coins",
|
||||
"de": "Hinzufügen eines Automaten für Souvenirmünzen",
|
||||
"es": "Añadir una máquina expendedora de monedas de recuerdo",
|
||||
"nl": "Voeg een machine toe die souvenirmunten verkoopt",
|
||||
"ca": "Afegeix una màquina que vengui monedes de record"
|
||||
"ca": "Afegeix una màquina que vengui monedes de record",
|
||||
"cs": "Přidat automat na prodej upomínkových mincí"
|
||||
},
|
||||
"tags": [
|
||||
"amenity=vending_machine",
|
||||
|
@ -148,7 +152,8 @@
|
|||
"de": "Wie viel kostet eine Souvenirmünze?",
|
||||
"es": "¿Cuánto cuesta una moneda de recuerdo?",
|
||||
"nl": "Hoeveel kost een souvenirmunt?",
|
||||
"ca": "Quant costa una moneda de souvenir?"
|
||||
"ca": "Quant costa una moneda de souvenir?",
|
||||
"cs": "Kolik stojí upomínková mince?"
|
||||
},
|
||||
"id": "charge",
|
||||
"render": {
|
||||
|
@ -156,7 +161,8 @@
|
|||
"de": "Eine Souvenirmünze kostet {charge}",
|
||||
"es": "Una moneda de recuerdo cuesta {charge}",
|
||||
"nl": "Een souvenirmunt kost {charge}",
|
||||
"ca": "Una moneda de record costa {charge}"
|
||||
"ca": "Una moneda de record costa {charge}",
|
||||
"cs": "Upomínková mince stojí {charge}"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "charge",
|
||||
|
@ -165,7 +171,8 @@
|
|||
"de": "Kosten (z.B. 2 EUR)",
|
||||
"es": "Coste (ej. 2 EUR)",
|
||||
"nl": "Kosten (bijv. 2 EUR)",
|
||||
"ca": "Cost (p. ex. 2 EUR)"
|
||||
"ca": "Cost (p. ex. 2 EUR)",
|
||||
"cs": "Cena (např. 2 EUR)"
|
||||
}
|
||||
},
|
||||
"mappings": [
|
||||
|
@ -176,7 +183,8 @@
|
|||
"de": "Eine Souvenirmünze kostet 2 Euro",
|
||||
"es": "Una moneda de recuerdo cuesta 2 euros",
|
||||
"nl": "Een souvenirmunt kost 2 euro",
|
||||
"ca": "Una moneda de record costa 2 euros"
|
||||
"ca": "Una moneda de record costa 2 euros",
|
||||
"cs": "Upomínková mince stojí 2 eura"
|
||||
},
|
||||
"hideInAnswer": "_currency!~.*EUR.*"
|
||||
}
|
||||
|
|
|
@ -112,7 +112,8 @@
|
|||
"then": {
|
||||
"en": "Aerobics",
|
||||
"de": "Aerobic",
|
||||
"ca": "Aeròbic"
|
||||
"ca": "Aeròbic",
|
||||
"cs": "Aerobic"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -120,7 +121,8 @@
|
|||
"then": {
|
||||
"en": "American football",
|
||||
"de": "American Football",
|
||||
"ca": "Futbol americà"
|
||||
"ca": "Futbol americà",
|
||||
"cs": "Americký fotbal"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -147,7 +149,8 @@
|
|||
"then": {
|
||||
"en": "Athletics",
|
||||
"de": "Leichtathletik",
|
||||
"ca": "Atletisme"
|
||||
"ca": "Atletisme",
|
||||
"cs": "Atletika"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -172,7 +175,8 @@
|
|||
"en": "Bandy",
|
||||
"de": "Bandy",
|
||||
"ca": "Bandy",
|
||||
"cy": "Bandy"
|
||||
"cy": "Bandy",
|
||||
"cs": "Bandy hokej"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -190,7 +194,8 @@
|
|||
"en": "Baseball",
|
||||
"de": "Baseball",
|
||||
"ca": "Beisbol",
|
||||
"cy": "Pêl-fas"
|
||||
"cy": "Pêl-fas",
|
||||
"cs": "Baseball"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -198,7 +203,8 @@
|
|||
"then": {
|
||||
"en": "Basketball",
|
||||
"de": "Basketball",
|
||||
"ca": "Bàsquet"
|
||||
"ca": "Bàsquet",
|
||||
"cs": "Basketbal"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -206,7 +212,8 @@
|
|||
"then": {
|
||||
"en": "Beachvolleyball",
|
||||
"de": "Beachvolleyball",
|
||||
"ca": "Voleibol platja"
|
||||
"ca": "Voleibol platja",
|
||||
"cs": "Plážový volejbal"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -215,7 +222,8 @@
|
|||
"en": "Biathlon",
|
||||
"de": "Biathlon",
|
||||
"ca": "Biatló",
|
||||
"cy": "Biathlon"
|
||||
"cy": "Biathlon",
|
||||
"cs": "Biatlon"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -223,7 +231,8 @@
|
|||
"then": {
|
||||
"en": "Cue sports",
|
||||
"de": "Cuesport",
|
||||
"ca": "Billar"
|
||||
"ca": "Billar",
|
||||
"cs": "Kulečník"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -232,7 +241,8 @@
|
|||
"en": "BMX",
|
||||
"de": "BMX",
|
||||
"ca": "BMX",
|
||||
"cy": "BMX"
|
||||
"cy": "BMX",
|
||||
"cs": "BMX"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -241,7 +251,8 @@
|
|||
"en": "Bobsleigh",
|
||||
"de": "Bobfahren",
|
||||
"ca": "Bob",
|
||||
"cy": "Bobslê"
|
||||
"cy": "Bobslê",
|
||||
"cs": "Bobování"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -249,7 +260,8 @@
|
|||
"then": {
|
||||
"en": "Boules",
|
||||
"de": "Boule",
|
||||
"ca": "Joc de boles"
|
||||
"ca": "Joc de boles",
|
||||
"cs": "Koulové sporty"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -257,7 +269,8 @@
|
|||
"then": {
|
||||
"en": "Bowls",
|
||||
"de": "Bowls",
|
||||
"ca": "Petanca"
|
||||
"ca": "Petanca",
|
||||
"cs": "Bowls"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -266,7 +279,8 @@
|
|||
"en": "Boxing",
|
||||
"de": "Boxen",
|
||||
"ca": "Boxa",
|
||||
"cy": "Bocsio"
|
||||
"cy": "Bocsio",
|
||||
"cs": "Box"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -274,7 +288,8 @@
|
|||
"then": {
|
||||
"en": "Bullfighting",
|
||||
"de": "Stierkampf",
|
||||
"ca": "Tauromàquia"
|
||||
"ca": "Tauromàquia",
|
||||
"cs": "Býčí zápasy"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -282,7 +297,8 @@
|
|||
"then": {
|
||||
"en": "Canadian football",
|
||||
"de": "Kanadischer Fußball",
|
||||
"ca": "Futbol canadenc"
|
||||
"ca": "Futbol canadenc",
|
||||
"cs": "Kanadský fotbal"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -291,7 +307,8 @@
|
|||
"en": "Canoe",
|
||||
"de": "Kanu",
|
||||
"ca": "Canoa",
|
||||
"cy": "Canŵ"
|
||||
"cy": "Canŵ",
|
||||
"cs": "Kanoe"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -300,7 +317,8 @@
|
|||
"en": "Chess",
|
||||
"de": "Schach",
|
||||
"ca": "Escacs",
|
||||
"cy": "Gwyddbwyll"
|
||||
"cy": "Gwyddbwyll",
|
||||
"cs": "Šachy"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -308,7 +326,8 @@
|
|||
"then": {
|
||||
"en": "Non-competitive diving",
|
||||
"de": "Wettkampffreies Tauchen",
|
||||
"ca": "Submarinisme no competitiu"
|
||||
"ca": "Submarinisme no competitiu",
|
||||
"cs": "Nesoutěžní potápění"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -318,7 +337,8 @@
|
|||
"nl": "Klimmen",
|
||||
"de": "Klettern",
|
||||
"ca": "Escalada",
|
||||
"cy": "Dringo"
|
||||
"cy": "Dringo",
|
||||
"cs": "Sportovní lezení"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -335,7 +355,8 @@
|
|||
"then": {
|
||||
"en": "Cockfighting",
|
||||
"de": "Hahnenkampf",
|
||||
"ca": "Baralla de galls"
|
||||
"ca": "Baralla de galls",
|
||||
"cs": "Kohoutí zápasy"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -344,7 +365,8 @@
|
|||
"en": "Cricket",
|
||||
"de": "Kricket",
|
||||
"ca": "Criquet",
|
||||
"cy": "Criced"
|
||||
"cy": "Criced",
|
||||
"cs": "Kriket"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -353,7 +375,8 @@
|
|||
"en": "CrossFit",
|
||||
"de": "CrossFit",
|
||||
"ca": "CrossFit",
|
||||
"cy": "CrossFit"
|
||||
"cy": "CrossFit",
|
||||
"cs": "CrossFit"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -362,7 +385,8 @@
|
|||
"en": "Croquet",
|
||||
"de": "Krocket",
|
||||
"ca": "Croquet",
|
||||
"cy": "Croquet"
|
||||
"cy": "Croquet",
|
||||
"cs": "Kroket"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -370,7 +394,8 @@
|
|||
"then": {
|
||||
"en": "Curling",
|
||||
"de": "Eisstockschießen",
|
||||
"ca": "Cúrling"
|
||||
"ca": "Cúrling",
|
||||
"cs": "Curling"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -387,7 +412,8 @@
|
|||
"en": "Cycling",
|
||||
"de": "Radfahren",
|
||||
"ca": "Ciclisme",
|
||||
"cy": "Seiclo"
|
||||
"cy": "Seiclo",
|
||||
"cs": "Cyklistika"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -415,7 +441,8 @@
|
|||
"then": {
|
||||
"en": "Dog agility",
|
||||
"de": "Hundetraining",
|
||||
"ca": "Ensinistrament caní"
|
||||
"ca": "Ensinistrament caní",
|
||||
"cs": "Psí agility"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -461,7 +488,8 @@
|
|||
"then": {
|
||||
"en": "Field hockey",
|
||||
"de": "Feldhockey",
|
||||
"ca": "Hoquei sobre herba"
|
||||
"ca": "Hoquei sobre herba",
|
||||
"cs": "Pozemní hokej"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -470,7 +498,8 @@
|
|||
"en": "Fitness",
|
||||
"de": "Fitnesstraining",
|
||||
"ca": "Fitnes",
|
||||
"cy": "Ffitrwydd"
|
||||
"cy": "Ffitrwydd",
|
||||
"cs": "Fitness"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -600,7 +629,8 @@
|
|||
"then": {
|
||||
"en": "Ice Hockey",
|
||||
"de": "Eishockey",
|
||||
"ca": "Hoquei de gel"
|
||||
"ca": "Hoquei de gel",
|
||||
"cs": "Lední hokej"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -608,7 +638,8 @@
|
|||
"then": {
|
||||
"en": "Ice skating",
|
||||
"de": "Eislaufen",
|
||||
"ca": "Patinatge sobre gel"
|
||||
"ca": "Patinatge sobre gel",
|
||||
"cs": "Lední bruslení"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -616,7 +647,8 @@
|
|||
"then": {
|
||||
"en": "Ice stock sport",
|
||||
"de": "Eisstockschießen",
|
||||
"ca": "Esport d'Icestock"
|
||||
"ca": "Esport d'Icestock",
|
||||
"cs": "Metaná"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -625,7 +657,8 @@
|
|||
"en": "Judo",
|
||||
"de": "Judo",
|
||||
"ca": "Judo",
|
||||
"cy": "Judo"
|
||||
"cy": "Judo",
|
||||
"cs": "Judo"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -634,7 +667,8 @@
|
|||
"en": "Karate",
|
||||
"de": "Karate",
|
||||
"ca": "Karate",
|
||||
"cy": "Karate"
|
||||
"cy": "Karate",
|
||||
"cs": "Karate"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -642,7 +676,8 @@
|
|||
"then": {
|
||||
"en": "Kart racing",
|
||||
"de": "Go-Kart-Rennen",
|
||||
"ca": "Curses de Karts"
|
||||
"ca": "Curses de Karts",
|
||||
"cs": "Motokáry"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -650,7 +685,8 @@
|
|||
"then": {
|
||||
"en": "Kickboxing",
|
||||
"de": "Kickboxen",
|
||||
"ca": "Kickbox"
|
||||
"ca": "Kickbox",
|
||||
"cs": "Kickbox"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -658,7 +694,8 @@
|
|||
"then": {
|
||||
"en": "Kitesurfing",
|
||||
"de": "Kitesurfen",
|
||||
"ca": "Kitesurf"
|
||||
"ca": "Kitesurf",
|
||||
"cs": "Kitesurfing"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -666,7 +703,8 @@
|
|||
"then": {
|
||||
"en": "Korfball",
|
||||
"de": "Korfball",
|
||||
"ca": "Corfbol"
|
||||
"ca": "Corfbol",
|
||||
"cs": "Korfbal"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -674,7 +712,8 @@
|
|||
"then": {
|
||||
"en": "Krachtball",
|
||||
"de": "Krachtball",
|
||||
"ca": "Krachtball"
|
||||
"ca": "Krachtball",
|
||||
"cs": "Krachtball"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -851,7 +890,8 @@
|
|||
"en": "Pilates",
|
||||
"de": "Pilates",
|
||||
"ca": "Pilates",
|
||||
"cy": "Pilates"
|
||||
"cy": "Pilates",
|
||||
"cs": "Pilates"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -859,7 +899,8 @@
|
|||
"then": {
|
||||
"en": "Pole dance",
|
||||
"de": "Pole-Dance",
|
||||
"ca": "Pole dance"
|
||||
"ca": "Pole dance",
|
||||
"cs": "Pole dance"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -867,7 +908,8 @@
|
|||
"then": {
|
||||
"en": "Racquetball",
|
||||
"de": "Racquetball",
|
||||
"ca": "Raquetbol"
|
||||
"ca": "Raquetbol",
|
||||
"cs": "Raketbal"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -875,7 +917,8 @@
|
|||
"then": {
|
||||
"en": "Radio-controlled car",
|
||||
"de": "Modellauto",
|
||||
"ca": "Cotxe controlat per ràdio"
|
||||
"ca": "Cotxe controlat per ràdio",
|
||||
"cs": "RC auta"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -902,7 +945,8 @@
|
|||
"then": {
|
||||
"en": "Rugby league",
|
||||
"de": "Rugbyliga",
|
||||
"ca": "Lliga de rugbi"
|
||||
"ca": "Lliga de rugbi",
|
||||
"cs": "Třináctkové ragby"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -910,7 +954,8 @@
|
|||
"then": {
|
||||
"en": "Rugby union",
|
||||
"de": "Rugby Union",
|
||||
"ca": "Unió de rugbi"
|
||||
"ca": "Unió de rugbi",
|
||||
"cs": "Patnáctkové ragby"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -919,7 +964,8 @@
|
|||
"en": "Running",
|
||||
"de": "Laufsport",
|
||||
"ca": "Carrera a peu",
|
||||
"cy": "Rhedeg"
|
||||
"cy": "Rhedeg",
|
||||
"cs": "Běhání"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -927,7 +973,8 @@
|
|||
"then": {
|
||||
"en": "Sailing",
|
||||
"de": "Segeln",
|
||||
"ca": "Vela"
|
||||
"ca": "Vela",
|
||||
"cs": "Jachting"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1017,7 +1064,8 @@
|
|||
"en": "Squash",
|
||||
"de": "Squash",
|
||||
"ca": "Esquaix",
|
||||
"cy": "Sboncen"
|
||||
"cy": "Sboncen",
|
||||
"cs": "Squash"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1026,7 +1074,8 @@
|
|||
"en": "Sumo",
|
||||
"de": "Sumoringen",
|
||||
"ca": "Sumo",
|
||||
"cy": "Sumo"
|
||||
"cy": "Sumo",
|
||||
"cs": "Sumo"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1035,7 +1084,8 @@
|
|||
"en": "Surfing",
|
||||
"de": "Surfen",
|
||||
"ca": "Surfing",
|
||||
"cy": "Syrffio"
|
||||
"cy": "Syrffio",
|
||||
"cs": "Surfování"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1044,7 +1094,8 @@
|
|||
"en": "Swimming",
|
||||
"de": "Schwimmen",
|
||||
"ca": "Natació",
|
||||
"cy": "Nofio"
|
||||
"cy": "Nofio",
|
||||
"cs": "Plavání"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1052,7 +1103,8 @@
|
|||
"then": {
|
||||
"en": "Table tennis",
|
||||
"de": "Tischtennis",
|
||||
"ca": "Tennis de taula"
|
||||
"ca": "Tennis de taula",
|
||||
"cs": "Stolní tenis"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1060,7 +1112,8 @@
|
|||
"then": {
|
||||
"en": "Table soccer",
|
||||
"de": "Tischfußball",
|
||||
"ca": "Futbolí"
|
||||
"ca": "Futbolí",
|
||||
"cs": "Stolní fotbal"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1069,7 +1122,8 @@
|
|||
"en": "Taekwondo",
|
||||
"de": "Taekwondo",
|
||||
"ca": "Taekwondo",
|
||||
"cy": "Taekwondo"
|
||||
"cy": "Taekwondo",
|
||||
"cs": "Taekwondo"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1078,7 +1132,8 @@
|
|||
"en": "Tennis",
|
||||
"de": "Tennis",
|
||||
"ca": "Tenis",
|
||||
"cy": "Tenis"
|
||||
"cy": "Tenis",
|
||||
"cs": "Tenis"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1086,7 +1141,8 @@
|
|||
"then": {
|
||||
"en": "Teqball",
|
||||
"de": "Teqball",
|
||||
"ca": "Teqball"
|
||||
"ca": "Teqball",
|
||||
"cs": "Teqball"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1094,7 +1150,8 @@
|
|||
"then": {
|
||||
"en": "Toboggan",
|
||||
"de": "Rodeln",
|
||||
"ca": "Tobogan"
|
||||
"ca": "Tobogan",
|
||||
"cs": "Tobogán"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1102,7 +1159,8 @@
|
|||
"then": {
|
||||
"en": "Trampoline",
|
||||
"de": "Trampolin",
|
||||
"ca": "Trampolí"
|
||||
"ca": "Trampolí",
|
||||
"cs": "Trampolína"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1110,7 +1168,8 @@
|
|||
"then": {
|
||||
"en": "Ultimate frisbee",
|
||||
"de": "Ultimate Frisbee",
|
||||
"ca": "Ultimate"
|
||||
"ca": "Ultimate",
|
||||
"cs": "Ultimate frisbee"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1118,7 +1177,8 @@
|
|||
"then": {
|
||||
"en": "Ultralight aviation",
|
||||
"de": "Ultraleichtflug",
|
||||
"ca": "Aviació ultralleugera"
|
||||
"ca": "Aviació ultralleugera",
|
||||
"cs": "Ultralehké létání"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1126,7 +1186,8 @@
|
|||
"then": {
|
||||
"en": "Volleyball",
|
||||
"de": "Volleyball",
|
||||
"ca": "Voleibol"
|
||||
"ca": "Voleibol",
|
||||
"cs": "Volejbal"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1134,7 +1195,8 @@
|
|||
"then": {
|
||||
"en": "Wakeboarding",
|
||||
"de": "Wakeboarden",
|
||||
"ca": "Esquí-surf"
|
||||
"ca": "Esquí-surf",
|
||||
"cs": "Wakeboarding"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1142,7 +1204,8 @@
|
|||
"then": {
|
||||
"en": "Water polo",
|
||||
"de": "Wasserball",
|
||||
"ca": "Waterpolo"
|
||||
"ca": "Waterpolo",
|
||||
"cs": "Vodní pólo"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1150,7 +1213,8 @@
|
|||
"then": {
|
||||
"en": "Waterskiing",
|
||||
"de": "Wasserski",
|
||||
"ca": "Esquí aquàtic"
|
||||
"ca": "Esquí aquàtic",
|
||||
"cs": "Vodní lyžování"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1158,7 +1222,8 @@
|
|||
"then": {
|
||||
"en": "Olympic weightlifting",
|
||||
"de": "Olympisches Gewichtheben",
|
||||
"ca": "Halterofília olímpica"
|
||||
"ca": "Halterofília olímpica",
|
||||
"cs": "Olympijské vzpírání"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1166,7 +1231,8 @@
|
|||
"then": {
|
||||
"en": "Windsurfing",
|
||||
"de": "Windsurfen",
|
||||
"ca": "Windsurf"
|
||||
"ca": "Windsurf",
|
||||
"cs": "Windsurfing"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1174,7 +1240,8 @@
|
|||
"then": {
|
||||
"en": "Wrestling",
|
||||
"de": "Wrestling",
|
||||
"ca": "Lluita lliure"
|
||||
"ca": "Lluita lliure",
|
||||
"cs": "Wrestling"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1183,7 +1250,8 @@
|
|||
"en": "Yoga",
|
||||
"de": "Yoga",
|
||||
"ca": "Ioga",
|
||||
"cy": "Ioga"
|
||||
"cy": "Ioga",
|
||||
"cs": "Jóga"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1191,7 +1259,8 @@
|
|||
"then": {
|
||||
"en": "Zurkhaneh sport",
|
||||
"de": "Zurkhaneh-Sport",
|
||||
"ca": "Esport de Zurkhaneh"
|
||||
"ca": "Esport de Zurkhaneh",
|
||||
"cs": "Íránský zápas"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -227,7 +227,8 @@
|
|||
"en": "Is this an escalator?",
|
||||
"nl": "Is dit een roltrap?",
|
||||
"de": "Ist das eine Rolltreppe?",
|
||||
"ca": "És una escala mecànica?"
|
||||
"ca": "És una escala mecànica?",
|
||||
"cs": "Jedná se o eskalátor?"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -130,7 +130,8 @@
|
|||
"en": "How much does a membership cost?",
|
||||
"de": "Wie viel kostet eine Mitgliedschaft?",
|
||||
"es": "¿Cuánto cuesta una membresía?",
|
||||
"ca": "Quant costa una filiació?"
|
||||
"ca": "Quant costa una filiació?",
|
||||
"cs": "Kolik stojí členství?"
|
||||
},
|
||||
"id": "membership_charge",
|
||||
"questionHint": {
|
||||
|
|
|
@ -65,7 +65,8 @@
|
|||
"en": "Motel {name}",
|
||||
"de": "Motel {name}",
|
||||
"es": "Motel {name}",
|
||||
"ca": "Motel {name}"
|
||||
"ca": "Motel {name}",
|
||||
"cs": "Motel {name}"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -91,7 +92,8 @@
|
|||
"en": "Tourist accomodation {name}",
|
||||
"de": "Touristenunterkunft {name}",
|
||||
"es": "Alojamiento turístico {name}",
|
||||
"ca": "Allotjament turístic {name}"
|
||||
"ca": "Allotjament turístic {name}",
|
||||
"cs": "Turistická ubytovna {name}"
|
||||
}
|
||||
},
|
||||
"pointRendering": [
|
||||
|
@ -302,7 +304,8 @@
|
|||
"nl": "{name}",
|
||||
"es": "{name}",
|
||||
"ca": "{name}",
|
||||
"cy": "{name}"
|
||||
"cy": "{name}",
|
||||
"cs": "{name}"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "name"
|
||||
|
@ -376,7 +379,8 @@
|
|||
"nl": "Hotels",
|
||||
"es": "Hoteles",
|
||||
"ca": "Hotels",
|
||||
"cy": "Gwestai"
|
||||
"cy": "Gwestai",
|
||||
"cs": "Hotely"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -406,7 +410,8 @@
|
|||
"de": "Motels",
|
||||
"nl": "Motels",
|
||||
"es": "Moteles",
|
||||
"ca": "Motels"
|
||||
"ca": "Motels",
|
||||
"cs": "Motely"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -359,7 +359,8 @@
|
|||
"uk": "<h3>Налаштування мапи</h3>",
|
||||
"es": "<h3>Configurar mapa</h3>",
|
||||
"nl": "<h3>Kaartvoorkeuren</h3>",
|
||||
"ca": "<h3>Configura el mapa</h3>"
|
||||
"ca": "<h3>Configura el mapa</h3>",
|
||||
"cs": "<h3>Konfigurace mapy</h3>"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1267,7 +1268,8 @@
|
|||
"render": {
|
||||
"en": "<h3>Translating MapComplete</h3>",
|
||||
"de": "<h3>MapComplete übersetzen</h3>",
|
||||
"ca": "<h3>Traduint MapComplete</h3>"
|
||||
"ca": "<h3>Traduint MapComplete</h3>",
|
||||
"cs": "<h3>Překládání MapComplete</h3>"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -587,7 +587,8 @@
|
|||
"de": "Speiseeis wird verkauft",
|
||||
"es": "Se venden helados",
|
||||
"uk": "Морозиво",
|
||||
"ca": "Es ven gelat"
|
||||
"ca": "Es ven gelat",
|
||||
"cs": "Prodává zmrzlinu"
|
||||
},
|
||||
"icon": "./assets/layers/ice_cream/ice_cream.svg"
|
||||
},
|
||||
|
@ -996,7 +997,8 @@
|
|||
"nl": "een fietslichtje",
|
||||
"de": "Fahrradlicht",
|
||||
"es": "luz para bicicleta",
|
||||
"ca": "llum de la bicicleta"
|
||||
"ca": "llum de la bicicleta",
|
||||
"cs": "osvětlení kola"
|
||||
}
|
||||
],
|
||||
[
|
||||
|
@ -1316,7 +1318,8 @@
|
|||
"nl": "Verkoop van ijs",
|
||||
"de": "Verkauf von Speiseeis",
|
||||
"es": "Venta de helados",
|
||||
"ca": "Venda de gelat"
|
||||
"ca": "Venda de gelat",
|
||||
"cs": "Prodej zmrzliny"
|
||||
},
|
||||
"osmTags": "vending~i~.*ice_cream.*"
|
||||
},
|
||||
|
|
|
@ -229,7 +229,8 @@
|
|||
"de": "Ein Papierkorb für Kunststoffverpackungen, Metallverpackungen und Getränkekartons (Tetrapak)",
|
||||
"ru": "Корзина для пластиковой упаковки, металлической упаковки и картонной упаковки из-под напитков (PMD)",
|
||||
"es": "Un contenedor para envases de plástico, envases metálicos y cartones de bebidas (PMD)",
|
||||
"ca": "Una cistella de residus per a envasos de plàstic, envasos metàl·lics i cartons de begudes (PMD)"
|
||||
"ca": "Una cistella de residus per a envasos de plàstic, envasos metàl·lics i cartons de begudes (PMD)",
|
||||
"cs": "Odpadkový koš pro plastové a kovové obaly a pro nápojové kartony (PMD)"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -439,7 +440,8 @@
|
|||
"nl": "Vuilnisbak voor plastic verpakkingen, metalen verpakkingen en drankpakken (PMD)",
|
||||
"de": "Papierkorb für Kunststoffverpackungen, Metallverpackungen und Getränkekartons (Tetrapak)",
|
||||
"es": "Contenedor para envases de plástico, envases metálicos y cartones de bebidas (PMD)",
|
||||
"ca": "Cistella de residus per a envasos de plàstic, envasos metàl·lics i cartons de begudes (PMD)"
|
||||
"ca": "Cistella de residus per a envasos de plàstic, envasos metàl·lics i cartons de begudes (PMD)",
|
||||
"cs": "Odpadkový koš pro plastové a kovové obaly a pro nápojové kartony (PMD)"
|
||||
},
|
||||
"osmTags": "waste~i~.*pmd.*"
|
||||
},
|
||||
|
@ -449,7 +451,8 @@
|
|||
"nl": "Vuilnisbak voor papier",
|
||||
"de": "Papierkorb für Papier",
|
||||
"es": "Contenedor para papel",
|
||||
"ca": "Cistella de residus per a paper"
|
||||
"ca": "Cistella de residus per a paper",
|
||||
"cs": "Odpadkový koš pro papír"
|
||||
},
|
||||
"osmTags": "waste~i~.*paper.*"
|
||||
}
|
||||
|
|
|
@ -48,5 +48,45 @@
|
|||
"sources": [
|
||||
"https://source.mapcomplete.org/MapComplete/MapComplete/pulls/2349/files#diff-a27dbd36795c9186dfd9f614f3a7f06709b64d2c"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "wayside_cross.svg",
|
||||
"license": "CC0-1.0",
|
||||
"authors": [
|
||||
"Geozeisig"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Christian-16.svg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "wayside_cross_example1.jpg",
|
||||
"license": "CC-BY-SA-4.0",
|
||||
"authors": [
|
||||
"Przykuta"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Gor%C4%99dy_krzy%C5%BCe_13.07.2009_p.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "wayside_cross_example2.jpg",
|
||||
"license": "CC0-1.0",
|
||||
"authors": [
|
||||
"Markus B"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Wegkreuz.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"path": "wayside_cross_example3.jpg",
|
||||
"license": "CC-BY-SA 3.0",
|
||||
"authors": [
|
||||
"HeinzLW"
|
||||
],
|
||||
"sources": [
|
||||
"https://wiki.openstreetmap.org/wiki/File:Schaederkreuz.jpg"
|
||||
]
|
||||
}
|
||||
]
|
25
assets/layers/wayside_shrine/wayside_cross.svg
Normal file
25
assets/layers/wayside_shrine/wayside_cross.svg
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
version="1.1"
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 16 16"
|
||||
id="svg2">
|
||||
<metadata id="metadata8">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs id="defs6"/>
|
||||
<rect width="16" height="16" x="0" y="0" id="canvas" style="fill:none;stroke:none;visibility:hidden"/>
|
||||
<path d="M 7,0 C 5.999999,0 6.000001,1 6.000001,1 L 6,4 2,4 l 0,2 4,0 1e-6,8 2.000001,0 -1e-6,-8 4,0 0,-2 -4,0 0,-3 c 0,0 0,-1 -1.000001,-1 z" id="christian" style="fill:#000000;fill-opacity:1;stroke:none" transform="translate(1,1)"/>
|
||||
</svg>
|
After (image error) Size: 1,000 B |
2
assets/layers/wayside_shrine/wayside_cross.svg.license
Normal file
2
assets/layers/wayside_shrine/wayside_cross.svg.license
Normal file
|
@ -0,0 +1,2 @@
|
|||
SPDX-FileCopyrightText: Geozeisig
|
||||
SPDX-License-Identifier: CC0-1.0
|
BIN
assets/layers/wayside_shrine/wayside_cross_example1.jpg
Normal file
BIN
assets/layers/wayside_shrine/wayside_cross_example1.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 60 KiB |
|
@ -0,0 +1,2 @@
|
|||
SPDX-FileCopyrightText: Przykuta
|
||||
SPDX-License-Identifier: CC-BY-SA-4.0
|
BIN
assets/layers/wayside_shrine/wayside_cross_example2.jpg
Normal file
BIN
assets/layers/wayside_shrine/wayside_cross_example2.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 53 KiB |
|
@ -0,0 +1,2 @@
|
|||
SPDX-FileCopyrightText: Markus B
|
||||
SPDX-License-Identifier: CC0-1.0
|
BIN
assets/layers/wayside_shrine/wayside_cross_example3.jpg
Normal file
BIN
assets/layers/wayside_shrine/wayside_cross_example3.jpg
Normal file
Binary file not shown.
After ![]() (image error) Size: 214 KiB |
|
@ -0,0 +1,2 @@
|
|||
SPDX-FileCopyrightText: HeinzLW
|
||||
SPDX-License-Identifier: CC-BY-SA 3.0
|
|
@ -1,19 +1,35 @@
|
|||
{
|
||||
"id": "wayside_shrine",
|
||||
"name": {
|
||||
"en": "Wayside Shrines"
|
||||
"en": "Wayside Shrines and Crosses"
|
||||
},
|
||||
"description": {
|
||||
"en": "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."
|
||||
"en": "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. Wayside crosses can be seen as a sub-type of a wayside shrine, typically in the form of a Christian cross at the side of the road, typically without votive offerings."
|
||||
},
|
||||
"source": {
|
||||
"osmTags": "historic=wayside_shrine"
|
||||
"osmTags": {
|
||||
"or": [
|
||||
"historic=wayside_shrine",
|
||||
"historic=wayside_cross"
|
||||
]
|
||||
}
|
||||
},
|
||||
"minzoom": 12,
|
||||
"title": {
|
||||
"render": {
|
||||
"en": "Wayside Shrine {name}"
|
||||
}
|
||||
"mappings": [
|
||||
{
|
||||
"if": "historic=wayside_shrine",
|
||||
"then": {
|
||||
"en": "Wayside Shrine {name}"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "historic=wayside_cross",
|
||||
"then": {
|
||||
"en": "Wayside Cross {name}"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"pointRendering": [
|
||||
{
|
||||
|
@ -28,7 +44,19 @@
|
|||
"color": "white"
|
||||
},
|
||||
{
|
||||
"icon": "./assets/layers/wayside_shrine/shrine.svg"
|
||||
"icon": {
|
||||
"render": "./assets/layers/wayside_shrine/shrine.svg",
|
||||
"mappings": [
|
||||
{
|
||||
"if": "historic=wayside_cross",
|
||||
"then": "./assets/layers/wayside_shrine/wayside_cross.svg"
|
||||
},
|
||||
{
|
||||
"if": "historic=wayside_shrine",
|
||||
"then": "./assets/layers/wayside_shrine/shrine.svg"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -72,13 +100,45 @@
|
|||
"exampleImages": [
|
||||
"./assets/layers/wayside_shrine/MountedShrineExample.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": {
|
||||
"en": "a wayside cross"
|
||||
},
|
||||
"tags": [
|
||||
"historic=wayside_cross",
|
||||
"religion=christian"
|
||||
],
|
||||
"description": {
|
||||
"en": "A wayside cross is a christian cross that is placed by a road or pathway."
|
||||
},
|
||||
"exampleImages": [
|
||||
"./assets/layers/wayside_shrine/wayside_cross_example1.jpg",
|
||||
"./assets/layers/wayside_shrine/wayside_cross_example2.jpg",
|
||||
"./assets/layers/wayside_shrine/wayside_cross_example3.jpg"
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": {
|
||||
"en": "a wayside cross mounted on a wall"
|
||||
},
|
||||
"tags": [
|
||||
"religion=christian",
|
||||
"historic=wayside_cross"
|
||||
],
|
||||
"snapToLayer": [
|
||||
"walls_and_buildings"
|
||||
],
|
||||
"description": {
|
||||
"en": "A wayside cross is a christian cross that is placed by a road or pathway. This cross is mounted on a wall"
|
||||
}
|
||||
}
|
||||
],
|
||||
"tagRenderings": [
|
||||
"images",
|
||||
{
|
||||
"question": {
|
||||
"en": "What's the name of this shrine?"
|
||||
"en": "What's the name of this {title()}?"
|
||||
},
|
||||
"id": "shrine_name",
|
||||
"labels": [
|
||||
|
@ -92,7 +152,7 @@
|
|||
]
|
||||
},
|
||||
"render": {
|
||||
"en": "The name of this shrine is <b>{name}</b>"
|
||||
"en": "The name of this {title()} is <b>{name}</b>"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
|
@ -104,6 +164,38 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "inscription",
|
||||
"question": {
|
||||
"en": "Is there an inscription?"
|
||||
},
|
||||
"render": {
|
||||
"en": "The inscription is <b>{inscription}</b>"
|
||||
},
|
||||
"freeform": {
|
||||
"key": "inscription"
|
||||
},
|
||||
"mappings": [
|
||||
{
|
||||
"if": "not:inscription=yes",
|
||||
"then": {
|
||||
"en": "No inscription"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "inscription=Ave Maria",
|
||||
"then": {
|
||||
"en": "The inscription is <b>Ave Maria</b>"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "inscription=I.N.R.I",
|
||||
"then": {
|
||||
"en": "The inscription is <b>I.N.R.I.</b>"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"question": {
|
||||
"en": "To which religion is this shrine dedicated?"
|
||||
|
@ -187,11 +279,12 @@
|
|||
},
|
||||
"render": {
|
||||
"en": "This shrine is {religion}"
|
||||
}
|
||||
},
|
||||
"condition": "historic!=wayside_cross"
|
||||
},
|
||||
{
|
||||
"question": {
|
||||
"en": "What's the Christian denomination of the shrine?"
|
||||
"en": "What's the Christian denomination of this {title()}?"
|
||||
},
|
||||
"id": "denomination_christian",
|
||||
"labels": [
|
||||
|
@ -267,6 +360,7 @@
|
|||
"render": {
|
||||
"en": "The religious denomination is <b>{denomination}</b>"
|
||||
},
|
||||
"multiAnswer": false,
|
||||
"freeform": {
|
||||
"key": "denomination"
|
||||
}
|
||||
|
@ -296,6 +390,7 @@
|
|||
"labels": [
|
||||
"shrine_questions"
|
||||
],
|
||||
"multiAnswer": true,
|
||||
"freeform": {
|
||||
"key": "denomination"
|
||||
},
|
||||
|
@ -342,6 +437,7 @@
|
|||
"labels": [
|
||||
"shrine_questions"
|
||||
],
|
||||
"multiAnswer": true,
|
||||
"freeform": {
|
||||
"key": "denomination"
|
||||
},
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="40mm"
|
||||
height="40mm"
|
||||
viewBox="0 0 40 40"
|
||||
width="512mm"
|
||||
height="512mm"
|
||||
viewBox="0 0 512 512"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
inkscape:version="1.3.2 (1:1.3.2+202311252150+091e20ef0f)"
|
||||
sodipodi:docname="wall_painting.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
|
@ -28,47 +28,57 @@
|
|||
inkscape:snap-global="true"
|
||||
inkscape:snap-others="false"
|
||||
inkscape:snap-to-guides="false"
|
||||
inkscape:zoom="2.5894514"
|
||||
inkscape:cx="4.2480041"
|
||||
inkscape:cy="59.665148"
|
||||
inkscape:zoom="0.27482279"
|
||||
inkscape:cx="871.47066"
|
||||
inkscape:cy="678.61911"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="995"
|
||||
inkscape:window-height="1005"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1">
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:deskcolor="#d1d1d1">
|
||||
<sodipodi:guide
|
||||
position="-1.158135,35.017833"
|
||||
orientation="0,-1"
|
||||
id="guide1027" />
|
||||
id="guide1027"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="-0.65554813,30.013816"
|
||||
orientation="0,-1"
|
||||
id="guide1029" />
|
||||
id="guide1029"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="-0.5462901,25.009798"
|
||||
orientation="0,-1"
|
||||
id="guide1031" />
|
||||
id="guide1031"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="-0.5025869,20.005781"
|
||||
orientation="0,-1"
|
||||
id="guide1033" />
|
||||
id="guide1033"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="-0.30592246,15.001764"
|
||||
orientation="0,-1"
|
||||
id="guide1035" />
|
||||
id="guide1035"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="-0.10925802,9.9977463"
|
||||
orientation="0,-1"
|
||||
id="guide1037" />
|
||||
id="guide1037"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="-0.021851604,4.993729"
|
||||
orientation="0,-1"
|
||||
id="guide1039" />
|
||||
id="guide1039"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="-0.15296123,0.033414841"
|
||||
orientation="0,-1"
|
||||
id="guide1041" />
|
||||
id="guide1041"
|
||||
inkscape:locked="false" />
|
||||
</sodipodi:namedview>
|
||||
<defs
|
||||
id="defs2">
|
||||
|
@ -86,26 +96,25 @@
|
|||
</mask>
|
||||
<inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="212.23055 : 183.79824 : 1"
|
||||
inkscape:vp_x="212.23055 : 655.79823 : 1"
|
||||
inkscape:vp_y="-138.82678 : 127.6308 : 0"
|
||||
inkscape:vp_z="102.00732 : 223.33213 : 1"
|
||||
inkscape:persp3d-origin="275.61188 : 262.5309 : 1"
|
||||
inkscape:vp_z="102.00732 : 695.33212 : 1"
|
||||
inkscape:persp3d-origin="275.61188 : 734.53089 : 1"
|
||||
id="perspective7227" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="bg"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.799999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:10.0731;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3582"
|
||||
width="40.666897"
|
||||
height="40.617493"
|
||||
width="512.05225"
|
||||
height="511.43018"
|
||||
x="-0.026121488"
|
||||
y="-0.074673384"
|
||||
rx="1.0000006" />
|
||||
rx="12.591385" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
|
@ -114,7 +123,8 @@
|
|||
style="display:inline">
|
||||
<g
|
||||
id="g4136"
|
||||
mask="url(#mask1309)">
|
||||
mask="url(#mask1309)"
|
||||
transform="matrix(12.591377,0,0,12.591377,0.30278402,0.86556738)">
|
||||
<rect
|
||||
style="fill:#e75316;fill-opacity:1;stroke:#cccccc;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:100;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1329"
|
||||
|
@ -934,7 +944,7 @@
|
|||
</g>
|
||||
<path
|
||||
sodipodi:type="spiral"
|
||||
style="fill:#001fff;fill-opacity:0.37284482;fill-rule:evenodd;stroke:#ffffff;stroke-width:13.9078929;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.9912985"
|
||||
style="fill:#001fff;fill-opacity:0.372845;fill-rule:evenodd;stroke:#ffffff;stroke-width:13.9079;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.991298"
|
||||
id="path4178"
|
||||
sodipodi:cx="354.86203"
|
||||
sodipodi:cy="373.78302"
|
||||
|
@ -943,11 +953,11 @@
|
|||
sodipodi:radius="74.712395"
|
||||
sodipodi:argument="-25.492455"
|
||||
sodipodi:t0="0.038965192"
|
||||
transform="matrix(0.16181313,0,0,0.14314247,-46.638251,-41.315378)"
|
||||
transform="matrix(2.0374502,0,0,1.8023609,-586.93703,-519.35195)"
|
||||
d="m 357.71341,374.37007 c 4.26414,3.70709 -1.33671,9.32671 -5.07702,10.22323 -8.90331,2.13404 -16.0483,-6.51539 -16.54354,-14.67451 -0.80844,-13.31906 11.72945,-23.06078 24.27201,-22.86385 17.66382,0.27733 30.16537,16.97051 29.18416,33.8695 -1.27726,21.99757 -22.22018,37.31028 -43.467,35.50447 -26.32945,-2.23779 -44.47651,-27.47377 -41.82478,-53.06449 3.17716,-30.66134 32.72957,-51.65542 62.66199,-48.14509 34.99363,4.10388 58.84245,37.98678 54.46539,72.25948 -4.08654,31.99797 -30.76626,56.97365 -62.46783,60.90649" />
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="opacity:1;fill:#001fff;fill-opacity:0.37284482;stroke:#ffffff;stroke-width:12.71010332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.9912985"
|
||||
style="opacity:1;fill:#001fff;fill-opacity:0.372845;stroke:#ffffff;stroke-width:12.7101;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.991298"
|
||||
id="path4180"
|
||||
sodipodi:sides="5"
|
||||
sodipodi:cx="355.44702"
|
||||
|
@ -959,9 +969,9 @@
|
|||
inkscape:flatsided="false"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
inkscape:transform-center-x="-1.420664"
|
||||
inkscape:transform-center-y="-1.4924413"
|
||||
transform="matrix(0.14633311,-0.09389576,0.08614253,0.13424997,-69.033262,-12.7164)"
|
||||
inkscape:transform-center-x="-17.888111"
|
||||
inkscape:transform-center-y="-18.791889"
|
||||
transform="matrix(1.8425354,-1.1822769,1.0846531,1.690392,-868.92107,-159.25142)"
|
||||
d="m 375.44702,604.95685 -31.36911,-32.59461 -39.51394,10.15676 21.30573,-39.90609 -21.87013,-34.44138 44.53677,7.9313 25.99746,-31.4427 6.21951,44.80789 37.93744,15.00872 -40.6929,19.76151 z" />
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before (image error) Size: 40 KiB After (image error) Size: 40 KiB |
|
@ -4,7 +4,7 @@
|
|||
"en": "Wayside shrines"
|
||||
},
|
||||
"description": {
|
||||
"en": "This map shows shrines found on the side of roads and paths, and allows adding new ones"
|
||||
"en": "This map shows shrines and crosses found on the side of roads and paths, and allows adding new ones"
|
||||
},
|
||||
"icon": "./assets/layers/wayside_shrine/shrine.svg",
|
||||
"layers": [
|
||||
|
|
|
@ -4737,6 +4737,17 @@
|
|||
"question": "Jaká je hloubka tohoto výtahu?",
|
||||
"render": "Tento výtah má hloubku {canonical(length)}"
|
||||
},
|
||||
"elevator-shape": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tento výtah má obdélníkový tvar"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tento výtah má kruhový tvar"
|
||||
}
|
||||
},
|
||||
"question": "Jaký tvar má tento výtah?"
|
||||
},
|
||||
"elevator-width": {
|
||||
"question": "Jaká je šířka tohoto výtahu?",
|
||||
"render": "Tento výtah má šířku {canonical(width)}"
|
||||
|
@ -5291,6 +5302,49 @@
|
|||
"render": "Hasičská stanice"
|
||||
}
|
||||
},
|
||||
"firepit": {
|
||||
"description": "Venkovní místo k rozdělávání ohně, typicky otevřené veřejnosti.",
|
||||
"name": "Ohniště",
|
||||
"presets": {
|
||||
"0": {
|
||||
"description": "Venkovní místo k rozdělávání ohně, typicky otevřené veřejnosti.",
|
||||
"title": "Ohniště"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"access": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Veřejné"
|
||||
},
|
||||
"1": {
|
||||
"then": "Nepřístupné"
|
||||
},
|
||||
"2": {
|
||||
"then": "Soukromé"
|
||||
},
|
||||
"3": {
|
||||
"then": "Přístupné, dokud není přístup odvolán"
|
||||
},
|
||||
"4": {
|
||||
"then": "Přístupné jen pro zákazníky"
|
||||
},
|
||||
"5": {
|
||||
"then": "Přístupné jen na povolení"
|
||||
}
|
||||
},
|
||||
"question": "Jaký přístup je povolen?"
|
||||
},
|
||||
"seasonal": {
|
||||
"override": {
|
||||
"question": "Je ohniště k dispozici po celý rok?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"render": "Ohniště"
|
||||
}
|
||||
},
|
||||
"fitness_centre": {
|
||||
"description": "Vrstva zobrazující fitness centra",
|
||||
"name": "Fitness centra",
|
||||
|
@ -5555,6 +5609,9 @@
|
|||
"14": {
|
||||
"then": "Podávají se zde thajské pokrmy"
|
||||
},
|
||||
"15": {
|
||||
"then": "Podávají se tu mexická jídla"
|
||||
},
|
||||
"16": {
|
||||
"then": "Podávají se zde japonská jídla"
|
||||
},
|
||||
|
@ -5671,6 +5728,9 @@
|
|||
},
|
||||
"3": {
|
||||
"then": "Všechna jídla jsou vegetariánská"
|
||||
},
|
||||
"4": {
|
||||
"then": "Některá jídla lze na vyžádání upravit do vegetariánské verze"
|
||||
}
|
||||
},
|
||||
"question": "Nabízí tato restaurace vegetariánskou variantu?"
|
||||
|
@ -7548,6 +7608,9 @@
|
|||
},
|
||||
"2": {
|
||||
"then": "Tento piknikový stůl je vyroben z plastu (recyklované)"
|
||||
},
|
||||
"3": {
|
||||
"then": "Tento piknikový stůl je vyroben z kovu"
|
||||
}
|
||||
},
|
||||
"question": "Z jakého materiálu je vyroben tento piknikový stůl?",
|
||||
|
@ -7589,6 +7652,14 @@
|
|||
"question": "Je toto hřiště přístupné pro vozíčkáře?"
|
||||
},
|
||||
"fee": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "K použití zdarma"
|
||||
},
|
||||
"1": {
|
||||
"then": "Placené hřiště"
|
||||
}
|
||||
},
|
||||
"question": "Musí se platit za použití tohoto hřiště?"
|
||||
},
|
||||
"playground-access": {
|
||||
|
@ -7687,6 +7758,9 @@
|
|||
},
|
||||
"8": {
|
||||
"then": "Povrch je tartan - syntetický, pružný povrch typicky vídaný na atletických stadionech"
|
||||
},
|
||||
"9": {
|
||||
"then": "Tento povrch je vyroben z gumy, například gumové dlaždice, granule nebo velká gumová plocha"
|
||||
}
|
||||
},
|
||||
"question": "Jaký je povrch tohoto hřiště?",
|
||||
|
@ -7703,12 +7777,69 @@
|
|||
"render": "Dětské hřiště"
|
||||
}
|
||||
},
|
||||
"playground_equipment": {
|
||||
"description": "Vrstva ukazující vybavení hřiště",
|
||||
"name": "Vybavení hřiště"
|
||||
},
|
||||
"police": {
|
||||
"description": "Více typů policejních zařízení ",
|
||||
"name": "Policejní stanice",
|
||||
"presets": {
|
||||
"0": {
|
||||
"description": "Policejní služebna, kam může obecná veřejnost přijít se svými požadavky",
|
||||
"title": "policejní služebna"
|
||||
},
|
||||
"1": {
|
||||
"description": "Místo, kde policie provádí kontrolu cestujících",
|
||||
"title": "kontrolní stanoviště policie"
|
||||
},
|
||||
"2": {
|
||||
"description": "Administrativní služebna policie bez služeb pro obecnou veřejnost.",
|
||||
"title": "administrativní zázemí policie"
|
||||
},
|
||||
"3": {
|
||||
"description": "Věznice provozovaná policií bez veřejných služeb. Lidé jsou zde zadržováni po krátký čas (nejvýše několik dní), např. za drobná provinění, rušení veřejného pořádku nebo při čekání na soud"
|
||||
},
|
||||
"4": {
|
||||
"description": "Námořní nebo pobřežní základna námořní policie; často s přístavištěm a policejními loděmi poblíž"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"4_z2nrdhy6tyyh4fd": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tato policejní služebna má cely pro zadržování lidí"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tato policejní služebna nemá cely pro zadržování lidí"
|
||||
}
|
||||
},
|
||||
"question": "Má tato policejní služebna zařízení pro zadržování lidí?"
|
||||
},
|
||||
"police_name": {
|
||||
"question": "Jaký je název tohoto policejního zařízení?",
|
||||
"render": "<b>{name}</b>"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"render": "{name}"
|
||||
}
|
||||
},
|
||||
"postboxes": {
|
||||
"description": "Vrstva zobrazující poštovní schránky.",
|
||||
"name": "Poštovní schránky",
|
||||
"presets": {
|
||||
"0": {
|
||||
"title": "poštovní schránka"
|
||||
},
|
||||
"1": {
|
||||
"title": "poštovní schránka na zdi"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"operator": {
|
||||
"question": "Kdo provozuje tuto poštovní schránku?",
|
||||
"render": "Tuto poštovní schránku provozuje <b>{operator}</b>"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
|
@ -7717,6 +7848,36 @@
|
|||
},
|
||||
"postoffices": {
|
||||
"description": "Vrstva zobrazující pošty.",
|
||||
"filter": {
|
||||
"1": {
|
||||
"options": {
|
||||
"0": {
|
||||
"question": "Nabízí posílání dopisů"
|
||||
}
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"options": {
|
||||
"0": {
|
||||
"question": "Nabízí posílání balíků"
|
||||
}
|
||||
}
|
||||
},
|
||||
"3": {
|
||||
"options": {
|
||||
"0": {
|
||||
"question": "Nabízí vyzvedávání nedoručených balíků"
|
||||
}
|
||||
}
|
||||
},
|
||||
"5": {
|
||||
"options": {
|
||||
"0": {
|
||||
"question": "Prodává známky"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"name": "Pošty",
|
||||
"presets": {
|
||||
"0": {
|
||||
|
@ -8273,6 +8434,27 @@
|
|||
"repeated": {
|
||||
"render": "V patrech {repeat_on} lze nalézt více identických objektů."
|
||||
},
|
||||
"seasonal": {
|
||||
"mappings": {
|
||||
"1": {
|
||||
"then": "Dostupné jen v létě"
|
||||
},
|
||||
"2": {
|
||||
"then": "Během zimy zavřeno"
|
||||
}
|
||||
},
|
||||
"question": "Je {title()} dostupné po celý rok?"
|
||||
},
|
||||
"seating": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Toto místo má venkovní posezení"
|
||||
},
|
||||
"1": {
|
||||
"then": "Toto místo má vnitřní posezení"
|
||||
}
|
||||
}
|
||||
},
|
||||
"service:electricity": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
|
@ -8735,6 +8917,9 @@
|
|||
"presets": {
|
||||
"0": {
|
||||
"title": "základní nebo střední škola"
|
||||
},
|
||||
"1": {
|
||||
"title": "mateřská škola"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
|
@ -8786,7 +8971,59 @@
|
|||
"question": "Které pohlaví se může na tuto školu přihlásit?"
|
||||
},
|
||||
"is_special_needs": {
|
||||
"question": "Zaměřuje se tato škola na studenty se speciálními potřebami?"
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Tato škola je jen pro studenty se zvláštními potřebami; pro zápis je potřeba potvrzení"
|
||||
},
|
||||
"1": {
|
||||
"then": "Tato škola má samostatnou sekci pro studenty se zvláštními potřebami."
|
||||
},
|
||||
"2": {
|
||||
"then": "Studenti se zvláštními potřebami a ostatní studenti se učí společně."
|
||||
},
|
||||
"3": {
|
||||
"then": "Tato škola nabízí omezenou ad hoc podporu, ale nemá významnou odbornost a nelze ji považovat za školu pro studenty se zvláštními potřebami."
|
||||
},
|
||||
"4": {
|
||||
"then": "Tato škola nemá podporu pro studenty se zvláštními potřebami."
|
||||
},
|
||||
"5": {
|
||||
"then": "Tato škola je pro studenty se zvláštními potřebami."
|
||||
}
|
||||
},
|
||||
"question": "Zaměřuje se tato škola na studenty se speciálními potřebami?",
|
||||
"questionHint": "Škola pro studenty se zvláštními potřebami má odbornost a podporuje studenty se (závažnými) diagnózami. V mnoha zemích je pro zápis potřeba potvrzení."
|
||||
},
|
||||
"orientation_belgium": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Připravuje pro akademické studium na univerzitě"
|
||||
},
|
||||
"1": {
|
||||
"then": "Připravuje pro profesní studium na vysoké škole"
|
||||
},
|
||||
"2": {
|
||||
"then": "Připravuje pro praxi"
|
||||
}
|
||||
},
|
||||
"question": "Pro co tato škola žáky vyučuje?"
|
||||
},
|
||||
"orientation_belgium_special_needs": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "<b>Výuka typu 1</b>: učí základní životní dovednosti pro život v instituci. Není cílem vykonávat (placenou) práci"
|
||||
},
|
||||
"1": {
|
||||
"then": "<b>Výuka typu 2</b>: připravuje pro práci v prostředí se zvláštní péčí a v zařízeních, jako je chráněná dílna"
|
||||
},
|
||||
"2": {
|
||||
"then": "<b>Výuka typu 3</b>: připravuje pro zaměstnání a (víceméně) nezávislý život ve společnosti"
|
||||
},
|
||||
"3": {
|
||||
"then": "<b>Výuka typu 4</b>: připravuje pro zaměstnání a pokračující vzdělávání"
|
||||
}
|
||||
},
|
||||
"question": "Pro co tato škola žáky učí?"
|
||||
},
|
||||
"pedagogy": {
|
||||
"mappings": {
|
||||
|
@ -8834,6 +9071,62 @@
|
|||
"school-name": {
|
||||
"question": "Jak se jmenuje tato škola?",
|
||||
"render": "Tato škola se jmenuje {name}"
|
||||
},
|
||||
"special_needs_categories_be": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Pro studenty s postižením intelektu (typ 2)"
|
||||
},
|
||||
"1": {
|
||||
"then": "Pro studenty s emocionálními a behaviorálními potížemi (typ 3)"
|
||||
},
|
||||
"2": {
|
||||
"then": "Pro studenty s fyzickým postižením (typ 4)"
|
||||
},
|
||||
"3": {
|
||||
"then": "Pro nevidomé a zrakově hendikepované studenty (typ 6)"
|
||||
},
|
||||
"4": {
|
||||
"then": "Pro neslyšící a sluchově hendikepované studenty (typ 7)"
|
||||
},
|
||||
"5": {
|
||||
"then": "Pro studenty s vývojovou dysfázií (typ 7 -DLD)"
|
||||
},
|
||||
"6": {
|
||||
"then": "Pro studenty s poruchami autistického spektra (typ 9)"
|
||||
},
|
||||
"7": {
|
||||
"then": "Pro studenty s poruchami učení (základní nabídka)"
|
||||
}
|
||||
},
|
||||
"question": "Pro jaký druh zvláštních potřeb je to zde připraveno?"
|
||||
},
|
||||
"uniform": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Studenti musejí nosit uniformu, která je přesně popsána"
|
||||
},
|
||||
"1": {
|
||||
"then": "Studenti musejí nosit oblečení specifického barevného schématu"
|
||||
},
|
||||
"2": {
|
||||
"then": "Nejsou tu žádné formální požadavky na oblečení, studenti mohou nosit běžné oblečení jako trička, džíny..."
|
||||
},
|
||||
"3": {
|
||||
"then": "Paže musejí být zakryté oblečením"
|
||||
},
|
||||
"4": {
|
||||
"then": "Kolena musejí být zakrytá oblečením"
|
||||
},
|
||||
"5": {
|
||||
"then": "Nohy musejí být zakryty oblečením"
|
||||
},
|
||||
"6": {
|
||||
"then": "Břicho musí být zakryto oblečením"
|
||||
}
|
||||
},
|
||||
"question": "Musejí žáci nosit uniformu nebo dodržovat požadavky na oblečení?",
|
||||
"render": "{dress_code}"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
|
@ -9264,6 +9557,30 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"souvenir_coin": {
|
||||
"description": "Vrstva ukazuje automaty na prodej upomínkových mincí",
|
||||
"name": "Automat na upomínkové mince",
|
||||
"presets": {
|
||||
"0": {
|
||||
"description": "Přidat automat na prodej upomínkových mincí",
|
||||
"title": "automat na prodej upomínkových mincí"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"charge": {
|
||||
"freeform": {
|
||||
"placeholder": "Cena (např. 2 EUR)"
|
||||
},
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Upomínková mince stojí 2 eura"
|
||||
}
|
||||
},
|
||||
"question": "Kolik stojí upomínková mince?",
|
||||
"render": "Upomínková mince stojí {charge}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"souvenir_note": {
|
||||
"tagRenderings": {
|
||||
"designs": {
|
||||
|
@ -9485,12 +9802,153 @@
|
|||
"tagRenderings": {
|
||||
"sport_centre-sport": {
|
||||
"mappings": {
|
||||
"106": {
|
||||
"then": "Squash"
|
||||
},
|
||||
"107": {
|
||||
"then": "Sumo"
|
||||
},
|
||||
"108": {
|
||||
"then": "Surfování"
|
||||
},
|
||||
"109": {
|
||||
"then": "Plavání"
|
||||
},
|
||||
"11": {
|
||||
"then": "Baseball"
|
||||
},
|
||||
"110": {
|
||||
"then": "Stolní tenis"
|
||||
},
|
||||
"111": {
|
||||
"then": "Stolní fotbal"
|
||||
},
|
||||
"112": {
|
||||
"then": "Taekwondo"
|
||||
},
|
||||
"113": {
|
||||
"then": "Tenis"
|
||||
},
|
||||
"114": {
|
||||
"then": "Teqball"
|
||||
},
|
||||
"115": {
|
||||
"then": "Tobogán"
|
||||
},
|
||||
"116": {
|
||||
"then": "Trampolína"
|
||||
},
|
||||
"117": {
|
||||
"then": "Ultimate frisbee"
|
||||
},
|
||||
"118": {
|
||||
"then": "Ultralehké létání"
|
||||
},
|
||||
"119": {
|
||||
"then": "Volejbal"
|
||||
},
|
||||
"12": {
|
||||
"then": "Basketbal"
|
||||
},
|
||||
"120": {
|
||||
"then": "Wakeboarding"
|
||||
},
|
||||
"121": {
|
||||
"then": "Vodní pólo"
|
||||
},
|
||||
"122": {
|
||||
"then": "Vodní lyžování"
|
||||
},
|
||||
"123": {
|
||||
"then": "Olympijské vzpírání"
|
||||
},
|
||||
"124": {
|
||||
"then": "Windsurfing"
|
||||
},
|
||||
"125": {
|
||||
"then": "Wrestling"
|
||||
},
|
||||
"126": {
|
||||
"then": "Jóga"
|
||||
},
|
||||
"127": {
|
||||
"then": "Íránský zápas"
|
||||
},
|
||||
"13": {
|
||||
"then": "Plážový volejbal"
|
||||
},
|
||||
"14": {
|
||||
"then": "Biatlon"
|
||||
},
|
||||
"15": {
|
||||
"then": "Kulečník"
|
||||
},
|
||||
"16": {
|
||||
"then": "BMX"
|
||||
},
|
||||
"17": {
|
||||
"then": "Bobování"
|
||||
},
|
||||
"18": {
|
||||
"then": "Koulové sporty"
|
||||
},
|
||||
"19": {
|
||||
"then": "Bowls"
|
||||
},
|
||||
"2": {
|
||||
"then": "Aerobic"
|
||||
},
|
||||
"20": {
|
||||
"then": "Box"
|
||||
},
|
||||
"21": {
|
||||
"then": "Býčí zápasy"
|
||||
},
|
||||
"22": {
|
||||
"then": "Kanadský fotbal"
|
||||
},
|
||||
"23": {
|
||||
"then": "Kanoe"
|
||||
},
|
||||
"24": {
|
||||
"then": "Šachy"
|
||||
},
|
||||
"25": {
|
||||
"then": "Nesoutěžní potápění"
|
||||
},
|
||||
"26": {
|
||||
"then": "Sportovní lezení"
|
||||
},
|
||||
"28": {
|
||||
"then": "Kohoutí zápasy"
|
||||
},
|
||||
"29": {
|
||||
"then": "Kriket"
|
||||
},
|
||||
"3": {
|
||||
"then": "Americký fotbal"
|
||||
},
|
||||
"30": {
|
||||
"then": "CrossFit"
|
||||
},
|
||||
"31": {
|
||||
"then": "Kroket"
|
||||
},
|
||||
"32": {
|
||||
"then": "Curling"
|
||||
},
|
||||
"34": {
|
||||
"then": "Cyklistika"
|
||||
},
|
||||
"35": {
|
||||
"then": "Tanec"
|
||||
},
|
||||
"36": {
|
||||
"then": "Šipky"
|
||||
},
|
||||
"37": {
|
||||
"then": "Psí agility"
|
||||
},
|
||||
"38": {
|
||||
"then": "Závody chrtů"
|
||||
},
|
||||
|
@ -9506,6 +9964,12 @@
|
|||
"41": {
|
||||
"then": "Šerm"
|
||||
},
|
||||
"42": {
|
||||
"then": "Pozemní hokej"
|
||||
},
|
||||
"43": {
|
||||
"then": "Fitness"
|
||||
},
|
||||
"45": {
|
||||
"then": "Florbal"
|
||||
},
|
||||
|
@ -9527,6 +9991,39 @@
|
|||
"53": {
|
||||
"then": "Házená"
|
||||
},
|
||||
"58": {
|
||||
"then": "Lední hokej"
|
||||
},
|
||||
"59": {
|
||||
"then": "Lední bruslení"
|
||||
},
|
||||
"6": {
|
||||
"then": "Atletika"
|
||||
},
|
||||
"60": {
|
||||
"then": "Metaná"
|
||||
},
|
||||
"61": {
|
||||
"then": "Judo"
|
||||
},
|
||||
"62": {
|
||||
"then": "Karate"
|
||||
},
|
||||
"63": {
|
||||
"then": "Motokáry"
|
||||
},
|
||||
"64": {
|
||||
"then": "Kickbox"
|
||||
},
|
||||
"65": {
|
||||
"then": "Kitesurfing"
|
||||
},
|
||||
"66": {
|
||||
"then": "Korfbal"
|
||||
},
|
||||
"67": {
|
||||
"then": "Krachtball"
|
||||
},
|
||||
"68": {
|
||||
"then": "Lakros"
|
||||
},
|
||||
|
@ -9557,11 +10054,38 @@
|
|||
"82": {
|
||||
"then": "Parašutismus"
|
||||
},
|
||||
"87": {
|
||||
"then": "Pilates"
|
||||
},
|
||||
"88": {
|
||||
"then": "Pole dance"
|
||||
},
|
||||
"89": {
|
||||
"then": "Raketbal"
|
||||
},
|
||||
"9": {
|
||||
"then": "Bandy hokej"
|
||||
},
|
||||
"90": {
|
||||
"then": "RC auta"
|
||||
},
|
||||
"91": {
|
||||
"then": "Kolečkové brusle"
|
||||
},
|
||||
"92": {
|
||||
"then": "Veslování"
|
||||
},
|
||||
"93": {
|
||||
"then": "Třináctkové ragby"
|
||||
},
|
||||
"94": {
|
||||
"then": "Patnáctkové ragby"
|
||||
},
|
||||
"95": {
|
||||
"then": "Běhání"
|
||||
},
|
||||
"96": {
|
||||
"then": "Jachting"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -9585,7 +10109,8 @@
|
|||
"4": {
|
||||
"then": "Nejedná se o eskalátor"
|
||||
}
|
||||
}
|
||||
},
|
||||
"question": "Jedná se o eskalátor?"
|
||||
},
|
||||
"handrail": {
|
||||
"mappings": {
|
||||
|
@ -10342,18 +10867,46 @@
|
|||
"render": "Toaleta v objektu"
|
||||
}
|
||||
},
|
||||
"tool_library": {
|
||||
"tagRenderings": {
|
||||
"membership_charge": {
|
||||
"question": "Kolik stojí členství?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tourism_accomodation": {
|
||||
"filter": {
|
||||
"0": {
|
||||
"options": {
|
||||
"1": {
|
||||
"question": "Hotely"
|
||||
},
|
||||
"4": {
|
||||
"question": "Motely"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"presets": {
|
||||
"0": {
|
||||
"title": "hotel"
|
||||
}
|
||||
},
|
||||
"tagRenderings": {
|
||||
"name": {
|
||||
"render": "{name}"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "Hotel {name}"
|
||||
},
|
||||
"4": {
|
||||
"then": "Motel {name}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"render": "Turistická ubytovna {name}"
|
||||
}
|
||||
},
|
||||
"trail": {
|
||||
|
@ -10954,6 +11507,9 @@
|
|||
"title-editing": {
|
||||
"render": "<h3>Úprava nastavení</h3>"
|
||||
},
|
||||
"title-map": {
|
||||
"render": "<h3>Konfigurace mapy</h3>"
|
||||
},
|
||||
"title-privacy-legal": {
|
||||
"render": "<h3>Soukromí a právní záležitosti</h3>"
|
||||
},
|
||||
|
@ -10993,6 +11549,9 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"translations-title": {
|
||||
"render": "<h3>Překládání MapComplete</h3>"
|
||||
},
|
||||
"verified-mastodon": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
|
@ -11028,6 +11587,9 @@
|
|||
"12": {
|
||||
"question": "Prodej vajec"
|
||||
},
|
||||
"13": {
|
||||
"question": "Prodej zmrzliny"
|
||||
},
|
||||
"14": {
|
||||
"question": "Prodej sýrů"
|
||||
},
|
||||
|
@ -11131,6 +11693,9 @@
|
|||
"0": {
|
||||
"1": "duše na kolo"
|
||||
},
|
||||
"1": {
|
||||
"1": "osvětlení kola"
|
||||
},
|
||||
"2": {
|
||||
"1": "kondom"
|
||||
}
|
||||
|
@ -11195,6 +11760,9 @@
|
|||
"11": {
|
||||
"then": "Prodává vejce"
|
||||
},
|
||||
"12": {
|
||||
"then": "Prodává zmrzlinu"
|
||||
},
|
||||
"13": {
|
||||
"then": "Prodává sýr"
|
||||
},
|
||||
|
@ -11363,6 +11931,12 @@
|
|||
},
|
||||
"6": {
|
||||
"question": "Odpadkový koš na plast"
|
||||
},
|
||||
"7": {
|
||||
"question": "Odpadkový koš pro plastové a kovové obaly a pro nápojové kartony (PMD)"
|
||||
},
|
||||
"8": {
|
||||
"question": "Odpadkový koš pro papír"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -11418,6 +11992,9 @@
|
|||
"6": {
|
||||
"then": "Odpadkový koš na plasty"
|
||||
},
|
||||
"7": {
|
||||
"then": "Odpadkový koš pro plastové a kovové obaly a pro nápojové kartony (PMD)"
|
||||
},
|
||||
"8": {
|
||||
"then": "Odpadový koš na papír"
|
||||
}
|
||||
|
|
|
@ -6405,6 +6405,11 @@
|
|||
"freeform": {
|
||||
"placeholder": "Elevation on the guidepost (in meters)"
|
||||
},
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "There is no elevation noted on this guidepost"
|
||||
}
|
||||
},
|
||||
"question": "What is the elevation noted on this guidepost?",
|
||||
"render": "Elevation noted on the guidepost: {ele} m"
|
||||
},
|
||||
|
@ -6412,6 +6417,11 @@
|
|||
"freeform": {
|
||||
"placeholder": "Name on the guidepost"
|
||||
},
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "There is no name noted on this guidepost"
|
||||
}
|
||||
},
|
||||
"question": "What is the name noted on this guidepost?",
|
||||
"render": "Name noted on the guidepost: {name}"
|
||||
},
|
||||
|
@ -6419,6 +6429,11 @@
|
|||
"freeform": {
|
||||
"placeholder": "Reference number of the guidepost"
|
||||
},
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "There is no reference number noted on this guidepost"
|
||||
}
|
||||
},
|
||||
"question": "What is the reference number of this guidepost?",
|
||||
"render": "Reference number of the guidepost: {ref}"
|
||||
},
|
||||
|
|
|
@ -89,6 +89,11 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"all_streets": {
|
||||
"title": {
|
||||
"render": "Kalea"
|
||||
}
|
||||
},
|
||||
"artwork": {
|
||||
"description": "Estatuen, bustoen, graffitien eta mundu osoko beste artelan batzuen mapa irekia",
|
||||
"name": "Artelanak",
|
||||
|
|
|
@ -24,6 +24,12 @@
|
|||
"render": "Ismert cím"
|
||||
}
|
||||
},
|
||||
"all_streets": {
|
||||
"name": "Minden utca",
|
||||
"title": {
|
||||
"render": "Utca"
|
||||
}
|
||||
},
|
||||
"ambulancestation": {
|
||||
"description": "A mentőállomás olyan terület, ahol mentőautókat, orvosi felszereléseket, egyéni védőfelszereléseket és egyéb orvosi felszereléseket tárolnak.",
|
||||
"name": "Mentőállomás-térkép",
|
||||
|
|
|
@ -89,6 +89,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"all_streets": {
|
||||
"name": "Tutte le strade",
|
||||
"title": {
|
||||
"render": "Strada"
|
||||
}
|
||||
},
|
||||
"ambulancestation": {
|
||||
"description": "La stazione delle ambulanze è un’area per lo stoccaggio delle ambulanze, dell’equipaggiamento medico, dei dispositivi di protezione individuale e di altre forniture medicali.",
|
||||
"name": "Carta delle stazioni delle ambulanze",
|
||||
|
|
|
@ -17,6 +17,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"all_streets": {
|
||||
"name": "모든 거리",
|
||||
"title": {
|
||||
"render": "거리"
|
||||
}
|
||||
},
|
||||
"artwork": {
|
||||
"description": "전 세계의 여러 조각상과 예술 작품들 알려주는 오픈 맵 입니다"
|
||||
},
|
||||
|
|
|
@ -20,6 +20,12 @@
|
|||
"render": "Kjent adresse"
|
||||
}
|
||||
},
|
||||
"all_streets": {
|
||||
"name": "Alle gater",
|
||||
"title": {
|
||||
"render": "Gate"
|
||||
}
|
||||
},
|
||||
"ambulancestation": {
|
||||
"name": "Kart over ambulansestasjoner",
|
||||
"presets": {
|
||||
|
|
|
@ -11,7 +11,8 @@
|
|||
"0": {
|
||||
"then": "Geen adresgegevens bekend"
|
||||
}
|
||||
}
|
||||
},
|
||||
"render": "{addr:street} <b>{addr:housenumber}</b>{addr:unit}"
|
||||
},
|
||||
"housenumber": {
|
||||
"mappings": {
|
||||
|
@ -2104,6 +2105,8 @@
|
|||
}
|
||||
},
|
||||
"building": {
|
||||
"description": "Alle gebouwen",
|
||||
"name": "Gebouwen",
|
||||
"tagRenderings": {
|
||||
"architecture": {
|
||||
"mappings": {
|
||||
|
@ -2210,7 +2213,13 @@
|
|||
"then": "Empirestijl"
|
||||
}
|
||||
}
|
||||
},
|
||||
"construction_date": {
|
||||
"render": "Gebouwd in <b>{construction_date}</b>"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
"render": "Gebouw"
|
||||
}
|
||||
},
|
||||
"cafe_pub": {
|
||||
|
|
|
@ -3,6 +3,12 @@
|
|||
"description": "پتے",
|
||||
"name": "اوایسایم وچ جاݨ پچھاݨے پتے"
|
||||
},
|
||||
"all_streets": {
|
||||
"name": "ساریاں سڑکاں",
|
||||
"title": {
|
||||
"render": "سڑک"
|
||||
}
|
||||
},
|
||||
"artwork": {
|
||||
"name": "کلاکاری",
|
||||
"tagRenderings": {
|
||||
|
|
|
@ -260,6 +260,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"all_streets": {
|
||||
"name": "Wszystkie ulice",
|
||||
"title": {
|
||||
"render": "Ulica"
|
||||
}
|
||||
},
|
||||
"ambulancestation": {
|
||||
"description": "Stacja pogotowia ratunkowego to miejsce przechowywania pojazdów ambulansów, sprzętu medycznego, środków ochrony osobistej i innych artykułów medycznych.",
|
||||
"name": "Mapa stacji pogotowia ratunkowego",
|
||||
|
|
|
@ -34,6 +34,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"all_streets": {
|
||||
"name": "Все улицы",
|
||||
"title": {
|
||||
"render": "Улица"
|
||||
}
|
||||
},
|
||||
"ambulancestation": {
|
||||
"description": "Станция скорой помощи это полигон для хранения транспорта, медицинского оборудования, средств индивидуальной защиты и других медицинских принадлежностей.",
|
||||
"name": "Карта станций скорой помощи",
|
||||
|
|
|
@ -6,6 +6,14 @@
|
|||
"fixme": {
|
||||
"question": "這裡需要修什麼?請直接解釋"
|
||||
},
|
||||
"header": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "未知的地址"
|
||||
}
|
||||
},
|
||||
"render": "{addr:street} <b>{addr:housenumber}</b> {addr:unit}"
|
||||
},
|
||||
"housenumber": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
|
@ -17,7 +25,17 @@
|
|||
},
|
||||
"street": {
|
||||
"question": "地址所在的道路是?",
|
||||
"questionHint": "不要包含門牌號碼",
|
||||
"render": "此地址位於街道 <b>{addr:street}</b>"
|
||||
},
|
||||
"unit": {
|
||||
"mappings": {
|
||||
"0": {
|
||||
"then": "沒有單位號碼"
|
||||
}
|
||||
},
|
||||
"question": "這邊的單位號碼或是字母是什麼?",
|
||||
"render": "單位號碼是<b>{addr:unit}</b>"
|
||||
}
|
||||
},
|
||||
"title": {
|
||||
|
@ -25,6 +43,7 @@
|
|||
}
|
||||
},
|
||||
"advertising": {
|
||||
"description": "我們會從廣告功能的參數、營運者以及亮燈來完成資料",
|
||||
"name": "廣告",
|
||||
"presets": {
|
||||
"0": {
|
||||
|
@ -35,6 +54,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"all_streets": {
|
||||
"name": "所有道路",
|
||||
"title": {
|
||||
"render": "照明"
|
||||
}
|
||||
},
|
||||
"artwork": {
|
||||
"description": "顯示全世界的雕像、半身像、塗鴉以及其他類型的藝術品的地圖",
|
||||
"name": "藝術品",
|
||||
|
|
|
@ -629,8 +629,8 @@
|
|||
"body": {
|
||||
"0": {
|
||||
"render": {
|
||||
"after": "to include the link <span class='literal-code'>https://wiki.openstreetmap.org/wiki/WikiProject_Belgium/Building_and_address_import</code>",
|
||||
"special": {
|
||||
"after": "to include the link <span class='literal-code'>https://wiki.openstreetmap.org/wiki/WikiProject_Belgium/Building_and_address_import</code>",
|
||||
"text": "Edit your user profile"
|
||||
}
|
||||
}
|
||||
|
@ -638,7 +638,7 @@
|
|||
"1": {
|
||||
"render": {
|
||||
"special": {
|
||||
"msg": "Reload your profile"
|
||||
"message": "Reload your profile"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -674,8 +674,8 @@
|
|||
"body": {
|
||||
"0": {
|
||||
"render": {
|
||||
"after": " en voeg deze link toe: <span class='literal-code'>https://wiki.openstreetmap.org/wiki/WikiProject_Belgium/Building_and_address_import</code>",
|
||||
"special": {
|
||||
"after": " en voeg deze link toe: <span class='literal-code'>https://wiki.openstreetmap.org/wiki/WikiProject_Belgium/Building_and_address_import</code>",
|
||||
"text": "Pas je profiel aan"
|
||||
}
|
||||
}
|
||||
|
@ -683,7 +683,7 @@
|
|||
"1": {
|
||||
"render": {
|
||||
"special": {
|
||||
"msg": "Herlaad je profiel"
|
||||
"message": "Herlaad je profiel"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -723,6 +723,10 @@
|
|||
"typeTitle": "這是 <b>{title}</b>"
|
||||
},
|
||||
"privacy": {
|
||||
"browsingHistoryIntro": "MapComplete 會儲存你最後開始的主題與地點,來幫助你快速恢復狀態。如果你沒有登入,這些設定會在裝置當中。如果你有登入,能透過開放街圖在其他裝置也會同步你的歷史。",
|
||||
"browsingHistoryLoggedIn": "你目前的設定:",
|
||||
"browsingHistoryNotLoggedIn": "登入來改變你的設定",
|
||||
"browsingHistoryTitle": "瀏覽歷史",
|
||||
"editingIntro": "當你對地圖變動時,這些變動會存在開放街圖並且是公開給所有人。採用 MapComplete 的編輯變動包括以下資料:",
|
||||
"editingOutro": "請參考<a href='https://wiki.osmfoundation.org/wiki/Privacy_Policy' target='_blank'>OpenStreetMap.org的隱私政策</a>來取得更多資訊。我們也提醒你註冊帳號時能夠採用假名。",
|
||||
"editingTitle": "當做出變動",
|
||||
|
|
16
package-lock.json
generated
16
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "mapcomplete",
|
||||
"version": "0.50.4",
|
||||
"version": "0.50.5",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mapcomplete",
|
||||
"version": "0.50.4",
|
||||
"version": "0.50.5",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"dependencies": {
|
||||
"@capacitor/android": "^6.1.2",
|
||||
|
@ -12749,9 +12749,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/caniuse-lite": {
|
||||
"version": "1.0.30001702",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001702.tgz",
|
||||
"integrity": "sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA==",
|
||||
"version": "1.0.30001705",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001705.tgz",
|
||||
"integrity": "sha512-S0uyMMiYvA7CxNgomYBwwwPUnWzFD83f3B1ce5jHUfHTH//QL6hHsreI8RVC5606R4ssqravelYO5TU6t8sEyg==",
|
||||
"dev": true,
|
||||
"funding": [
|
||||
{
|
||||
|
@ -39188,9 +39188,9 @@
|
|||
}
|
||||
},
|
||||
"caniuse-lite": {
|
||||
"version": "1.0.30001702",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001702.tgz",
|
||||
"integrity": "sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA==",
|
||||
"version": "1.0.30001705",
|
||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001705.tgz",
|
||||
"integrity": "sha512-S0uyMMiYvA7CxNgomYBwwwPUnWzFD83f3B1ce5jHUfHTH//QL6hHsreI8RVC5606R4ssqravelYO5TU6t8sEyg==",
|
||||
"dev": true
|
||||
},
|
||||
"canonicalize": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mapcomplete",
|
||||
"version": "0.50.4",
|
||||
"version": "0.50.5",
|
||||
"repository": "https://github.com/pietervdvn/MapComplete",
|
||||
"description": "A small website to edit OSM easily",
|
||||
"bugs": "https://github.com/pietervdvn/MapComplete/issues",
|
||||
|
@ -47,7 +47,7 @@
|
|||
"#fork": "Not bound to a domain; can be reused",
|
||||
"url": "https://panoramax.mapcomplete.org",
|
||||
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnZW92aXNpbyIsInN1YiI6IjU5ZjgzOGI0LTM4ZjAtNDdjYi04OWYyLTM3NDQ3MWMxNTUxOCJ9.0rBioZS_48NTjnkIyN9497c3fQdTqtGgH1HDqlz1bWs",
|
||||
"sequence": "6e702976-580b-419c-8fb3-cf7bd364e6f8",
|
||||
"sequence": "14ea2dff-2d5f-4134-9a9c-0b7ff34d87aa",
|
||||
"testsequence": "7f34cf53-27ff-46c9-ac22-78511fa8457a"
|
||||
},
|
||||
"default_overpass_urls": [
|
||||
|
|
|
@ -9,12 +9,16 @@ import {
|
|||
DoesImageExist,
|
||||
PrevalidateTheme,
|
||||
ValidateLayer,
|
||||
ValidateThemeEnsemble
|
||||
ValidateThemeEnsemble,
|
||||
} from "../src/Models/ThemeConfig/Conversion/Validation"
|
||||
import { Translation } from "../src/UI/i18n/Translation"
|
||||
import { PrepareLayer } from "../src/Models/ThemeConfig/Conversion/PrepareLayer"
|
||||
import { PrepareTheme } from "../src/Models/ThemeConfig/Conversion/PrepareTheme"
|
||||
import { Conversion, DesugaringContext, DesugaringStep } from "../src/Models/ThemeConfig/Conversion/Conversion"
|
||||
import {
|
||||
Conversion,
|
||||
DesugaringContext,
|
||||
DesugaringStep,
|
||||
} from "../src/Models/ThemeConfig/Conversion/Conversion"
|
||||
import { Utils } from "../src/Utils"
|
||||
import Script from "./Script"
|
||||
import { AllSharedLayers } from "../src/Customizations/AllSharedLayers"
|
||||
|
|
|
@ -14,7 +14,6 @@ import {
|
|||
} from "geojson"
|
||||
import { Tiles } from "../Models/TileRange"
|
||||
import { Utils } from "../Utils"
|
||||
|
||||
;("use strict")
|
||||
|
||||
export class GeoOperations {
|
||||
|
|
|
@ -66,13 +66,13 @@ interface OsmUserInfo {
|
|||
}
|
||||
|
||||
interface UserBlock {
|
||||
"id": number,
|
||||
"created_at": string,
|
||||
"updated_at": string,
|
||||
"ends_at": string,
|
||||
"needs_view": boolean,
|
||||
"user": { "uid": number, "user": string },
|
||||
"creator": { "uid": number, "user": string }
|
||||
id: number
|
||||
created_at: string
|
||||
updated_at: string
|
||||
ends_at: string
|
||||
needs_view: boolean
|
||||
user: { uid: number; user: string }
|
||||
creator: { uid: number; user: string }
|
||||
}
|
||||
|
||||
export default interface UserDetails {
|
||||
|
@ -87,7 +87,7 @@ export default interface UserDetails {
|
|||
account_created: string
|
||||
tracesCount: number
|
||||
description?: string
|
||||
languages: string[],
|
||||
languages: string[]
|
||||
active_blocks: number
|
||||
}
|
||||
export type OsmServiceState = "online" | "readonly" | "offline" | "unknown" | "unreachable"
|
||||
|
@ -320,7 +320,7 @@ export class OsmConnection {
|
|||
account_created: user.account_created,
|
||||
tracesCount: user.traces?.count ?? 0,
|
||||
unreadMessages: user.messages.received?.unread ?? 0,
|
||||
active_blocks: user.blocks.received.active ?? 0
|
||||
active_blocks: user.blocks.received.active ?? 0,
|
||||
}
|
||||
this.userDetails.set(userdetails)
|
||||
this.loadingStatus.setData("logged-in")
|
||||
|
|
|
@ -497,7 +497,10 @@ export default class SimpleMetaTaggers {
|
|||
continue
|
||||
}
|
||||
const value = feature.properties[key]
|
||||
const denom: [string, Denomination] = unit.findDenomination(value, () => feature.properties["_country"])
|
||||
const denom: [string, Denomination] = unit.findDenomination(
|
||||
value,
|
||||
() => feature.properties["_country"]
|
||||
)
|
||||
if (denom === undefined) {
|
||||
// no valid value found
|
||||
break
|
||||
|
@ -515,7 +518,12 @@ export default class SimpleMetaTaggers {
|
|||
if (canonical === value) {
|
||||
break
|
||||
}
|
||||
console.log("Rewritten ", key, ` from '${value}' into '${canonical}' due to denomination`, denomination)
|
||||
console.log(
|
||||
"Rewritten ",
|
||||
key,
|
||||
` from '${value}' into '${canonical}' due to denomination`,
|
||||
denomination
|
||||
)
|
||||
if (canonical === undefined && !unit.eraseInvalid) {
|
||||
break
|
||||
}
|
||||
|
|
|
@ -61,7 +61,7 @@ export default class SearchState {
|
|||
return new ImmutableStore(true)
|
||||
}
|
||||
return Stores.concat(suggestions).map((suggestions) =>
|
||||
suggestions.some(list => list === undefined)
|
||||
suggestions.some((list) => list === undefined)
|
||||
)
|
||||
})
|
||||
this.suggestions = suggestionsList.bindD((suggestions) =>
|
||||
|
@ -101,7 +101,7 @@ export default class SearchState {
|
|||
|
||||
this.showSearchDrawer = new UIEventSource(false)
|
||||
|
||||
this.searchIsFocused.addCallbackAndRunD(sugg => {
|
||||
this.searchIsFocused.addCallbackAndRunD((sugg) => {
|
||||
if (sugg) {
|
||||
this.showSearchDrawer.set(true)
|
||||
}
|
||||
|
@ -192,7 +192,7 @@ export default class SearchState {
|
|||
state.mapProperties.bounds.set(
|
||||
new BBox([
|
||||
[lon0, lat0],
|
||||
[lon1, lat1]
|
||||
[lon1, lat1],
|
||||
]).pad(0.01)
|
||||
)
|
||||
} else {
|
||||
|
|
|
@ -1,14 +1,42 @@
|
|||
import { Utils } from "../../Utils"
|
||||
/** This code is autogenerated - do not edit. Edit ./assets/layers/usersettings/usersettings.json instead */
|
||||
export class ThemeMetaTagging {
|
||||
public static readonly themeName = "usersettings"
|
||||
public static readonly themeName = "usersettings"
|
||||
|
||||
public metaTaggging_for_usersettings(feat: {properties: Record<string, string>}) {
|
||||
Utils.AddLazyProperty(feat.properties, '_mastodon_candidate_md', () => feat.properties._description.match(/\[[^\]]*\]\((.*(mastodon|en.osm.town).*)\).*/)?.at(1) )
|
||||
Utils.AddLazyProperty(feat.properties, '_d', () => feat.properties._description?.replace(/</g,'<')?.replace(/>/g,'>') ?? '' )
|
||||
Utils.AddLazyProperty(feat.properties, '_mastodon_candidate_a', () => (feat => {const e = document.createElement('div');e.innerHTML = feat.properties._d;return Array.from(e.getElementsByTagName("a")).filter(a => a.href.match(/mastodon|en.osm.town/) !== null)[0]?.href }) (feat) )
|
||||
Utils.AddLazyProperty(feat.properties, '_mastodon_link', () => (feat => {const e = document.createElement('div');e.innerHTML = feat.properties._d;return Array.from(e.getElementsByTagName("a")).filter(a => a.getAttribute("rel")?.indexOf('me') >= 0)[0]?.href})(feat) )
|
||||
Utils.AddLazyProperty(feat.properties, '_mastodon_candidate', () => feat.properties._mastodon_candidate_md ?? feat.properties._mastodon_candidate_a )
|
||||
feat.properties['__current_backgroun'] = 'initial_value'
|
||||
}
|
||||
}
|
||||
public metaTaggging_for_usersettings(feat: { properties: Record<string, string> }) {
|
||||
Utils.AddLazyProperty(feat.properties, "_mastodon_candidate_md", () =>
|
||||
feat.properties._description
|
||||
.match(/\[[^\]]*\]\((.*(mastodon|en.osm.town).*)\).*/)
|
||||
?.at(1)
|
||||
)
|
||||
Utils.AddLazyProperty(
|
||||
feat.properties,
|
||||
"_d",
|
||||
() => feat.properties._description?.replace(/</g, "<")?.replace(/>/g, ">") ?? ""
|
||||
)
|
||||
Utils.AddLazyProperty(feat.properties, "_mastodon_candidate_a", () =>
|
||||
((feat) => {
|
||||
const e = document.createElement("div")
|
||||
e.innerHTML = feat.properties._d
|
||||
return Array.from(e.getElementsByTagName("a")).filter(
|
||||
(a) => a.href.match(/mastodon|en.osm.town/) !== null
|
||||
)[0]?.href
|
||||
})(feat)
|
||||
)
|
||||
Utils.AddLazyProperty(feat.properties, "_mastodon_link", () =>
|
||||
((feat) => {
|
||||
const e = document.createElement("div")
|
||||
e.innerHTML = feat.properties._d
|
||||
return Array.from(e.getElementsByTagName("a")).filter(
|
||||
(a) => a.getAttribute("rel")?.indexOf("me") >= 0
|
||||
)[0]?.href
|
||||
})(feat)
|
||||
)
|
||||
Utils.AddLazyProperty(
|
||||
feat.properties,
|
||||
"_mastodon_candidate",
|
||||
() => feat.properties._mastodon_candidate_md ?? feat.properties._mastodon_candidate_a
|
||||
)
|
||||
feat.properties["__current_backgroun"] = "initial_value"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,6 +29,9 @@ export class And extends TagsFilter {
|
|||
and: ReadonlyArray<FlatTag | (Or & OptimizedTag)>
|
||||
): TagsFilterClosed & OptimizedTag
|
||||
public static construct(and: ReadonlyArray<TagsFilter>): TagsFilter {
|
||||
if (and === undefined) {
|
||||
return undefined
|
||||
}
|
||||
if (and.length === 1) {
|
||||
return and[0]
|
||||
}
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue